This function helps add progress-reporting to any function - given function f() and progressor p(), it will return a new function that calls f() and then (on-exiting) will call p() after every iteration.

progressively(f, p = NULL)

Arguments

f

a function to add progressr functionality to.

p

a progressor function as created by progressr::progressor()

Value

a function that does the same as f but it calls p() after iteration.

Details

This is inspired by purrr's safely, quietly, and possibly function decorators.

See also

vignette("Using nflreadr in packages")

https://nflreadr.nflverse.com/articles/exporting_nflreadr.html for web version of vignette

Examples

# \donttest{ read_rosters <- function(){ urls <- c("https://github.com/nflverse/nflfastR-roster/raw/master/data/seasons/roster_2020.csv", "https://github.com/nflverse/nflfastR-roster/raw/master/data/seasons/roster_2021.csv") p <- progressr::progressor(along = urls) lapply(urls, progressively(read.csv, p)) } progressr::with_progress(read_rosters())
#> [[1]] #> season team position depth_chart_position jersey_number status #> 1 2020 ARI C C 52 Active #> 2 2020 ARI C C 53 Active #> 3 2020 ARI CB NB 33 Active #> 4 2020 ARI CB <NA> 20 Active #> 5 2020 ARI CB <NA> 39 Active #> 6 2020 ARI CB LCB 27 Active #> 7 2020 ARI CB RCB 25 Active #> 8 2020 ARI CB LCB 23 Active #> 9 2020 ARI CB LCB 21 Active #> 10 2020 ARI CB RCB 20 Active #> 11 2020 ARI DB <NA> 38 Active #> 12 2020 ARI DB <NA> 43 Active #> 13 2020 ARI DB NB 34 Active #> 14 2020 ARI DB SS 28 Active #> 15 2020 ARI DB FS 31 Active #> 16 2020 ARI DE <NA> 55 Active #> 17 2020 ARI DE <NA> 91 Active #> 18 2020 ARI DE <NA> 65 Active #> 19 2020 ARI DE <NA> 69 Active #> 20 2020 ARI DT <NA> 75 Active #> 21 2020 ARI DT RDE 96 Active #> 22 2020 ARI DT DT 95 Active #> 23 2020 ARI DT DT 94 Active #> 24 2020 ARI DT RDE 97 Active #> 25 2020 ARI DT <NA> 94 Active #> 26 2020 ARI FS <NA> 44 Active #> 27 2020 ARI G RG 64 Active #> 28 2020 ARI G <NA> 63 Active #> 29 2020 ARI G <NA> 64 Active #> 30 2020 ARI G LG 67 Active #> 31 2020 ARI G <NA> 60 Active #> 32 2020 ARI G LG 73 Active #> 33 2020 ARI K PK 2 Active #> 34 2020 ARI K PK 5 Active #> 35 2020 ARI K <NA> 2 Active #> 36 2020 ARI LB SLB 45 Active #> 37 2020 ARI LB OLB 42 Active #> 38 2020 ARI LB <NA> 58 Active #> 39 2020 ARI LB LILB 47 Active #> 40 2020 ARI LB SLB 49 Active #> 41 2020 ARI LB RILB 58 Active #> 42 2020 ARI LB LB 43 Active #> 43 2020 ARI LB RILB 51 Active #> 44 2020 ARI LB OLB 44 Active #> 45 2020 ARI LB <NA> 35 Active #> 46 2020 ARI LB LILB 59 Active #> 47 2020 ARI LB SLB 55 Active #> 48 2020 ARI LB <NA> 56 Active #> 49 2020 ARI LB LB 54 Active #> 50 2020 ARI LB <NA> 54 Active #> 51 2020 ARI LB <NA> 50 Active #> 52 2020 ARI LB LILB 48 Active #> 53 2020 ARI LS <NA> 46 Active #> 54 2020 ARI NT NT 98 Active #> 55 2020 ARI NT RDE 92 Active #> 56 2020 ARI NT NT 90 Active #> 57 2020 ARI P <NA> 4 Active #> 58 2020 ARI QB QB 1 Active #> 59 2020 ARI QB QB 15 Active #> 60 2020 ARI QB QB 7 Active #> 61 2020 ARI RB RB 41 Active #> 62 2020 ARI RB RB 29 Active #> 63 2020 ARI RB <NA> 33 Active #> 64 2020 ARI RB <NA> 26 Active #> 65 2020 ARI RB <NA> 37 Active #> 66 2020 ARI RB RB 38 Active #> 67 2020 ARI SS <NA> 27 Inactive #> 68 2020 ARI SS SS 22 Active #> 69 2020 ARI SS FS 32 Active #> 70 2020 ARI T LT 79 Active #> 71 2020 ARI T RT 68 Active #> 72 2020 ARI T LT 66 Active #> 73 2020 ARI T RT 71 Active #> 74 2020 ARI T <NA> 76 Voluntary Opt Out #> 75 2020 ARI T LT 74 Active #> 76 2020 ARI TE TE 81 Active #> 77 2020 ARI TE <NA> 48 Active #> 78 2020 ARI TE <NA> 86 Active #> 79 2020 ARI TE <NA> 86 Active #> 80 2020 ARI TE TE 87 Active #> 81 2020 ARI TE TE 85 Active #> 82 2020 ARI WR <NA> 81 Active #> 83 2020 ARI WR LWR 19 Active #> 84 2020 ARI WR <NA> 19 Active #> 85 2020 ARI WR SWR 18 Active #> 86 2020 ARI WR SWR 17 Active #> 87 2020 ARI WR RWR 10 Active #> 88 2020 ARI WR <NA> 83 Active #> 89 2020 ARI WR <NA> 14 Active #> 90 2020 ARI WR <NA> 10 Active #> 91 2020 ARI WR SWR 11 Active #> 92 2020 ARI WR LWR 13 Active #> 93 2020 ARI WR RWR 16 Active #> 94 2020 ATL C C 51 Active #> 95 2020 ATL C <NA> 66 Active #> 96 2020 ATL C RG 65 Active #> 97 2020 ATL CB <NA> 42 Active #> 98 2020 ATL CB CB 34 Active #> 99 2020 ATL CB FS 41 Active #> 100 2020 ATL CB CB 24 Active #> 101 2020 ATL CB RCB 26 Active #> 102 2020 ATL CB RCB 44 Active #> 103 2020 ATL CB LCB 20 Active #> 104 2020 ATL CB FS 37 Active #> 105 2020 ATL CB LCB 33 Active #> 106 2020 ATL DB <NA> 31 Active #> 107 2020 ATL DB SS 32 Active #> 108 2020 ATL DB SS 22 Active #> 109 2020 ATL DE RDE 55 Active #> 110 2020 ATL DE RDE 56 Active #> 111 2020 ATL DE RDE 91 Active #> 112 2020 ATL DE LDE 93 Active #> 113 2020 ATL DT LDT 94 Active #> 114 2020 ATL DT <NA> 79 Active #> 115 2020 ATL DT LDT 97 Active #> 116 2020 ATL DT RDT 50 Active #> 117 2020 ATL DT RDT 96 Active #> 118 2020 ATL DT LDT 90 Active #> 119 2020 ATL FB FB 40 Active #> 120 2020 ATL G LG 77 Active #> 121 2020 ATL G <NA> 71 Active #> 122 2020 ATL G C 61 Active #> 123 2020 ATL G RG 63 Active #> 124 2020 ATL K PK 7 Active #> 125 2020 ATL K <NA> 1 Active #> 126 2020 ATL LB LB 59 Active #> 127 2020 ATL LB LB 43 Active #> 128 2020 ATL LB LB 45 Active #> 129 2020 ATL LB <NA> 52 Active #> 130 2020 ATL LB LDE 92 Active #> 131 2020 ATL LB <NA> 52 Active #> 132 2020 ATL LB LB 46 Active #> 133 2020 ATL LB LB 54 Active #> 134 2020 ATL LS <NA> 47 Active #> 135 2020 ATL P <NA> 4 Active #> 136 2020 ATL QB QB 2 Active #> 137 2020 ATL QB <NA> 6 Active #> 138 2020 ATL QB QB 8 Active #> 139 2020 ATL RB <NA> 36 Active #> 140 2020 ATL RB RB 21 Active #> 141 2020 ATL RB RB 25 Active #> 142 2020 ATL RB RB 23 Active #> 143 2020 ATL RB <NA> 30 Active #> 144 2020 ATL SS FS 27 Active #> 145 2020 ATL SS <NA> 39 Active #> 146 2020 ATL SS <NA> 29 Active #> 147 2020 ATL T LT 73 Active #> 148 2020 ATL T LT 70 Active #> 149 2020 ATL T RT 75 Active #> 150 2020 ATL T RT 76 Active #> 151 2020 ATL TE TE 88 Active #> 152 2020 ATL TE TE 81 Active #> 153 2020 ATL TE TE 87 Active #> 154 2020 ATL WR RWR 18 Active #> 155 2020 ATL WR RWR 17 Active #> 156 2020 ATL WR <NA> 87 Active #> 157 2020 ATL WR <NA> 12 Active #> 158 2020 ATL WR LWR 11 Active #> 159 2020 ATL WR <NA> 14 Active #> 160 2020 ATL WR LWR 13 Active #> 161 2020 ATL WR WR 83 Active #> 162 2020 ATL WR RWR 80 Active #> 163 2020 ATL WR WR 15 Active #> 164 2020 ATL WR <NA> 19 Active #> 165 2020 BAL C <NA> 65 Active #> 166 2020 BAL C C 65 Active #> 167 2020 BAL C C 68 Active #> 168 2020 BAL C C 63 Active #> 169 2020 BAL CB LCB 24 Active #> 170 2020 BAL CB <NA> 47 Active #> 171 2020 BAL CB NB 25 Active #> 172 2020 BAL CB LCB 22 Active #> 173 2020 BAL CB NB 31 Active #> 174 2020 BAL CB LCB 37 Active #> 175 2020 BAL CB RCB 44 Active #> 176 2020 BAL CB RCB 23 Active #> 177 2020 BAL CB RCB 33 Active #> 178 2020 BAL CB <NA> 31 Active #> 179 2020 BAL DB <NA> 39 Active #> 180 2020 BAL DB RCB 17 Active #> 181 2020 BAL DB <NA> 42 Active #> 182 2020 BAL DB FS 32 Active #> 183 2020 BAL DE DE 53 Active #> 184 2020 BAL DE <NA> 97 Active #> 185 2020 BAL DE RUSH 91 Active #> 186 2020 BAL DE DE 95 Active #> 187 2020 BAL DT DT 92 Active #> 188 2020 BAL DT <NA> 69 Active #> 189 2020 BAL DT <NA> 96 Active #> 190 2020 BAL DT DT 96 Active #> 191 2020 BAL DT DT 93 Active #> 192 2020 BAL DT <NA> 91 Active #> 193 2020 BAL FB <NA> 48 Active #> 194 2020 BAL FB NT 42 Active #> 195 2020 BAL FS <NA> 33 Active #> 196 2020 BAL G RG 72 Active #> 197 2020 BAL G <NA> 61 Active #> 198 2020 BAL G LG 67 Active #> 199 2020 BAL G <NA> 70 Inactive #> 200 2020 BAL G RT 70 Active #> 201 2020 BAL G RT 74 Active #> 202 2020 BAL G LG 77 Active #> 203 2020 BAL K PK 9 Active #> 204 2020 BAL LB MLB 50 Active #> 205 2020 BAL LB WLB 57 Active #> 206 2020 BAL LB RUSH 90 Active #> 207 2020 BAL LB MLB 48 Active #> 208 2020 BAL LB <NA> 51 Active #> 209 2020 BAL LB RUSH 45 Active #> 210 2020 BAL LB SAM 54 Active #> 211 2020 BAL LB WLB 40 Active #> 212 2020 BAL LB <NA> 57 Active #> 213 2020 BAL LB WLB 58 Active #> 214 2020 BAL LB SAM 99 Active #> 215 2020 BAL LB MLB 49 Active #> 216 2020 BAL LS <NA> 60 Active #> 217 2020 BAL LS <NA> 46 Active #> 218 2020 BAL NT NT 98 Active #> 219 2020 BAL NT NT 71 Active #> 220 2020 BAL P <NA> 6 Active #> 221 2020 BAL P <NA> 4 Active #> 222 2020 BAL QB <NA> 2 Active #> 223 2020 BAL QB QB 8 Active #> 224 2020 BAL QB <NA> 3 Active #> 225 2020 BAL QB QB 7 Active #> 226 2020 BAL RB RB 21 Active #> 227 2020 BAL RB <NA> 34 Active #> 228 2020 BAL RB RB 35 Active #> 229 2020 BAL RB RB 27 Active #> 230 2020 BAL RB RB 43 Active #> 231 2020 BAL SS FS 28 Active #> 232 2020 BAL SS SS 41 Active #> 233 2020 BAL SS SS 36 Active #> 234 2020 BAL T <NA> 61 Active #> 235 2020 BAL T <NA> 68 Active #> 236 2020 BAL T <NA> 76 Voluntary Opt Out #> 237 2020 BAL T LT 79 Active #> 238 2020 BAL T RT 78 Active #> 239 2020 BAL T <NA> 76 Active #> 240 2020 BAL TE <NA> 88 Active #> 241 2020 BAL TE TE 89 Active #> 242 2020 BAL TE <NA> 87 Active #> 243 2020 BAL TE TE 85 Active #> 244 2020 BAL TE TE 86 Active #> 245 2020 BAL TE <NA> 85 Active #> 246 2020 BAL WR LWR 80 Active #> 247 2020 BAL WR <NA> 84 Active #> 248 2020 BAL WR LWR 88 Active #> 249 2020 BAL WR RWR 10 Active #> 250 2020 BAL WR <NA> 11 Active #> 251 2020 BAL WR <NA> 18 Active #> 252 2020 BAL WR RWR 15 Active #> 253 2020 BAL WR <NA> 17 Active #> 254 2020 BAL WR <NA> 81 Active #> 255 2020 BAL WR <NA> 16 Active #> 256 2020 BAL WR <NA> 89 Active #> 257 2020 BAL WR RWR 13 Active #> 258 2020 BAL WR LWR 83 Active #> 259 2020 BUF C C 60 Active #> 260 2020 BUF C C 71 Active #> 261 2020 BUF C C 68 Active #> 262 2020 BUF CB RCB 27 Active #> 263 2020 BUF CB LCB 29 Active #> 264 2020 BUF CB <NA> 20 Active #> 265 2020 BUF CB <NA> 40 Active #> 266 2020 BUF CB <NA> 30 Active #> 267 2020 BUF CB RCB 47 Active #> 268 2020 BUF CB <NA> 28 Active #> 269 2020 BUF CB LCB 39 Active #> 270 2020 BUF CB NB 33 Active #> 271 2020 BUF CB NB 24 Active #> 272 2020 BUF DB FS 46 Active #> 273 2020 BUF DB FS 23 Active #> 274 2020 BUF DE LDE 92 Active #> 275 2020 BUF DE LDE 55 Active #> 276 2020 BUF DE LDE 93 Active #> 277 2020 BUF DE RDE 57 Active #> 278 2020 BUF DE <NA> 56 Active #> 279 2020 BUF DE RDE 97 Active #> 280 2020 BUF DE <NA> 51 Active #> 281 2020 BUF DT <NA> 98 Voluntary Opt Out #> 282 2020 BUF DT LDT 90 Active #> 283 2020 BUF DT RDT 99 Active #> 284 2020 BUF DT <NA> 74 Active #> 285 2020 BUF DT <NA> 63 Active #> 286 2020 BUF DT LDT 94 Active #> 287 2020 BUF DT RDT 61 Active #> 288 2020 BUF DT RDT 91 Active #> 289 2020 BUF G LG 76 Active #> 290 2020 BUF G RG 66 Active #> 291 2020 BUF G LG 65 Active #> 292 2020 BUF K PK 2 Active #> 293 2020 BUF K <NA> 7 Active #> 294 2020 BUF LB MLB 49 Active #> 295 2020 BUF LB MLB 59 Active #> 296 2020 BUF LB <NA> 43 Active #> 297 2020 BUF LB <NA> 52 Active #> 298 2020 BUF LB <NA> 52 Active #> 299 2020 BUF LB WLB 53 Active #> 300 2020 BUF LB WLB 54 Active #> 301 2020 BUF LB MLB 44 Active #> 302 2020 BUF LB <NA> 40 Active #> 303 2020 BUF LB WLB 58 Active #> 304 2020 BUF LS <NA> 69 Active #> 305 2020 BUF P <NA> 9 Active #> 306 2020 BUF QB QB 5 Active #> 307 2020 BUF QB QB 10 Active #> 308 2020 BUF QB <NA> 7 Active #> 309 2020 BUF QB QB 17 Active #> 310 2020 BUF RB RB 20 Active #> 311 2020 BUF RB RB 22 Active #> 312 2020 BUF RB <NA> 31 Active #> 313 2020 BUF RB <NA> 25 Active #> 314 2020 BUF RB <NA> 45 Active #> 315 2020 BUF RB <NA> 35 Active #> 316 2020 BUF RB RB 26 Active #> 317 2020 BUF SS SS 21 Active #> 318 2020 BUF SS SS 31 Active #> 319 2020 BUF SS <NA> 36 Active #> 320 2020 BUF T <NA> 72 Active #> 321 2020 BUF T RG 70 Active #> 322 2020 BUF T LT 73 Active #> 323 2020 BUF T RT 75 Active #> 324 2020 BUF T <NA> 62 Active #> 325 2020 BUF T RT 77 Active #> 326 2020 BUF TE TE 88 Active #> 327 2020 BUF TE TE 81 Active #> 328 2020 BUF TE <NA> 84 Active #> 329 2020 BUF TE FB 86 Active #> 330 2020 BUF TE TE 85 Active #> 331 2020 BUF TE <NA> 89 Active #> 332 2020 BUF WR <NA> 82 Active #> 333 2020 BUF WR SWR 19 Active #> 334 2020 BUF WR <NA> 18 Active #> 335 2020 BUF WR RWR 14 Active #> 336 2020 BUF WR LWR 15 Active #> 337 2020 BUF WR <NA> 19 Active #> 338 2020 BUF WR <NA> 80 Active #> 339 2020 BUF WR SWR 11 Active #> 340 2020 BUF WR RWR 18 Active #> 341 2020 BUF WR LWR 13 Active #> 342 2020 BUF WR LWR 16 Active #> 343 2020 CAR C C 61 Active #> 344 2020 CAR C C 69 Active #> 345 2020 CAR C <NA> 71 Active #> 346 2020 CAR CB LCB 26 Active #> 347 2020 CAR CB RCB 24 Active #> 348 2020 CAR CB <NA> 22 Active #> 349 2020 CAR CB RCB 25 Active #> 350 2020 CAR CB LCB 29 Active #> 351 2020 CAR CB RCB 23 Active #> 352 2020 CAR CB FS 30 Active #> 353 2020 CAR CB RCB 20 Active #> 354 2020 CAR DB SS 27 Active #> 355 2020 CAR DB LCB 38 Active #> 356 2020 CAR DB <NA> 34 Active #> 357 2020 CAR DB FS 33 Active #> 358 2020 CAR DB <NA> 35 Active #> 359 2020 CAR DB FS 21 Active #> 360 2020 CAR DE <NA> 57 Active #> 361 2020 CAR DE LDE 98 Active #> 362 2020 CAR DE LDE 96 Active #> 363 2020 CAR DE <NA> 55 Voluntary Opt Out #> 364 2020 CAR DE RDE 91 Active #> 365 2020 CAR DE RDE 97 Active #> 366 2020 CAR DE LDE 53 Active #> 367 2020 CAR DE <NA> 69 Active #> 368 2020 CAR DE RDE 94 Active #> 369 2020 CAR DT RDT 78 Active #> 370 2020 CAR DT LDT 92 Active #> 371 2020 CAR DT RDT 95 Active #> 372 2020 CAR DT <NA> 91 Active #> 373 2020 CAR DT <NA> 77 Active #> 374 2020 CAR DT LDT 99 Active #> 375 2020 CAR DT LDT 93 Active #> 376 2020 CAR FB FB 40 Active #> 377 2020 CAR G <NA> 62 Active #> 378 2020 CAR G RG 67 Active #> 379 2020 CAR G <NA> 66 Active #> 380 2020 CAR G LG 65 Active #> 381 2020 CAR G RG 64 Active #> 382 2020 CAR G LG 75 Active #> 383 2020 CAR K PK 4 Active #> 384 2020 CAR LB <NA> 47 Voluntary Opt Out #> 385 2020 CAR LB <NA> 59 Injured Reserve #> 386 2020 CAR LB MLB 52 Active #> 387 2020 CAR LB WILL 50 Active #> 388 2020 CAR LB WILL 54 Active #> 389 2020 CAR LB MLB 57 Active #> 390 2020 CAR LB SAM 56 Active #> 391 2020 CAR LB <NA> 47 Active #> 392 2020 CAR LB <NA> 45 Active #> 393 2020 CAR LB <NA> 49 Active #> 394 2020 CAR LS <NA> 44 Active #> 395 2020 CAR P <NA> 2 Active #> 396 2020 CAR P <NA> 3 Active #> 397 2020 CAR QB QB 5 Active #> 398 2020 CAR QB QB 6 Active #> 399 2020 CAR QB QB 7 Active #> 400 2020 CAR QB <NA> 15 Active #> 401 2020 CAR RB <NA> 39 Active #> 402 2020 CAR RB RB 36 Active #> 403 2020 CAR RB <NA> 35 Active #> 404 2020 CAR RB RB 22 Active #> 405 2020 CAR RB RB 28 Active #> 406 2020 CAR SS SS 42 Active #> 407 2020 CAR SS SS 31 Active #> 408 2020 CAR T RT 73 Active #> 409 2020 CAR T LT 74 Active #> 410 2020 CAR T RT 72 Active #> 411 2020 CAR T LT 76 Active #> 412 2020 CAR T RT 63 Active #> 413 2020 CAR TE TE 80 Active #> 414 2020 CAR TE TE 86 Active #> 415 2020 CAR TE <NA> 48 Active #> 416 2020 CAR TE <NA> 85 Active #> 417 2020 CAR TE <NA> 82 Active #> 418 2020 CAR WR <NA> 82 Active #> 419 2020 CAR WR LWR 84 Active #> 420 2020 CAR WR RWR 17 Active #> 421 2020 CAR WR LWR 16 Active #> 422 2020 CAR WR RWR 14 Active #> 423 2020 CAR WR <NA> 13 Active #> 424 2020 CAR WR RWR 11 Active #> 425 2020 CAR WR LWR 10 Active #> 426 2020 CAR WR <NA> 83 Active #> 427 2020 CAR WR LWR 12 Active #> 428 2020 CAR WR <NA> 18 Active #> 429 2020 CAR WR <NA> 19 Active #> 430 2020 CHI C C 65 Active #> 431 2020 CHI C C 67 Active #> 432 2020 CHI CB NB 24 Active #> 433 2020 CHI CB CB 20 Active #> 434 2020 CHI CB <NA> 31 Active #> 435 2020 CHI CB <NA> 47 Active #> 436 2020 CHI CB CB 23 Active #> 437 2020 CHI CB CB 33 Active #> 438 2020 CHI CB CB 25 Active #> 439 2020 CHI CB <NA> 39 Active #> 440 2020 CHI CB CB 30 Active #> 441 2020 CHI CB CB 22 Active #> 442 2020 CHI CB <NA> 31 Active #> 443 2020 CHI DB SS 38 Active #> 444 2020 CHI DB SS 26 Active #> 445 2020 CHI DB <NA> 43 Active #> 446 2020 CHI DB SS 36 Active #> 447 2020 CHI DE <NA> 57 Active #> 448 2020 CHI DE ROLB 94 Active #> 449 2020 CHI DL <NA> 0 Active #> 450 2020 CHI DT RDE 97 Inactive #> 451 2020 CHI DT RDE 95 Active #> 452 2020 CHI DT <NA> 73 Inactive #> 453 2020 CHI DT RDE 92 Active #> 454 2020 CHI DT DT 96 Active #> 455 2020 CHI DT <NA> 63 Active #> 456 2020 CHI G LG 68 Active #> 457 2020 CHI G <NA> 60 Active #> 458 2020 CHI G RG 74 Active #> 459 2020 CHI G RT 73 Active #> 460 2020 CHI G RG 64 Active #> 461 2020 CHI G <NA> 62 Active #> 462 2020 CHI G LG 71 Active #> 463 2020 CHI K PK 2 Active #> 464 2020 CHI K PK 15 Active #> 465 2020 CHI LB LILB 58 Active #> 466 2020 CHI LB LOLB 99 Active #> 467 2020 CHI LB RILB 45 Active #> 468 2020 CHI LB ROLB 50 Active #> 469 2020 CHI LB ROLB 93 Active #> 470 2020 CHI LB RILB 59 Active #> 471 2020 CHI LB LILB 55 Active #> 472 2020 CHI LB LOLB 52 Active #> 473 2020 CHI LB <NA> 44 Active #> 474 2020 CHI LB <NA> 57 Active #> 475 2020 CHI LS <NA> 48 Active #> 476 2020 CHI NT NT 90 Active #> 477 2020 CHI NT NT 98 Active #> 478 2020 CHI NT <NA> 91 Voluntary Opt Out #> 479 2020 CHI NT DT 75 Active #> 480 2020 CHI P <NA> 16 Active #> 481 2020 CHI QB QB 10 Active #> 482 2020 CHI QB QB 9 Active #> 483 2020 CHI QB <NA> 8 Active #> 484 2020 CHI RB RB 35 Active #> 485 2020 CHI RB <NA> 46 Active #> 486 2020 CHI RB RB 29 Active #> 487 2020 CHI RB RB 32 Active #> 488 2020 CHI RB <NA> 39 Active #> 489 2020 CHI SS FS 39 Active #> 490 2020 CHI SS FS 27 Active #> 491 2020 CHI SS <NA> 21 Voluntary Opt Out #> 492 2020 CHI T RG 69 Active #> 493 2020 CHI T RT 78 Active #> 494 2020 CHI T LT 72 Active #> 495 2020 CHI T RT 70 Active #> 496 2020 CHI T <NA> 79 Active #> 497 2020 CHI TE <NA> 49 Active #> 498 2020 CHI TE <NA> 81 Active #> 499 2020 CHI TE TE 85 Active #> 500 2020 CHI TE <NA> 87 Active #> 501 2020 CHI TE TE 80 Active #> 502 2020 CHI TE TE 86 Active #> 503 2020 CHI WR LWR 19 Active #> 504 2020 CHI WR SWR 19 Active #> 505 2020 CHI WR <NA> 19 Active #> 506 2020 CHI WR RWR 88 Active #> 507 2020 CHI WR SWR 83 Active #> 508 2020 CHI WR SWR 18 Practice Squad #> 509 2020 CHI WR <NA> 13 Active #> 510 2020 CHI WR RWR 11 Active #> 511 2020 CHI WR LWR 82 Active #> 512 2020 CHI WR <NA> 14 Active #> 513 2020 CHI WR SWR 17 Active #> 514 2020 CHI WR LWR 12 Active #> 515 2020 CHI WR LWR 84 Active #> 516 2020 CIN C C 66 Active #> 517 2020 CIN C LG 61 Active #> 518 2020 CIN C C 53 Active #> 519 2020 CIN CB NB 26 Active #> 520 2020 CIN CB <NA> 37 Active #> 521 2020 CIN CB <NA> 39 Active #> 522 2020 CIN CB NB 21 Active #> 523 2020 CIN CB CB 27 Active #> 524 2020 CIN CB CB 23 Active #> 525 2020 CIN CB CB 22 Active #> 526 2020 CIN CB CB 37 Active #> 527 2020 CIN CB CB 38 Active #> 528 2020 CIN DB <NA> 40 Active #> 529 2020 CIN DB FS 40 Active #> 530 2020 CIN DB <NA> 30 Active #> 531 2020 CIN DE RDE 58 Active #> 532 2020 CIN DE <NA> 92 Active #> 533 2020 CIN DE LDE 94 Active #> 534 2020 CIN DE RDE 90 Active #> 535 2020 CIN DE LDE 91 Active #> 536 2020 CIN DT NT 71 Active #> 537 2020 CIN DT RDT 76 Active #> 538 2020 CIN DT RDT 97 Active #> 539 2020 CIN DT LDE 70 Active #> 540 2020 CIN DT RDT 69 Active #> 541 2020 CIN G RG 67 Active #> 542 2020 CIN G LT 77 Active #> 543 2020 CIN G LG 62 Active #> 544 2020 CIN G <NA> 64 Active #> 545 2020 CIN G RG 65 Active #> 546 2020 CIN G LG 60 Active #> 547 2020 CIN G RG 72 Active #> 548 2020 CIN K PK 3 Active #> 549 2020 CIN K PK 4 Active #> 550 2020 CIN LB LB 59 Active #> 551 2020 CIN LB LB 57 Active #> 552 2020 CIN LB LB 56 Active #> 553 2020 CIN LB LB 51 Active #> 554 2020 CIN LB <NA> 53 Active #> 555 2020 CIN LB <NA> 47 Active #> 556 2020 CIN LB LB 50 Active #> 557 2020 CIN LB LB 55 Active #> 558 2020 CIN LS <NA> 46 Active #> 559 2020 CIN LS <NA> 48 Active #> 560 2020 CIN NT <NA> 91 Voluntary Opt Out #> 561 2020 CIN NT NT 98 Active #> 562 2020 CIN NT RDE 95 Active #> 563 2020 CIN NT NT 99 Active #> 564 2020 CIN P <NA> 10 Active #> 565 2020 CIN QB <NA> 9 Active #> 566 2020 CIN QB QB 9 Active #> 567 2020 CIN QB QB 5 Active #> 568 2020 CIN QB <NA> 7 Active #> 569 2020 CIN QB QB 8 Active #> 570 2020 CIN RB <NA> 32 Active #> 571 2020 CIN RB <NA> 31 Active #> 572 2020 CIN RB RB 34 Active #> 573 2020 CIN RB RB 28 Active #> 574 2020 CIN RB RB 25 Active #> 575 2020 CIN SS SS 36 Active #> 576 2020 CIN SS SS 24 Active #> 577 2020 CIN SS <NA> 41 Active #> 578 2020 CIN T <NA> 71 Voluntary Opt Out #> 579 2020 CIN T LT 73 Active #> 580 2020 CIN T RT 68 Active #> 581 2020 CIN T RT 74 Active #> 582 2020 CIN T <NA> 70 Active #> 583 2020 CIN TE TE 82 Active #> 584 2020 CIN TE <NA> 86 Active #> 585 2020 CIN TE TE 87 Active #> 586 2020 CIN TE TE 89 Active #> 587 2020 CIN TE <NA> 84 Active #> 588 2020 CIN WR LWR 18 Active #> 589 2020 CIN WR SWR 17 Active #> 590 2020 CIN WR LWR 19 Active #> 591 2020 CIN WR <NA> 14 Active #> 592 2020 CIN WR SWR 85 Active #> 593 2020 CIN WR RWR 12 Active #> 594 2020 CIN WR RWR 83 Active #> 595 2020 CIN WR <NA> 80 Active #> 596 2020 CIN WR <NA> 16 Active #> 597 2020 CIN WR SWR 11 Active #> 598 2020 CLE C C 64 Active #> 599 2020 CLE C <NA> 63 Active #> 600 2020 CLE C C 53 Active #> 601 2020 CLE C LG 58 Active #> 602 2020 CLE CB RCB 34 Active #> 603 2020 CLE CB RCB 26 Active #> 604 2020 CLE CB RCB 39 Active #> 605 2020 CLE CB <NA> 25 Active #> 606 2020 CLE CB LCB 21 Active #> 607 2020 CLE CB <NA> 38 Active #> 608 2020 CLE CB <NA> 33 Active #> 609 2020 CLE CB LCB 36 Active #> 610 2020 CLE CB LCB 28 Active #> 611 2020 CLE CB <NA> 20 Active #> 612 2020 CLE DB FS 22 Active #> 613 2020 CLE DB SS 37 Active #> 614 2020 CLE DB FS 23 Active #> 615 2020 CLE DB SS 29 Active #> 616 2020 CLE DE <NA> 69 Active #> 617 2020 CLE DE RDE 97 Active #> 618 2020 CLE DE LDE 91 Active #> 619 2020 CLE DE <NA> 61 Active #> 620 2020 CLE DE <NA> 59 Active #> 621 2020 CLE DE LDE 95 Active #> 622 2020 CLE DE WLB 60 Active #> 623 2020 CLE DE RDE 54 Active #> 624 2020 CLE DE RDE 94 Active #> 625 2020 CLE DT LDT 90 Active #> 626 2020 CLE DT LDT 98 Active #> 627 2020 CLE DT RDT 96 Active #> 628 2020 CLE DT <NA> 66 Active #> 629 2020 CLE DT <NA> 91 Active #> 630 2020 CLE DT RDT 65 Active #> 631 2020 CLE FB <NA> 43 Active #> 632 2020 CLE FB FB 31 Active #> 633 2020 CLE G LG 75 Active #> 634 2020 CLE G <NA> 62 Active #> 635 2020 CLE G RG 77 Active #> 636 2020 CLE G <NA> 71 Voluntary Opt Out #> 637 2020 CLE G <NA> 67 Active #> 638 2020 CLE K <NA> 3 Active #> 639 2020 CLE K PK 2 Active #> 640 2020 CLE LB MLB 51 Active #> 641 2020 CLE LB SAM 56 Active #> 642 2020 CLE LB WLB 52 Active #> 643 2020 CLE LB WLB 50 Active #> 644 2020 CLE LB SAM 59 Active #> 645 2020 CLE LB SAM 44 Active #> 646 2020 CLE LB MLB 93 Active #> 647 2020 CLE LB MLB 55 Active #> 648 2020 CLE LS <NA> 47 Active #> 649 2020 CLE NT RDT 99 Voluntary Opt Out #> 650 2020 CLE P <NA> 7 Active #> 651 2020 CLE QB <NA> 16 Active #> 652 2020 CLE QB QB 5 Active #> 653 2020 CLE QB QB 6 Active #> 654 2020 CLE RB <NA> 42 Active #> 655 2020 CLE RB <NA> 22 Active #> 656 2020 CLE RB RB 24 Active #> 657 2020 CLE RB RB 30 Active #> 658 2020 CLE RB RB 27 Active #> 659 2020 CLE SS FS 35 Active #> 660 2020 CLE SS <NA> 41 Active #> 661 2020 CLE SS <NA> 48 Active #> 662 2020 CLE SS SS 33 Active #> 663 2020 CLE SS SS 42 Active #> 664 2020 CLE T LT 71 Active #> 665 2020 CLE T RT 74 Active #> 666 2020 CLE T RG 62 Active #> 667 2020 CLE T <NA> 68 Voluntary Opt Out #> 668 2020 CLE T LT 70 Active #> 669 2020 CLE T RG 68 Active #> 670 2020 CLE T <NA> 60 Active #> 671 2020 CLE T <NA> 79 Voluntary Opt Out #> 672 2020 CLE T RT 78 Active #> 673 2020 CLE TE RTE 88 Active #> 674 2020 CLE TE LTE 81 Active #> 675 2020 CLE TE LTE 89 Active #> 676 2020 CLE TE RTE 85 Active #> 677 2020 CLE TE <NA> 88 Active #> 678 2020 CLE TE <NA> 86 Active #> 679 2020 CLE WR <NA> 19 Active #> 680 2020 CLE WR <NA> 10 Active #> 681 2020 CLE WR <NA> 16 Active #> 682 2020 CLE WR <NA> 10 Active #> 683 2020 CLE WR RWR 13 Active #> 684 2020 CLE WR LWR 12 Active #> 685 2020 CLE WR LWR 80 Active #> 686 2020 CLE WR RWR 18 Active #> 687 2020 CLE WR LWR 11 Active #> 688 2020 CLE WR RWR 82 Active #> 689 2020 CLE WR <NA> 83 Active #> 690 2020 CLE WR <NA> 84 Active #> 691 2020 DAL C <NA> 62 Active #> 692 2020 DAL C C 63 Active #> 693 2020 DAL C C 72 Injured Reserve #> 694 2020 DAL C <NA> 51 Active #> 695 2020 DAL C C 73 Active #> 696 2020 DAL CB <NA> 28 Voluntary Opt Out #> 697 2020 DAL CB <NA> 25 Active #> 698 2020 DAL CB RCB 27 Active #> 699 2020 DAL CB CB 30 Active #> 700 2020 DAL CB LCB 39 Active #> 701 2020 DAL CB RCB 33 Active #> 702 2020 DAL CB LCB 24 Active #> 703 2020 DAL CB LCB 29 Active #> 704 2020 DAL CB CB 26 Active #> 705 2020 DAL CB LCB 28 Active #> 706 2020 DAL DB <NA> 32 Active #> 707 2020 DAL DB FS 25 Active #> 708 2020 DAL DB SS 40 Active #> 709 2020 DAL DB SS 23 Active #> 710 2020 DAL DB FS 41 Active #> 711 2020 DAL DE DPR 58 Active #> 712 2020 DAL DE RDE 97 Active #> 713 2020 DAL DE LDE 90 Active #> 714 2020 DAL DE LDE 56 Active #> 715 2020 DAL DE DPR 94 Active #> 716 2020 DAL DE RDE 92 Active #> 717 2020 DAL DE RDE 98 Active #> 718 2020 DAL DT LDT 95 Active #> 719 2020 DAL DT LDT 95 Active #> 720 2020 DAL DT RDT 72 Active #> 721 2020 DAL DT RDT 99 Active #> 722 2020 DAL DT LDT 79 Active #> 723 2020 DAL DT <NA> 93 Active #> 724 2020 DAL DT LDT 96 Active #> 725 2020 DAL FB <NA> 49 Voluntary Opt Out #> 726 2020 DAL G RG 70 Active #> 727 2020 DAL G LG 66 Active #> 728 2020 DAL G LG 52 Active #> 729 2020 DAL K PK 2 Active #> 730 2020 DAL LB MLB 59 Active #> 731 2020 DAL LB MLB 55 Active #> 732 2020 DAL LB WLB 54 Active #> 733 2020 DAL LB WLB 57 Active #> 734 2020 DAL LB WLB 48 Active #> 735 2020 DAL LB <NA> 44 Active #> 736 2020 DAL LB <NA> 0 Active #> 737 2020 DAL LB MLB 50 Active #> 738 2020 DAL LB <NA> 76 Active #> 739 2020 DAL LS <NA> 91 Active #> 740 2020 DAL P <NA> 1 Active #> 741 2020 DAL P <NA> 6 Active #> 742 2020 DAL QB <NA> 10 Active #> 743 2020 DAL QB QB 14 Active #> 744 2020 DAL QB <NA> 7 Active #> 745 2020 DAL QB QB 4 Active #> 746 2020 DAL QB QB 3 Active #> 747 2020 DAL RB RB 20 Active #> 748 2020 DAL RB RB 34 Active #> 749 2020 DAL RB <NA> 45 Active #> 750 2020 DAL RB RB 21 Active #> 751 2020 DAL SS SS 37 Active #> 752 2020 DAL T LT 69 Active #> 753 2020 DAL T <NA> 67 Active #> 754 2020 DAL T LT 64 Active #> 755 2020 DAL T <NA> 68 Active #> 756 2020 DAL T <NA> 0 Active #> 757 2020 DAL T RG 65 Active #> 758 2020 DAL T RT 75 Active #> 759 2020 DAL T LT 77 Active #> 760 2020 DAL T RT 64 Active #> 761 2020 DAL T RT 71 Active #> 762 2020 DAL T RT 78 Active #> 763 2020 DAL TE TE 89 Active #> 764 2020 DAL TE TE 86 Active #> 765 2020 DAL TE TE 80 Active #> 766 2020 DAL TE <NA> 84 Active #> 767 2020 DAL TE <NA> 87 Active #> 768 2020 DAL WR WR 17 Active #> 769 2020 DAL WR <NA> 15 Active #> 770 2020 DAL WR RWR 11 Active #> 771 2020 DAL WR LWR 85 Active #> 772 2020 DAL WR LWR 19 Active #> 773 2020 DAL WR RWR 13 Active #> 774 2020 DAL WR WR 88 Active #> 775 2020 DAL WR <NA> 0 Voluntary Opt Out #> 776 2020 DAL WR <NA> 81 Active #> 777 2020 DAL WR <NA> 18 Active #> 778 2020 DEN C C 79 Active #> 779 2020 DEN C <NA> 50 Active #> 780 2020 DEN C <NA> 75 Active #> 781 2020 DEN CB RCB 29 Active #> 782 2020 DEN CB LCB 42 Active #> 783 2020 DEN CB RCB 41 Active #> 784 2020 DEN CB <NA> 34 Active #> 785 2020 DEN CB RCB 23 Active #> 786 2020 DEN CB LCB 49 Active #> 787 2020 DEN CB SS 22 Active #> 788 2020 DEN CB <NA> 26 Active #> 789 2020 DEN CB LCB 21 Inactive #> 790 2020 DEN CB LCB 20 Active #> 791 2020 DEN DB SS 27 Active #> 792 2020 DEN DB SS 37 Active #> 793 2020 DEN DB RCB 33 Active #> 794 2020 DEN DB FS 31 Active #> 795 2020 DEN DE LDE 96 Active #> 796 2020 DEN DE LDE 57 Active #> 797 2020 DEN DE LDE 92 Active #> 798 2020 DEN DE SLB 55 Active #> 799 2020 DEN DT <NA> 91 Active #> 800 2020 DEN DT RDE 93 Active #> 801 2020 DEN DT NT 90 Active #> 802 2020 DEN DT RDE 73 Active #> 803 2020 DEN DT NT 77 Active #> 804 2020 DEN DT <NA> 94 Active #> 805 2020 DEN DT <NA> 90 Voluntary Opt Out #> 806 2020 DEN DT <NA> 97 Active #> 807 2020 DEN DT NT 95 Active #> 808 2020 DEN DT RDE 99 Active #> 809 2020 DEN G RG 52 Active #> 810 2020 DEN G LG 71 Active #> 811 2020 DEN G LG 66 Active #> 812 2020 DEN G RG 61 Active #> 813 2020 DEN K PK 8 Active #> 814 2020 DEN K <NA> 1 Active #> 815 2020 DEN LB RILB 42 Active #> 816 2020 DEN LB SLB 91 Active #> 817 2020 DEN LB SLB 59 Active #> 818 2020 DEN LB WLB 58 Active #> 819 2020 DEN LB LILB 40 Active #> 820 2020 DEN LB <NA> 57 Active #> 821 2020 DEN LB WLB 97 Active #> 822 2020 DEN LB <NA> 51 Active #> 823 2020 DEN LB RILB 47 Active #> 824 2020 DEN LB RILB 43 Active #> 825 2020 DEN LB RILB 54 Active #> 826 2020 DEN LB WLB 48 Active #> 827 2020 DEN LB LILB 45 Active #> 828 2020 DEN LB LILB 53 Active #> 829 2020 DEN LS <NA> 46 Active #> 830 2020 DEN NT NT 98 Active #> 831 2020 DEN P <NA> 6 Active #> 832 2020 DEN QB QB 3 Active #> 833 2020 DEN QB QB 9 Active #> 834 2020 DEN QB QB 4 Active #> 835 2020 DEN RB <NA> 34 Active #> 836 2020 DEN RB <NA> 32 Active #> 837 2020 DEN RB RB 30 Active #> 838 2020 DEN RB <NA> 35 Active #> 839 2020 DEN RB RB 25 Active #> 840 2020 DEN RB RB 28 Active #> 841 2020 DEN SS <NA> 34 Active #> 842 2020 DEN SS FS 36 Active #> 843 2020 DEN T <NA> 75 Active #> 844 2020 DEN T RT 68 Active #> 845 2020 DEN T RT 78 Active #> 846 2020 DEN T LT 76 Active #> 847 2020 DEN T LT 72 Active #> 848 2020 DEN T <NA> 70 Voluntary Opt Out #> 849 2020 DEN T <NA> 79 Active #> 850 2020 DEN TE <NA> 84 Active #> 851 2020 DEN TE LTE 87 Active #> 852 2020 DEN TE <NA> 80 Active #> 853 2020 DEN TE LTE 85 Active #> 854 2020 DEN TE LTE 88 Active #> 855 2020 DEN TE <NA> 89 Active #> 856 2020 DEN TE FB 83 Active #> 857 2020 DEN TE TE 81 Active #> 858 2020 DEN WR LWR 14 Active #> 859 2020 DEN WR LWR 19 Active #> 860 2020 DEN WR RWR 10 Active #> 861 2020 DEN WR LWR 17 Active #> 862 2020 DEN WR LWR 81 Active #> 863 2020 DEN WR <NA> 2 Active #> 864 2020 DEN WR <NA> 12 Active #> 865 2020 DEN WR <NA> 16 Active #> 866 2020 DEN WR RWR 13 Active #> 867 2020 DEN WR RWR 11 Active #> 868 2020 DET C C 64 Active #> 869 2020 DET C C 77 Active #> 870 2020 DET C <NA> 60 Voluntary Opt Out #> 871 2020 DET CB LCB 24 Active #> 872 2020 DET CB RCB 30 Active #> 873 2020 DET CB RCB 29 Active #> 874 2020 DET CB <NA> 29 Active #> 875 2020 DET CB <NA> 31 Active #> 876 2020 DET CB LCB 23 Active #> 877 2020 DET CB RCB 34 Active #> 878 2020 DET CB LCB 38 Active #> 879 2020 DET CB CB 27 Active #> 880 2020 DET DB SS 47 Active #> 881 2020 DET DB FS 35 Active #> 882 2020 DET DB <NA> 43 Inactive #> 883 2020 DET DB <NA> 42 Active #> 884 2020 DET DB FS 21 Active #> 885 2020 DET DB <NA> 49 Inactive #> 886 2020 DET DE LDE 99 Active #> 887 2020 DET DE <NA> 95 Active #> 888 2020 DET DE LDT 96 Active #> 889 2020 DET DE LDE 94 Active #> 890 2020 DET DE RDE 95 Active #> 891 2020 DET DE RDE 93 Active #> 892 2020 DET DE RDT 75 Active #> 893 2020 DET DE LDE 90 Active #> 894 2020 DET DE <NA> 52 Active #> 895 2020 DET DE RDE 98 Active #> 896 2020 DET DT <NA> 99 Voluntary Opt Out #> 897 2020 DET DT <NA> 64 Active #> 898 2020 DET DT RDT 91 Active #> 899 2020 DET DT RDT 71 Active #> 900 2020 DET DT LDT 92 Active #> 901 2020 DET DT LDT 97 Active #> 902 2020 DET G <NA> 62 Active #> 903 2020 DET G LG 73 Active #> 904 2020 DET G RG 76 Active #> 905 2020 DET G C 66 Active #> 906 2020 DET G RG 61 Active #> 907 2020 DET K PK 5 Active #> 908 2020 DET K <NA> 16 Active #> 909 2020 DET LB <NA> 57 Active #> 910 2020 DET LB OLB 44 Active #> 911 2020 DET LB SLB 45 Active #> 912 2020 DET LB MLB 51 Active #> 913 2020 DET LB MLB 51 Active #> 914 2020 DET LB SLB 58 Active #> 915 2020 DET LB MLB 40 Active #> 916 2020 DET LB SLB 59 Active #> 917 2020 DET LB <NA> 69 Active #> 918 2020 DET LB OLB 52 Active #> 919 2020 DET LS <NA> 48 Active #> 920 2020 DET P <NA> 3 Active #> 921 2020 DET QB QB 9 Active #> 922 2020 DET QB QB 4 Active #> 923 2020 DET QB QB 10 Active #> 924 2020 DET RB RB 33 Active #> 925 2020 DET RB RB 32 Active #> 926 2020 DET RB <NA> 40 Active #> 927 2020 DET RB RB 28 Active #> 928 2020 DET RB <NA> 28 Active #> 929 2020 DET RB FB 46 Active #> 930 2020 DET SS SS 26 Active #> 931 2020 DET SS FS 25 Active #> 932 2020 DET SS <NA> 23 Active #> 933 2020 DET T LT 70 Active #> 934 2020 DET T RT 72 Active #> 935 2020 DET T LT 67 Active #> 936 2020 DET T LT 68 Active #> 937 2020 DET T RT 65 Active #> 938 2020 DET TE TE 86 Active #> 939 2020 DET TE <NA> 47 Active #> 940 2020 DET TE TE 83 Active #> 941 2020 DET TE <NA> 86 Active #> 942 2020 DET TE TE 86 Active #> 943 2020 DET TE TE 88 Active #> 944 2020 DET WR SWR 39 Active #> 945 2020 DET WR <NA> 85 Active #> 946 2020 DET WR LWR 12 Active #> 947 2020 DET WR RWR 11 Active #> 948 2020 DET WR SWR 80 Active #> 949 2020 DET WR RWR 87 Active #> 950 2020 DET WR <NA> 13 Active #> 951 2020 DET WR <NA> 18 Voluntary Opt Out #> 952 2020 DET WR LWR 19 Active #> 953 2020 GB C C 63 Active #> 954 2020 GB C <NA> 67 Active #> 955 2020 GB CB RCB 35 Active #> 956 2020 GB CB NB 39 Active #> 957 2020 GB CB RCB 20 Active #> 958 2020 GB CB <NA> 34 Active #> 959 2020 GB CB <NA> 38 Active #> 960 2020 GB CB LCB 23 Active #> 961 2020 GB CB LCB 29 Active #> 962 2020 GB CB RCB 37 Active #> 963 2020 GB CB <NA> 48 Active #> 964 2020 GB DB FS 31 Active #> 965 2020 GB DB <NA> 41 Active #> 966 2020 GB DB SS 36 Active #> 967 2020 GB DB FS 24 Active #> 968 2020 GB DB <NA> 46 Active #> 969 2020 GB DE LDE 94 Active #> 970 2020 GB DE NT 93 Active #> 971 2020 GB DE <NA> 45 Active #> 972 2020 GB DE LDE 90 Active #> 973 2020 GB DE <NA> 50 Active #> 974 2020 GB DE RDE 96 Active #> 975 2020 GB DT <NA> 79 Active #> 976 2020 GB DT <NA> 99 Active #> 977 2020 GB DT NT 98 Active #> 978 2020 GB DT <NA> 78 Active #> 979 2020 GB G LG 65 Active #> 980 2020 GB G RG 64 Active #> 981 2020 GB G RT 71 Active #> 982 2020 GB G <NA> 68 Active #> 983 2020 GB G RG 74 Active #> 984 2020 GB G LG 62 Active #> 985 2020 GB G LG 76 Active #> 986 2020 GB G RG 72 Active #> 987 2020 GB K PK 2 Active #> 988 2020 GB LB <NA> 59 Active #> 989 2020 GB LB LOLB 91 Active #> 990 2020 GB LB LOLB 52 Active #> 991 2020 GB LB LOLB 53 Active #> 992 2020 GB LB RILB 42 Active #> 993 2020 GB LB LILB 44 Active #> 994 2020 GB LB ROLB 55 Active #> 995 2020 GB LB LILB 51 Active #> 996 2020 GB LB RILB 54 Active #> 997 2020 GB LB ROLB 56 Active #> 998 2020 GB LB LILB 57 Active #> 999 2020 GB LB RILB 58 Active #> 1000 2020 GB LS <NA> 43 Active #> 1001 2020 GB NT NT 97 Active #> 1002 2020 GB NT RDE 95 Active #> 1003 2020 GB P <NA> 9 Active #> 1004 2020 GB P <NA> 6 Active #> 1005 2020 GB QB QB 12 Active #> 1006 2020 GB QB QB 8 Active #> 1007 2020 GB QB QB 10 Active #> 1008 2020 GB QB LTE 45 Active #> 1009 2020 GB RB RB 22 Active #> 1010 2020 GB RB <NA> 38 Active #> 1011 2020 GB RB <NA> 27 Active #> 1012 2020 GB RB RB 33 Active #> 1013 2020 GB RB <NA> 32 Active #> 1014 2020 GB RB RB 28 Active #> 1015 2020 GB RB RB 30 Active #> 1016 2020 GB SS SS 26 Active #> 1017 2020 GB SS FS 25 Active #> 1018 2020 GB T <NA> 67 Active #> 1019 2020 GB T RT 77 Active #> 1020 2020 GB T LT 73 Active #> 1021 2020 GB T LT 69 Active #> 1022 2020 GB T LT 65 Active #> 1023 2020 GB TE LTE 89 Active #> 1024 2020 GB TE LTE 87 Active #> 1025 2020 GB TE RTE 49 Active #> 1026 2020 GB TE FB 81 Active #> 1027 2020 GB TE <NA> 89 Active #> 1028 2020 GB TE <NA> 45 Active #> 1029 2020 GB TE RTE 85 Active #> 1030 2020 GB TE <NA> 86 Active #> 1031 2020 GB WR LWR 17 Active #> 1032 2020 GB WR LWR 86 Active #> 1033 2020 GB WR <NA> 84 Active #> 1034 2020 GB WR LWR 19 Active #> 1035 2020 GB WR <NA> 10 Active #> 1036 2020 GB WR <NA> 15 Active #> 1037 2020 GB WR SWR 82 Active #> 1038 2020 GB WR RWR 13 Active #> 1039 2020 GB WR RWR 16 Active #> 1040 2020 GB WR RWR 83 Active #> 1041 2020 GB WR <NA> 88 Active #> 1042 2020 GB WR <NA> 11 Voluntary Opt Out #> 1043 2020 HOU C C 66 Active #> 1044 2020 HOU C <NA> 68 Active #> 1045 2020 HOU C <NA> 62 Active #> 1046 2020 HOU CB FS 36 Active #> 1047 2020 HOU CB CB 26 Active #> 1048 2020 HOU CB CB 34 Active #> 1049 2020 HOU CB SS 32 Active #> 1050 2020 HOU CB <NA> 39 Active #> 1051 2020 HOU CB RCB 21 Active #> 1052 2020 HOU CB LCB 30 Active #> 1053 2020 HOU CB RCB 29 Active #> 1054 2020 HOU CB <NA> 28 Active #> 1055 2020 HOU CB RCB 35 Active #> 1056 2020 HOU CB LCB 22 Active #> 1057 2020 HOU DB <NA> 23 Active #> 1058 2020 HOU DB LCB 33 Active #> 1059 2020 HOU DB SS 24 Active #> 1060 2020 HOU DE SLB 54 Active #> 1061 2020 HOU DE LDE 94 Active #> 1062 2020 HOU DE RDE 91 Active #> 1063 2020 HOU DE RDE 99 Active #> 1064 2020 HOU DT NT 90 Active #> 1065 2020 HOU DT LDE 96 Active #> 1066 2020 HOU DT DE 93 Active #> 1067 2020 HOU DT <NA> 61 Active #> 1068 2020 HOU DT <NA> 95 Voluntary Opt Out #> 1069 2020 HOU DT NT 98 Active #> 1070 2020 HOU G RG 77 Active #> 1071 2020 HOU G LG 64 Active #> 1072 2020 HOU G RG 73 Active #> 1073 2020 HOU K PK 7 Active #> 1074 2020 HOU LB WILL 51 Active #> 1075 2020 HOU LB <NA> 40 Active #> 1076 2020 HOU LB MIKE 55 Active #> 1077 2020 HOU LB WILL 48 Active #> 1078 2020 HOU LB MIKE 58 Active #> 1079 2020 HOU LB WILL 41 Active #> 1080 2020 HOU LB SLB 59 Active #> 1081 2020 HOU LB MIKE 50 Active #> 1082 2020 HOU LB JACK 52 Active #> 1083 2020 HOU LB RDE 53 Active #> 1084 2020 HOU LB <NA> 52 Active #> 1085 2020 HOU LB JACK 57 Active #> 1086 2020 HOU LB SLB 56 Active #> 1087 2020 HOU LS <NA> 45 Active #> 1088 2020 HOU LS <NA> 46 Active #> 1089 2020 HOU NT NT 92 Active #> 1090 2020 HOU NT LDE 97 Active #> 1091 2020 HOU P <NA> 9 Active #> 1092 2020 HOU QB QB 4 Active #> 1093 2020 HOU QB QB 2 Active #> 1094 2020 HOU QB QB 3 Active #> 1095 2020 HOU RB <NA> 22 Active #> 1096 2020 HOU RB RB 38 Active #> 1097 2020 HOU RB RB 31 Active #> 1098 2020 HOU RB RB 40 Active #> 1099 2020 HOU RB RB 25 Active #> 1100 2020 HOU RB FB 44 Active #> 1101 2020 HOU SS FS 28 Active #> 1102 2020 HOU SS FS 20 Active #> 1103 2020 HOU T RT 76 Active #> 1104 2020 HOU T RT 71 Active #> 1105 2020 HOU T LT 63 Active #> 1106 2020 HOU T LG 74 Active #> 1107 2020 HOU T LT 78 Active #> 1108 2020 HOU T RT 67 Active #> 1109 2020 HOU T <NA> 70 Active #> 1110 2020 HOU TE TE 88 Active #> 1111 2020 HOU TE TE 85 Active #> 1112 2020 HOU TE TE 87 Active #> 1113 2020 HOU TE <NA> 81 Active #> 1114 2020 HOU WR SWR 18 Active #> 1115 2020 HOU WR <NA> 11 Active #> 1116 2020 HOU WR RWR 17 Active #> 1117 2020 HOU WR RWR 16 Active #> 1118 2020 HOU WR LWR 19 Active #> 1119 2020 HOU WR LWR 82 Active #> 1120 2020 HOU WR <NA> 16 Active #> 1121 2020 HOU WR RWR 15 Active #> 1122 2020 HOU WR <NA> 1 Active #> 1123 2020 HOU WR LWR 13 Active #> 1124 2020 IND C C 78 Active #> 1125 2020 IND C C 68 Active #> 1126 2020 IND C <NA> 70 Active #> 1127 2020 IND CB CB 38 Active #> 1128 2020 IND CB <NA> 36 Active #> 1129 2020 IND CB CB 35 Active #> 1130 2020 IND CB CB 26 Active #> 1131 2020 IND CB <NA> 23 Active #> 1132 2020 IND CB CB 27 Active #> 1133 2020 IND CB <NA> 43 Active #> 1134 2020 IND CB NB 34 Active #> 1135 2020 IND CB NB 23 Active #> 1136 2020 IND CB <NA> 39 Voluntary Opt Out #> 1137 2020 IND DB <NA> 36 Active #> 1138 2020 IND DB <NA> 33 Active #> 1139 2020 IND DB <NA> 42 Active #> 1140 2020 IND DB SS 32 Active #> 1141 2020 IND DB FS 30 Active #> 1142 2020 IND DB FS 29 Active #> 1143 2020 IND DE DT 94 Active #> 1144 2020 IND DE LDE 96 Active #> 1145 2020 IND DE LDE 57 Active #> 1146 2020 IND DE RDE 50 Active #> 1147 2020 IND DE LDE 97 Active #> 1148 2020 IND DE RDE 52 Active #> 1149 2020 IND DT <NA> 66 Active #> 1150 2020 IND DT <NA> 92 Active #> 1151 2020 IND DT NT 76 Active #> 1152 2020 IND DT <NA> 93 Active #> 1153 2020 IND DT DT 99 Active #> 1154 2020 IND G RG 64 Active #> 1155 2020 IND G LG 56 Active #> 1156 2020 IND G RG 63 Active #> 1157 2020 IND G <NA> 60 Active #> 1158 2020 IND K PK 3 Active #> 1159 2020 IND LB WLB 53 Active #> 1160 2020 IND LB MLB 49 Active #> 1161 2020 IND LB MLB 54 Active #> 1162 2020 IND LB <NA> 52 Active #> 1163 2020 IND LB <NA> 55 Voluntary Opt Out #> 1164 2020 IND LB SLB 58 Active #> 1165 2020 IND LB WLB 59 Active #> 1166 2020 IND LB <NA> 59 Active #> 1167 2020 IND LB SLB 45 Active #> 1168 2020 IND LB MLB 44 Active #> 1169 2020 IND LS <NA> 46 Active #> 1170 2020 IND NT NT 90 Active #> 1171 2020 IND P <NA> 3 Active #> 1172 2020 IND P <NA> 8 Active #> 1173 2020 IND P <NA> 6 Active #> 1174 2020 IND QB QB 7 Active #> 1175 2020 IND QB QB 6 Active #> 1176 2020 IND QB QB 9 Active #> 1177 2020 IND QB QB 17 Active #> 1178 2020 IND RB RB 21 Active #> 1179 2020 IND RB <NA> 20 Active #> 1180 2020 IND RB <NA> 40 Active #> 1181 2020 IND RB RB 28 Active #> 1182 2020 IND RB RB 25 Active #> 1183 2020 IND RB <NA> 39 Active #> 1184 2020 IND RB RB 41 Active #> 1185 2020 IND SS SS 37 Active #> 1186 2020 IND SS SS 31 Active #> 1187 2020 IND SS <NA> 42 Voluntary Opt Out #> 1188 2020 IND T RT 62 Active #> 1189 2020 IND T <NA> 61 Active #> 1190 2020 IND T <NA> 74 Injured Reserve #> 1191 2020 IND T <NA> 76 Active #> 1192 2020 IND T LG 69 Active #> 1193 2020 IND T LT 75 Active #> 1194 2020 IND T RT 72 Active #> 1195 2020 IND T <NA> 75 Active #> 1196 2020 IND T <NA> 73 Active #> 1197 2020 IND TE <NA> 83 Active #> 1198 2020 IND TE <NA> 87 Active #> 1199 2020 IND TE LTE 84 Active #> 1200 2020 IND TE RTE 81 Active #> 1201 2020 IND TE LTE 86 Active #> 1202 2020 IND TE RTE 80 Active #> 1203 2020 IND TE <NA> 41 Active #> 1204 2020 IND WR RWR 85 Active #> 1205 2020 IND WR WR 15 Active #> 1206 2020 IND WR LWR 12 Active #> 1207 2020 IND WR <NA> 15 Active #> 1208 2020 IND WR <NA> 10 Active #> 1209 2020 IND WR RWR 16 Active #> 1210 2020 IND WR <NA> 16 Active #> 1211 2020 IND WR LWR 14 Active #> 1212 2020 IND WR LWR 13 Active #> 1213 2020 IND WR RWR 11 Active #> 1214 2020 JAX C <NA> 64 Active #> 1215 2020 JAX CB CB 25 Active #> 1216 2020 JAX CB RCB 34 Active #> 1217 2020 JAX CB <NA> 22 Voluntary Opt Out #> 1218 2020 JAX CB <NA> 32 Active #> 1219 2020 JAX CB FS 40 Active #> 1220 2020 JAX CB RCB 24 Active #> 1221 2020 JAX CB CB 35 Active #> 1222 2020 JAX CB LCB 36 Active #> 1223 2020 JAX CB LCB 5 Active #> 1224 2020 JAX CB LCB 23 Active #> 1225 2020 JAX CB CB 27 Active #> 1226 2020 JAX CB RCB 37 Active #> 1227 2020 JAX DB FS 42 Active #> 1228 2020 JAX DB FS 39 Active #> 1229 2020 JAX DB <NA> 38 Active #> 1230 2020 JAX DE RDE 96 Active #> 1231 2020 JAX DE LDE 93 Inactive #> 1232 2020 JAX DE LDE 41 Active #> 1233 2020 JAX DE LDE 45 Active #> 1234 2020 JAX DE RDE 94 Active #> 1235 2020 JAX DE DT 99 Inactive #> 1236 2020 JAX DE <NA> 55 Voluntary Opt Out #> 1237 2020 JAX DT <NA> 97 Voluntary Opt Out #> 1238 2020 JAX DT <NA> 99 Active #> 1239 2020 JAX DT DT 90 Active #> 1240 2020 JAX DT NT 95 Active #> 1241 2020 JAX DT DT 58 Active #> 1242 2020 JAX DT NT 92 Active #> 1243 2020 JAX DT DT 93 Active #> 1244 2020 JAX DT <NA> 57 Active #> 1245 2020 JAX FB <NA> 49 Active #> 1246 2020 JAX G C 69 Active #> 1247 2020 JAX G RG 60 Active #> 1248 2020 JAX G LG 68 Active #> 1249 2020 JAX G C 65 Active #> 1250 2020 JAX G <NA> 77 Active #> 1251 2020 JAX K K 3 Active #> 1252 2020 JAX K <NA> 1 Active #> 1253 2020 JAX K PK 4 Active #> 1254 2020 JAX K PK 7 Active #> 1255 2020 JAX LB WLB 53 Active #> 1256 2020 JAX LB MLB 50 Active #> 1257 2020 JAX LB MLB 47 Active #> 1258 2020 JAX LB MLB 56 Active #> 1259 2020 JAX LB SLB 43 Active #> 1260 2020 JAX LB WLB 53 Active #> 1261 2020 JAX LB <NA> 55 Injured Reserve #> 1262 2020 JAX LB SLB 48 Active #> 1263 2020 JAX LB WLB 44 Active #> 1264 2020 JAX LB <NA> 57 Active #> 1265 2020 JAX LB SLB 59 Active #> 1266 2020 JAX LS <NA> 46 Active #> 1267 2020 JAX NT NT 52 Active #> 1268 2020 JAX NT RDE 98 Active #> 1269 2020 JAX P <NA> 6 Active #> 1270 2020 JAX P <NA> 9 Active #> 1271 2020 JAX QB QB 6 Active #> 1272 2020 JAX QB QB 2 Active #> 1273 2020 JAX QB QB 15 Active #> 1274 2020 JAX RB <NA> 22 Active #> 1275 2020 JAX RB RB 23 Active #> 1276 2020 JAX RB RB 34 Active #> 1277 2020 JAX RB <NA> 31 Active #> 1278 2020 JAX RB RB 30 Active #> 1279 2020 JAX RB <NA> 48 Active #> 1280 2020 JAX RB <NA> 33 Active #> 1281 2020 JAX SS SS 26 Active #> 1282 2020 JAX SS SS 20 Active #> 1283 2020 JAX SS SS 29 Active #> 1284 2020 JAX T <NA> 63 Active #> 1285 2020 JAX T RG 78 Active #> 1286 2020 JAX T LG 62 Active #> 1287 2020 JAX T LT 76 Active #> 1288 2020 JAX T RT 77 Active #> 1289 2020 JAX T LT 74 Active #> 1290 2020 JAX T <NA> 64 Active #> 1291 2020 JAX T RT 75 Active #> 1292 2020 JAX TE <NA> 85 Active #> 1293 2020 JAX TE LTE 80 Active #> 1294 2020 JAX TE TE 41 Active #> 1295 2020 JAX TE LTE 88 Active #> 1296 2020 JAX TE <NA> 86 Active #> 1297 2020 JAX TE <NA> 87 Active #> 1298 2020 JAX TE LTE 89 Active #> 1299 2020 JAX WR SWR 14 Active #> 1300 2020 JAX WR LWR 84 Active #> 1301 2020 JAX WR RWR 13 Active #> 1302 2020 JAX WR <NA> 15 Active #> 1303 2020 JAX WR <NA> 81 Active #> 1304 2020 JAX WR LWR 12 Active #> 1305 2020 JAX WR SWR 10 Active #> 1306 2020 JAX WR RWR 17 Active #> 1307 2020 JAX WR RWR 18 Active #> 1308 2020 JAX WR <NA> 85 Active #> 1309 2020 JAX WR RWR 19 Active #> 1310 2020 KC C C 67 Active #> 1311 2020 KC C C 61 Active #> 1312 2020 KC C C 62 Active #> 1313 2020 KC CB CB 20 Active #> 1314 2020 KC CB CB 30 Active #> 1315 2020 KC CB RCB 21 Active #> 1316 2020 KC CB LCB 29 Active #> 1317 2020 KC CB LCB 38 Active #> 1318 2020 KC CB CB 27 Active #> 1319 2020 KC CB SS 45 Active #> 1320 2020 KC CB LCB 35 Active #> 1321 2020 KC CB <NA> 30 Active #> 1322 2020 KC DB FS 22 Active #> 1323 2020 KC DB FS 49 Active #> 1324 2020 KC DB <NA> 40 Active #> 1325 2020 KC DE LDE 57 Active #> 1326 2020 KC DE LDE 90 Active #> 1327 2020 KC DE RDE 94 Active #> 1328 2020 KC DE RDE 55 Active #> 1329 2020 KC DE <NA> 52 Active #> 1330 2020 KC DE LDE 92 Active #> 1331 2020 KC DE RDE 51 Active #> 1332 2020 KC DE <NA> 95 Active #> 1333 2020 KC DT LDT 99 Active #> 1334 2020 KC DT <NA> 69 Active #> 1335 2020 KC DT LDT 98 Active #> 1336 2020 KC DT LDT 95 Active #> 1337 2020 KC G <NA> 68 Active #> 1338 2020 KC G LG 70 Active #> 1339 2020 KC G RG 61 Active #> 1340 2020 KC G <NA> 76 Voluntary Opt Out #> 1341 2020 KC G <NA> 60 Active #> 1342 2020 KC G LG 73 Active #> 1343 2020 KC K PK 7 Active #> 1344 2020 KC LB LB 44 Active #> 1345 2020 KC LB LB 50 Active #> 1346 2020 KC LB LB 54 Active #> 1347 2020 KC LB LB 53 Active #> 1348 2020 KC LB LB 56 Active #> 1349 2020 KC LB <NA> 43 Active #> 1350 2020 KC LB LB 47 Active #> 1351 2020 KC LB <NA> 59 Active #> 1352 2020 KC LS <NA> 41 Active #> 1353 2020 KC NT RDT 64 Active #> 1354 2020 KC NT RDT 91 Active #> 1355 2020 KC P <NA> 1 Active #> 1356 2020 KC P PK 5 Active #> 1357 2020 KC QB QB 15 Active #> 1358 2020 KC QB <NA> 8 Active #> 1359 2020 KC QB QB 4 Active #> 1360 2020 KC QB <NA> 8 Active #> 1361 2020 KC RB <NA> 26 Voluntary Opt Out #> 1362 2020 KC RB FB 42 Active #> 1363 2020 KC RB <NA> 34 Active #> 1364 2020 KC RB <NA> 34 Active #> 1365 2020 KC RB RB 31 Active #> 1366 2020 KC RB RB 26 Active #> 1367 2020 KC RB RB 25 Active #> 1368 2020 KC SS FS 23 Active #> 1369 2020 KC SS SS 32 Active #> 1370 2020 KC T RT 75 Active #> 1371 2020 KC T RG 77 Active #> 1372 2020 KC T LT 72 Active #> 1373 2020 KC T <NA> 67 Voluntary Opt Out #> 1374 2020 KC T LG 79 Active #> 1375 2020 KC T LT 74 Active #> 1376 2020 KC T RT 71 Active #> 1377 2020 KC T <NA> 72 Active #> 1378 2020 KC TE <NA> 82 Active #> 1379 2020 KC TE TE 83 Active #> 1380 2020 KC TE TE 87 Active #> 1381 2020 KC TE <NA> 84 Active #> 1382 2020 KC TE <NA> 89 Active #> 1383 2020 KC TE TE 48 Active #> 1384 2020 KC WR SWR 11 Active #> 1385 2020 KC WR <NA> 89 Active #> 1386 2020 KC WR <NA> 11 Active #> 1387 2020 KC WR RWR 14 Active #> 1388 2020 KC WR <NA> 11 Active #> 1389 2020 KC WR RWR 1 Active #> 1390 2020 KC WR <NA> 16 Active #> 1391 2020 KC WR RWR 17 Active #> 1392 2020 KC WR LWR 12 Active #> 1393 2020 KC WR LWR 13 Active #> 1394 2020 KC WR LWR 10 Active #> 1395 2020 KC WR <NA> 19 Active #> 1396 2020 LA C C 66 Active #> 1397 2020 LA C C 55 Active #> 1398 2020 LA CB LCB 22 Active #> 1399 2020 LA CB RCB 25 Active #> 1400 2020 LA CB <NA> 21 Active #> 1401 2020 LA CB RCB 20 Active #> 1402 2020 LA CB CB 31 Active #> 1403 2020 LA DB FS 46 Active #> 1404 2020 LA DB FS 43 Active #> 1405 2020 LA DB FS 33 Active #> 1406 2020 LA DB SS 32 Active #> 1407 2020 LA DB <NA> 36 Active #> 1408 2020 LA DB <NA> 37 Active #> 1409 2020 LA DE LDE 49 Active #> 1410 2020 LA DE LDE 97 Active #> 1411 2020 LA DE <NA> 62 Active #> 1412 2020 LA DE LDE 90 Active #> 1413 2020 LA DT <NA> 98 Active #> 1414 2020 LA DT DT 99 Active #> 1415 2020 LA DT DT 94 Active #> 1416 2020 LA DT <NA> 96 Active #> 1417 2020 LA DT <NA> 93 Active #> 1418 2020 LA G <NA> 64 Active #> 1419 2020 LA G <NA> 61 Active #> 1420 2020 LA G LT 70 Active #> 1421 2020 LA G LG 73 Active #> 1422 2020 LA G RG 63 Active #> 1423 2020 LA G RG 65 Active #> 1424 2020 LA K K 2 Injured Reserve #> 1425 2020 LA K <NA> 8 Active #> 1426 2020 LA K PK 1 Active #> 1427 2020 LA LB RILB 41 Active #> 1428 2020 LA LB <NA> 47 Active #> 1429 2020 LA LB RILB 51 Active #> 1430 2020 LA LB WILL 45 Active #> 1431 2020 LA LB SLB 54 Active #> 1432 2020 LA LB LILB 59 Active #> 1433 2020 LA LB OLB 53 Active #> 1434 2020 LA LB LILB 58 Active #> 1435 2020 LA LB WILL 50 Active #> 1436 2020 LA LB <NA> 56 Active #> 1437 2020 LA LB SLB 52 Active #> 1438 2020 LA LB <NA> 95 Active #> 1439 2020 LA LB RILB 48 Active #> 1440 2020 LA LS <NA> 49 Active #> 1441 2020 LA LS <NA> 40 Active #> 1442 2020 LA LS <NA> 44 Active #> 1443 2020 LA NT NT 91 Active #> 1444 2020 LA NT NT 69 Active #> 1445 2020 LA P <NA> 1 Active #> 1446 2020 LA P <NA> 6 Active #> 1447 2020 LA QB QB 9 Active #> 1448 2020 LA QB <NA> 6 Active #> 1449 2020 LA QB QB 19 Active #> 1450 2020 LA QB <NA> 5 Active #> 1451 2020 LA QB QB 16 Active #> 1452 2020 LA RB RB 23 Active #> 1453 2020 LA RB <NA> 30 Active #> 1454 2020 LA RB <NA> 35 Active #> 1455 2020 LA RB RB 27 Active #> 1456 2020 LA RB RB 34 Active #> 1457 2020 LA SS SS 24 Active #> 1458 2020 LA SS <NA> 39 Active #> 1459 2020 LA SS SS 26 Active #> 1460 2020 LA T RT 79 Active #> 1461 2020 LA T <NA> 67 Voluntary Opt Out #> 1462 2020 LA T LT 72 Active #> 1463 2020 LA T LT 77 Active #> 1464 2020 LA T RT 71 Active #> 1465 2020 LA TE TE 81 Active #> 1466 2020 LA TE <NA> 88 Active #> 1467 2020 LA TE TE 89 Active #> 1468 2020 LA TE <NA> 86 Active #> 1469 2020 LA TE TE 82 Active #> 1470 2020 LA WR SWR 17 Active #> 1471 2020 LA WR LWR 12 Active #> 1472 2020 LA WR SWR 83 Active #> 1473 2020 LA WR <NA> 15 Active #> 1474 2020 LA WR LWR 10 Active #> 1475 2020 LA WR RWR 11 Active #> 1476 2020 LA WR RWR 14 Active #> 1477 2020 LAC C C 53 Active #> 1478 2020 LAC C <NA> 64 Active #> 1479 2020 LAC CB RCB 37 Active #> 1480 2020 LAC CB LCB 28 Active #> 1481 2020 LAC CB LCB 43 Active #> 1482 2020 LAC CB RCB 26 Active #> 1483 2020 LAC CB NB 25 Active #> 1484 2020 LAC DB SS 24 Active #> 1485 2020 LAC DB SS 36 Active #> 1486 2020 LAC DB <NA> 38 Active #> 1487 2020 LAC DB <NA> 39 Active #> 1488 2020 LAC DB FS 33 Active #> 1489 2020 LAC DE DE/OB 90 Active #> 1490 2020 LAC DE LDE 97 Active #> 1491 2020 LAC DE DE/OB 54 Active #> 1492 2020 LAC DE LDE 98 Active #> 1493 2020 LAC DE RDE 92 Active #> 1494 2020 LAC DE DE/OB 42 Active #> 1495 2020 LAC DT RDE 99 Active #> 1496 2020 LAC DT <NA> 77 Active #> 1497 2020 LAC DT DT 93 Active #> 1498 2020 LAC DT DT 91 Active #> 1499 2020 LAC G LG 66 Active #> 1500 2020 LAC G RG 61 Active #> 1501 2020 LAC G <NA> 63 Active #> 1502 2020 LAC G RG 72 Active #> 1503 2020 LAC G RG 70 Active #> 1504 2020 LAC G LG 76 Active #> 1505 2020 LAC G <NA> 60 Active #> 1506 2020 LAC K PK 4 Active #> 1507 2020 LAC LB LB 49 Active #> 1508 2020 LAC LB LB 46 Active #> 1509 2020 LAC LB LB 44 Active #> 1510 2020 LAC LB LB 56 Active #> 1511 2020 LAC LB LB 59 Active #> 1512 2020 LAC LB LB 52 Active #> 1513 2020 LAC LB LB 50 Active #> 1514 2020 LAC LB LB 51 Active #> 1515 2020 LAC LB LB 58 Active #> 1516 2020 LAC LS <NA> 45 Active #> 1517 2020 LAC NT NT 95 Active #> 1518 2020 LAC NT NT 71 Active #> 1519 2020 LAC NT <NA> 96 Active #> 1520 2020 LAC P <NA> 4 Active #> 1521 2020 LAC P PK 1 Active #> 1522 2020 LAC QB QB 5 Active #> 1523 2020 LAC QB QB 2 Active #> 1524 2020 LAC QB QB 10 Active #> 1525 2020 LAC RB RB 27 Active #> 1526 2020 LAC RB RB 30 Active #> 1527 2020 LAC RB <NA> 34 Active #> 1528 2020 LAC RB <NA> 35 Active #> 1529 2020 LAC RB <NA> 31 Active #> 1530 2020 LAC RB FB 40 Active #> 1531 2020 LAC RB RB 22 Active #> 1532 2020 LAC SS FS 32 Active #> 1533 2020 LAC SS RCB 20 Active #> 1534 2020 LAC SS FS 23 Active #> 1535 2020 LAC T LT 69 Active #> 1536 2020 LAC T LT 79 Active #> 1537 2020 LAC T RT 74 Active #> 1538 2020 LAC T RT 75 Active #> 1539 2020 LAC T RT 73 Active #> 1540 2020 LAC TE TE 86 Active #> 1541 2020 LAC TE <NA> 89 Active #> 1542 2020 LAC TE TE 88 Active #> 1543 2020 LAC TE <NA> 48 Active #> 1544 2020 LAC TE TE 82 Active #> 1545 2020 LAC WR <NA> 6 Active #> 1546 2020 LAC WR RWR 83 Active #> 1547 2020 LAC WR <NA> 11 Active #> 1548 2020 LAC WR LWR 13 Active #> 1549 2020 LAC WR LWR 84 Active #> 1550 2020 LAC WR <NA> 80 Active #> 1551 2020 LAC WR RWR 12 Active #> 1552 2020 LAC WR LWR 15 Active #> 1553 2020 LAC WR RWR 81 Active #> 1554 2020 LV C <NA> 62 Active #> 1555 2020 LV C C 61 Active #> 1556 2020 LV C C 68 Active #> 1557 2020 LV CB RCB 22 Active #> 1558 2020 LV CB NB 21 Active #> 1559 2020 LV CB NB 29 Active #> 1560 2020 LV CB <NA> 39 Inactive #> 1561 2020 LV CB LCB 36 Active #> 1562 2020 LV CB RCB 20 Active #> 1563 2020 LV CB <NA> 34 Voluntary Opt Out #> 1564 2020 LV CB LCB 27 Active #> 1565 2020 LV CB LCB 31 Active #> 1566 2020 LV CB RCB 26 Active #> 1567 2020 LV DB <NA> 8 Active #> 1568 2020 LV DB <NA> 53 Active #> 1569 2020 LV DB FS 32 Active #> 1570 2020 LV DB FS 25 Active #> 1571 2020 LV DE RDE 94 Active #> 1572 2020 LV DE <NA> 95 Voluntary Opt Out #> 1573 2020 LV DE <NA> 95 Active #> 1574 2020 LV DE LDE 98 Active #> 1575 2020 LV DE RDE 92 Active #> 1576 2020 LV DE LDE 96 Active #> 1577 2020 LV DE LDE 99 Active #> 1578 2020 LV DE RDE 98 Active #> 1579 2020 LV DE <NA> 95 Active #> 1580 2020 LV DT <NA> 95 Active #> 1581 2020 LV DT NT 73 Active #> 1582 2020 LV DT NT 90 Active #> 1583 2020 LV DT DT 91 Active #> 1584 2020 LV DT DT 97 Active #> 1585 2020 LV FB FB 45 Active #> 1586 2020 LV G RG 71 Active #> 1587 2020 LV G RG 66 Active #> 1588 2020 LV G LG 64 Active #> 1589 2020 LV G RG 67 Active #> 1590 2020 LV G LG 76 Active #> 1591 2020 LV K <NA> 5 Active #> 1592 2020 LV K PK 2 Active #> 1593 2020 LV LB SLB 51 Active #> 1594 2020 LV LB SLB 50 Active #> 1595 2020 LV LB MLB 44 Active #> 1596 2020 LV LB WLB 55 Active #> 1597 2020 LV LB MLB 54 Active #> 1598 2020 LV LB WLB 42 Active #> 1599 2020 LV LB WLB 58 Active #> 1600 2020 LV LB <NA> 54 Voluntary Opt Out #> 1601 2020 LV LB <NA> 59 Active #> 1602 2020 LV LS <NA> 47 Active #> 1603 2020 LV NT <NA> 69 Active #> 1604 2020 LV P <NA> 6 Active #> 1605 2020 LV QB QB 4 Active #> 1606 2020 LV QB <NA> 1 Active #> 1607 2020 LV QB QB 3 Active #> 1608 2020 LV QB QB 8 Active #> 1609 2020 LV RB RB 23 Active #> 1610 2020 LV RB RB 28 Active #> 1611 2020 LV RB RB 30 Active #> 1612 2020 LV RB <NA> 35 Active #> 1613 2020 LV SS SS 38 Active #> 1614 2020 LV SS <NA> 33 Active #> 1615 2020 LV SS SS 24 Active #> 1616 2020 LV T LT 75 Active #> 1617 2020 LV T <NA> 63 Active #> 1618 2020 LV T RT 77 Active #> 1619 2020 LV T <NA> 72 Active #> 1620 2020 LV T LT 74 Active #> 1621 2020 LV T RT 70 Active #> 1622 2020 LV TE <NA> 49 Active #> 1623 2020 LV TE <NA> 84 Active #> 1624 2020 LV TE TE 83 Active #> 1625 2020 LV TE TE 82 Active #> 1626 2020 LV TE TE 85 Active #> 1627 2020 LV TE TE 87 Active #> 1628 2020 LV WR SWR 17 Active #> 1629 2020 LV WR RWR 14 Active #> 1630 2020 LV WR LWR 11 Active #> 1631 2020 LV WR <NA> 16 Active #> 1632 2020 LV WR SWR 16 Active #> 1633 2020 LV WR LWR 12 Active #> 1634 2020 LV WR <NA> 89 Active #> 1635 2020 LV WR SWR 13 Active #> 1636 2020 LV WR <NA> 88 Active #> 1637 2020 LV WR RWR 89 Active #> 1638 2020 LV WR RWR 15 Active #> 1639 2020 LV WR <NA> 18 Active #> 1640 2020 MIA C <NA> 63 Active #> 1641 2020 MIA C <NA> 61 Active #> 1642 2020 MIA C C 63 Active #> 1643 2020 MIA C C 67 Active #> 1644 2020 MIA CB LCB 33 Active #> 1645 2020 MIA CB LCB 24 Active #> 1646 2020 MIA CB <NA> 36 Active #> 1647 2020 MIA CB NB 23 Active #> 1648 2020 MIA CB LCB 40 Active #> 1649 2020 MIA CB RCB 25 Active #> 1650 2020 MIA DB NB 28 Active #> 1651 2020 MIA DB FS 29 Active #> 1652 2020 MIA DB <NA> 39 Active #> 1653 2020 MIA DB FS 35 Active #> 1654 2020 MIA DB <NA> 38 Active #> 1655 2020 MIA DB SS 36 Active #> 1656 2020 MIA DB <NA> 39 Active #> 1657 2020 MIA DE DE 92 Active #> 1658 2020 MIA DE <NA> 97 Active #> 1659 2020 MIA DE <NA> 64 Active #> 1660 2020 MIA DE LDE 94 Active #> 1661 2020 MIA DE DE 91 Active #> 1662 2020 MIA DE LDE 58 Active #> 1663 2020 MIA DE DE 98 Active #> 1664 2020 MIA DT <NA> 69 Active #> 1665 2020 MIA DT NT 95 Active #> 1666 2020 MIA DT DE 77 Inactive #> 1667 2020 MIA FB RB 27 Active #> 1668 2020 MIA G RG 78 Active #> 1669 2020 MIA G LG 75 Active #> 1670 2020 MIA G RG 66 Active #> 1671 2020 MIA K PK 7 Active #> 1672 2020 MIA LB WLB 43 Active #> 1673 2020 MIA LB WLB 90 Active #> 1674 2020 MIA LB LB 47 Active #> 1675 2020 MIA LB LB 51 Active #> 1676 2020 MIA LB LB 48 Active #> 1677 2020 MIA LB SLB 53 Active #> 1678 2020 MIA LB SLB 49 Active #> 1679 2020 MIA LB <NA> 59 Active #> 1680 2020 MIA LB LB 55 Active #> 1681 2020 MIA LB LB 44 Active #> 1682 2020 MIA LB <NA> 45 Active #> 1683 2020 MIA LS <NA> 0 Active #> 1684 2020 MIA LS <NA> 50 Active #> 1685 2020 MIA NT NT 98 Active #> 1686 2020 MIA NT NT 56 Active #> 1687 2020 MIA P <NA> 2 Active #> 1688 2020 MIA QB QB 5 Active #> 1689 2020 MIA QB QB 1 Active #> 1690 2020 MIA QB <NA> 17 Active #> 1691 2020 MIA QB QB 14 Active #> 1692 2020 MIA RB <NA> 32 Active #> 1693 2020 MIA RB RB 26 Active #> 1694 2020 MIA RB RB 22 Active #> 1695 2020 MIA RB RB 37 Active #> 1696 2020 MIA RB <NA> 10 Active #> 1697 2020 MIA RB <NA> 31 Active #> 1698 2020 MIA RB <NA> 20 Active #> 1699 2020 MIA RB LWR 15 Active #> 1700 2020 MIA SS SS 42 Active #> 1701 2020 MIA SS SS 21 Active #> 1702 2020 MIA T RT 68 Active #> 1703 2020 MIA T <NA> 71 Active #> 1704 2020 MIA T LT 70 Active #> 1705 2020 MIA T LT 73 Active #> 1706 2020 MIA T RT 77 Active #> 1707 2020 MIA TE TE 81 Active #> 1708 2020 MIA TE TE 80 Active #> 1709 2020 MIA TE <NA> 85 Active #> 1710 2020 MIA TE TE 88 Active #> 1711 2020 MIA WR <NA> 15 Voluntary Opt Out #> 1712 2020 MIA WR <NA> 83 Active #> 1713 2020 MIA WR LWR 86 Active #> 1714 2020 MIA WR RWR 19 Active #> 1715 2020 MIA WR LWR 11 Active #> 1716 2020 MIA WR <NA> 17 Voluntary Opt Out #> 1717 2020 MIA WR <NA> 84 Active #> 1718 2020 MIA WR RWR 84 Active #> 1719 2020 MIA WR RWR 18 Active #> 1720 2020 MIN C C 56 Active #> 1721 2020 MIN C C 61 Active #> 1722 2020 MIN CB NB 27 Active #> 1723 2020 MIN CB LCB 21 Active #> 1724 2020 MIN CB LCB 38 Active #> 1725 2020 MIN CB RCB 20 Active #> 1726 2020 MIN CB <NA> 24 Active #> 1727 2020 MIN CB LCB 39 Active #> 1728 2020 MIN CB <NA> 36 Active #> 1729 2020 MIN CB RCB 26 Active #> 1730 2020 MIN CB <NA> 32 Active #> 1731 2020 MIN CB <NA> 36 Active #> 1732 2020 MIN CB RCB 29 Active #> 1733 2020 MIN DB FS 43 Active #> 1734 2020 MIN DB FS 41 Active #> 1735 2020 MIN DB <NA> 37 Active #> 1736 2020 MIN DB FS 46 Active #> 1737 2020 MIN DB SS 44 Active #> 1738 2020 MIN DB <NA> 35 Active #> 1739 2020 MIN DE LDE 95 Active #> 1740 2020 MIN DE RDE 99 Active #> 1741 2020 MIN DE RDE 90 Active #> 1742 2020 MIN DE <NA> 52 Active #> 1743 2020 MIN DE <NA> 66 Active #> 1744 2020 MIN DE LDE 79 Active #> 1745 2020 MIN DE RDE 98 Active #> 1746 2020 MIN DT DT 92 Active #> 1747 2020 MIN DT DT 51 Active #> 1748 2020 MIN DT DT 94 Active #> 1749 2020 MIN FB FB 30 Active #> 1750 2020 MIN G <NA> 61 Active #> 1751 2020 MIN G RG 73 Active #> 1752 2020 MIN G LG 78 Active #> 1753 2020 MIN G RG 72 Active #> 1754 2020 MIN G LG 68 Active #> 1755 2020 MIN K PK 5 Active #> 1756 2020 MIN K <NA> 1 Active #> 1757 2020 MIN K PK 1 Active #> 1758 2020 MIN LB WLB 59 Active #> 1759 2020 MIN LB MLB 47 Active #> 1760 2020 MIN LB MLB 54 Active #> 1761 2020 MIN LB SLB 48 Active #> 1762 2020 MIN LB <NA> 42 Active #> 1763 2020 MIN LB SLB 50 Active #> 1764 2020 MIN LB WLB 57 Active #> 1765 2020 MIN LB SLB 55 Active #> 1766 2020 MIN LB LDE 67 Active #> 1767 2020 MIN LB MLB 40 Active #> 1768 2020 MIN LB WLB 45 Active #> 1769 2020 MIN LS <NA> 58 Inactive #> 1770 2020 MIN LS <NA> 42 Active #> 1771 2020 MIN NT NT 93 Active #> 1772 2020 MIN NT <NA> 97 Voluntary Opt Out #> 1773 2020 MIN NT NT 96 Active #> 1774 2020 MIN P <NA> 2 Active #> 1775 2020 MIN QB <NA> 3 Active #> 1776 2020 MIN QB QB 8 Active #> 1777 2020 MIN QB <NA> 7 Active #> 1778 2020 MIN QB QB 4 Active #> 1779 2020 MIN RB RB 31 Active #> 1780 2020 MIN RB <NA> 34 Active #> 1781 2020 MIN RB <NA> 23 Active #> 1782 2020 MIN RB RB 33 Active #> 1783 2020 MIN RB RB 25 Active #> 1784 2020 MIN SS SS 22 Active #> 1785 2020 MIN T LT 69 Active #> 1786 2020 MIN T LT 71 Active #> 1787 2020 MIN T RT 75 Active #> 1788 2020 MIN T RT 74 Active #> 1789 2020 MIN T <NA> 64 Active #> 1790 2020 MIN TE <NA> 86 Active #> 1791 2020 MIN TE TE 82 Active #> 1792 2020 MIN TE TE 84 Active #> 1793 2020 MIN TE <NA> 87 Active #> 1794 2020 MIN TE TE 83 Active #> 1795 2020 MIN WR RWR 12 Active #> 1796 2020 MIN WR RWR 17 Active #> 1797 2020 MIN WR RWR 19 Active #> 1798 2020 MIN WR LWR 81 Active #> 1799 2020 MIN WR LWR 85 Active #> 1800 2020 MIN WR LWR 18 Active #> 1801 2020 NE C <NA> 60 Active #> 1802 2020 NE C <NA> 0 Injured Reserve #> 1803 2020 NE C C 66 Active #> 1804 2020 NE C C 60 Active #> 1805 2020 NE C C 68 Active #> 1806 2020 NE CB FS 29 Active #> 1807 2020 NE CB <NA> 39 Active #> 1808 2020 NE CB RCB 24 Active #> 1809 2020 NE CB RCB 45 Active #> 1810 2020 NE CB LCB 30 Active #> 1811 2020 NE CB LCB 31 Active #> 1812 2020 NE CB RCB 33 Active #> 1813 2020 NE CB LCB 27 Active #> 1814 2020 NE CB CB 38 Active #> 1815 2020 NE DB SS 35 Active #> 1816 2020 NE DB <NA> 41 Active #> 1817 2020 NE DB CB 32 Active #> 1818 2020 NE DE <NA> 92 Active #> 1819 2020 NE DE LOLB 55 Active #> 1820 2020 NE DE LDE 91 Active #> 1821 2020 NE DE ROLB 50 Active #> 1822 2020 NE DE RDE 96 Active #> 1823 2020 NE DT <NA> 97 Active #> 1824 2020 NE DT RDE 70 Active #> 1825 2020 NE DT DT 93 Active #> 1826 2020 NE DT <NA> 0 Active #> 1827 2020 NE DT DT 52 Active #> 1828 2020 NE DT NT 99 Active #> 1829 2020 NE FB <NA> 45 Voluntary Opt Out #> 1830 2020 NE FB RB 47 Active #> 1831 2020 NE G RG 69 Active #> 1832 2020 NE G <NA> 64 Active #> 1833 2020 NE G RT 71 Active #> 1834 2020 NE G <NA> 64 Active #> 1835 2020 NE G <NA> 68 Voluntary Opt Out #> 1836 2020 NE K PK 6 Active #> 1837 2020 NE K <NA> 5 Active #> 1838 2020 NE K <NA> 4 Active #> 1839 2020 NE LB LB 59 Active #> 1840 2020 NE LB LB 58 Active #> 1841 2020 NE LB LOLB 36 Active #> 1842 2020 NE LB LB 46 Active #> 1843 2020 NE LB ROLB 90 Active #> 1844 2020 NE LB LB 53 Active #> 1845 2020 NE LB LB 51 Active #> 1846 2020 NE LB <NA> 54 Voluntary Opt Out #> 1847 2020 NE LB LB 52 Active #> 1848 2020 NE LS <NA> 49 Active #> 1849 2020 NE NT DT 98 Active #> 1850 2020 NE NT NT 94 Active #> 1851 2020 NE P <NA> 7 Active #> 1852 2020 NE QB QB 1 Active #> 1853 2020 NE QB QB 2 Active #> 1854 2020 NE QB <NA> 7 Active #> 1855 2020 NE QB QB 4 Active #> 1856 2020 NE RB RB 28 Active #> 1857 2020 NE RB RB 26 Active #> 1858 2020 NE RB RB 34 Active #> 1859 2020 NE RB RB 37 Active #> 1860 2020 NE RB <NA> 38 Voluntary Opt Out #> 1861 2020 NE RB RB 42 Active #> 1862 2020 NE SS <NA> 23 Voluntary Opt Out #> 1863 2020 NE SS FS 22 Active #> 1864 2020 NE SS SS 21 Active #> 1865 2020 NE SS SS 25 Active #> 1866 2020 NE T LT 75 Active #> 1867 2020 NE T LT 77 Active #> 1868 2020 NE T RT 74 Active #> 1869 2020 NE T RT 72 Active #> 1870 2020 NE T LG 62 Active #> 1871 2020 NE T <NA> 61 Voluntary Opt Out #> 1872 2020 NE T <NA> 65 Inactive #> 1873 2020 NE T LT 76 Active #> 1874 2020 NE TE <NA> 88 Active #> 1875 2020 NE TE TE 44 Active #> 1876 2020 NE TE <NA> 83 Voluntary Opt Out #> 1877 2020 NE TE TE 86 Active #> 1878 2020 NE TE TE 85 Active #> 1879 2020 NE TE <NA> 82 Inactive #> 1880 2020 NE TE <NA> 43 Active #> 1881 2020 NE WR <NA> 19 Active #> 1882 2020 NE WR RWR 10 Active #> 1883 2020 NE WR LWR 16 Active #> 1884 2020 NE WR <NA> 19 Active #> 1885 2020 NE WR RWR 11 Active #> 1886 2020 NE WR <NA> 15 Active #> 1887 2020 NE WR <NA> 17 Active #> 1888 2020 NE WR RWR 80 Active #> 1889 2020 NE WR <NA> 17 Active #> 1890 2020 NE WR <NA> 14 Active #> 1891 2020 NE WR LWR 18 Active #> 1892 2020 NE WR <NA> 13 Voluntary Opt Out #> 1893 2020 NE WR LWR 15 Active #> 1894 2020 NO C C 64 Active #> 1895 2020 NO C C 78 Active #> 1896 2020 NO CB NB 21 Active #> 1897 2020 NO CB LCB 20 Active #> 1898 2020 NO CB <NA> 30 Active #> 1899 2020 NO CB RCB 23 Active #> 1900 2020 NO CB LCB 34 Active #> 1901 2020 NO CB LCB 25 Active #> 1902 2020 NO CB <NA> 29 Active #> 1903 2020 NO DB FS 26 Active #> 1904 2020 NO DB FS 43 Active #> 1905 2020 NO DB <NA> 38 Active #> 1906 2020 NO DB FS 36 Active #> 1907 2020 NO DE <NA> 57 Injured Reserve #> 1908 2020 NO DE <NA> 95 Active #> 1909 2020 NO DE RDE 91 Active #> 1910 2020 NO DE RDE 57 Active #> 1911 2020 NO DE LDE 94 Active #> 1912 2020 NO DE RDE 92 Active #> 1913 2020 NO DE LDE 96 Active #> 1914 2020 NO DE <NA> 91 Active #> 1915 2020 NO DT NT 97 Active #> 1916 2020 NO DT NT 99 Active #> 1917 2020 NO DT LDT 77 Active #> 1918 2020 NO DT <NA> 95 Active #> 1919 2020 NO DT <NA> 69 Active #> 1920 2020 NO DT LDT 93 Active #> 1921 2020 NO DT <NA> 79 Active #> 1922 2020 NO DT LDT 98 Active #> 1923 2020 NO DT NT 90 Active #> 1924 2020 NO FB FB 32 Active #> 1925 2020 NO G LG 75 Active #> 1926 2020 NO G LG 68 Active #> 1927 2020 NO G RG 51 Active #> 1928 2020 NO G LT 74 Active #> 1929 2020 NO G RG 62 Active #> 1930 2020 NO K <NA> 16 Active #> 1931 2020 NO K PK 3 Active #> 1932 2020 NO LB <NA> 42 Active #> 1933 2020 NO LB MLB 56 Active #> 1934 2020 NO LB SLB 53 Active #> 1935 2020 NO LB WLB 47 Active #> 1936 2020 NO LB MLB 52 Active #> 1937 2020 NO LB SLB 55 Active #> 1938 2020 NO LB WLB 58 Active #> 1939 2020 NO LB <NA> 50 Active #> 1940 2020 NO LS <NA> 92 Active #> 1941 2020 NO LS <NA> 49 Active #> 1942 2020 NO P <NA> 4 Active #> 1943 2020 NO P <NA> 6 Active #> 1944 2020 NO QB QB 2 Active #> 1945 2020 NO QB QB 9 Active #> 1946 2020 NO QB QB 7 Active #> 1947 2020 NO QB <NA> 15 Active #> 1948 2020 NO RB <NA> 88 Active #> 1949 2020 NO RB <NA> 37 Active #> 1950 2020 NO RB RB 41 Active #> 1951 2020 NO RB <NA> 0 Active #> 1952 2020 NO RB RB 28 Active #> 1953 2020 NO RB RB 24 Active #> 1954 2020 NO SS SS 48 Active #> 1955 2020 NO SS SS 27 Active #> 1956 2020 NO SS NB 22 Active #> 1957 2020 NO T RT 73 Active #> 1958 2020 NO T <NA> 66 Active #> 1959 2020 NO T RT 71 Active #> 1960 2020 NO T LT 72 Active #> 1961 2020 NO TE TE 82 Active #> 1962 2020 NO TE FB 89 Active #> 1963 2020 NO TE <NA> 84 Active #> 1964 2020 NO TE <NA> 85 Active #> 1965 2020 NO TE TE 87 Active #> 1966 2020 NO TE <NA> 45 Active #> 1967 2020 NO TE <NA> 86 Active #> 1968 2020 NO WR LWR 13 Active #> 1969 2020 NO WR <NA> 16 Active #> 1970 2020 NO WR RWR 10 Active #> 1971 2020 NO WR RWR 11 Active #> 1972 2020 NO WR <NA> 7 Active #> 1973 2020 NO WR <NA> 84 Active #> 1974 2020 NO WR <NA> 80 Active #> 1975 2020 NO WR RWR 14 Active #> 1976 2020 NO WR LWR 83 Active #> 1977 2020 NO WR RWR 17 Active #> 1978 2020 NO WR LWR 12 Active #> 1979 2020 NO WR <NA> 19 Active #> 1980 2020 NYG C C 65 Active #> 1981 2020 NYG C C 77 Active #> 1982 2020 NYG C C 78 Active #> 1983 2020 NYG CB RCB 27 Active #> 1984 2020 NYG CB <NA> 23 Voluntary Opt Out #> 1985 2020 NYG CB RCB 37 Active #> 1986 2020 NYG CB <NA> 28 Active #> 1987 2020 NYG CB CB 30 Active #> 1988 2020 NYG CB LCB 24 Active #> 1989 2020 NYG DB <NA> 38 Active #> 1990 2020 NYG DB SS 34 Active #> 1991 2020 NYG DB FS 20 Active #> 1992 2020 NYG DB RCB 45 Active #> 1993 2020 NYG DB FS 23 Active #> 1994 2020 NYG DB FS 29 Active #> 1995 2020 NYG DE <NA> 57 Active #> 1996 2020 NYG DE DE 90 Active #> 1997 2020 NYG DE DE 57 Active #> 1998 2020 NYG DE DE 97 Active #> 1999 2020 NYG DE OLB 91 Active #> 2000 2020 NYG DT DT 99 Active #> 2001 2020 NYG DT DT 95 Active #> 2002 2020 NYG DT <NA> 60 Active #> 2003 2020 NYG FB <NA> 39 Active #> 2004 2020 NYG G <NA> 62 Active #> 2005 2020 NYG G LG 71 Active #> 2006 2020 NYG G RG 70 Active #> 2007 2020 NYG G LG 66 Active #> 2008 2020 NYG G <NA> 79 Active #> 2009 2020 NYG K PK 5 Active #> 2010 2020 NYG LB RILB 55 Active #> 2011 2020 NYG LB SAM 47 Active #> 2012 2020 NYG LB WLB 59 Active #> 2013 2020 NYG LB <NA> 93 Active #> 2014 2020 NYG LB RILB 48 Active #> 2015 2020 NYG LB SAM 49 Active #> 2016 2020 NYG LB SAM 53 Active #> 2017 2020 NYG LB WLB 52 Active #> 2018 2020 NYG LB RILB 54 Active #> 2019 2020 NYG LB <NA> 48 Active #> 2020 2020 NYG LB WLB 35 Active #> 2021 2020 NYG LB OLB 51 Active #> 2022 2020 NYG LS <NA> 46 Active #> 2023 2020 NYG LS <NA> 58 Active #> 2024 2020 NYG NT NT 98 Active #> 2025 2020 NYG NT NT 94 Active #> 2026 2020 NYG P <NA> 2 Active #> 2027 2020 NYG P <NA> 9 Active #> 2028 2020 NYG QB QB 8 Active #> 2029 2020 NYG QB QB 12 Active #> 2030 2020 NYG QB <NA> 19 Active #> 2031 2020 NYG QB <NA> 17 Active #> 2032 2020 NYG QB <NA> 3 Injured Reserve #> 2033 2020 NYG RB <NA> 34 Active #> 2034 2020 NYG RB RB 33 Active #> 2035 2020 NYG RB RB 22 Active #> 2036 2020 NYG RB <NA> 44 Active #> 2037 2020 NYG RB <NA> 38 Active #> 2038 2020 NYG RB RB 36 Active #> 2039 2020 NYG RB RB 26 Active #> 2040 2020 NYG RB <NA> 41 Active #> 2041 2020 NYG SS SS 21 Active #> 2042 2020 NYG SS SS 43 Active #> 2043 2020 NYG SS <NA> 36 Active #> 2044 2020 NYG T RT 74 Active #> 2045 2020 NYG T LT 72 Active #> 2046 2020 NYG T <NA> 68 Inactive #> 2047 2020 NYG T LT 78 Active #> 2048 2020 NYG T RT 75 Active #> 2049 2020 NYG T RG 60 Active #> 2050 2020 NYG T <NA> 76 Voluntary Opt Out #> 2051 2020 NYG TE TE 88 Active #> 2052 2020 NYG TE TE 82 Active #> 2053 2020 NYG TE <NA> 47 Active #> 2054 2020 NYG TE TE 85 Active #> 2055 2020 NYG WR <NA> 18 Active #> 2056 2020 NYG WR SWR 15 Active #> 2057 2020 NYG WR <NA> 80 Active #> 2058 2020 NYG WR RWR 18 Active #> 2059 2020 NYG WR <NA> 81 Active #> 2060 2020 NYG WR LWR 86 Active #> 2061 2020 NYG WR <NA> 80 Active #> 2062 2020 NYG WR LWR 84 Active #> 2063 2020 NYG WR LWR 13 Active #> 2064 2020 NYG WR RWR 17 Active #> 2065 2020 NYG WR RWR 87 Active #> 2066 2020 NYG WR RWR 19 Active #> 2067 2020 NYJ C C 60 Active #> 2068 2020 NYJ C <NA> 63 Voluntary Opt Out #> 2069 2020 NYJ C C 61 Active #> 2070 2020 NYJ CB RCB 35 Active #> 2071 2020 NYJ CB CB 34 Active #> 2072 2020 NYJ CB LCB 27 Active #> 2073 2020 NYJ CB RCB 23 Active #> 2074 2020 NYJ CB LCB 31 Active #> 2075 2020 NYJ DB SS 41 Active #> 2076 2020 NYJ DB <NA> 33 Active #> 2077 2020 NYJ DB RCB 37 Active #> 2078 2020 NYJ DB FS 20 Active #> 2079 2020 NYJ DB LCB 40 Active #> 2080 2020 NYJ DB <NA> 38 Active #> 2081 2020 NYJ DB <NA> 39 Active #> 2082 2020 NYJ DB FS 29 Active #> 2083 2020 NYJ DB SS 26 Active #> 2084 2020 NYJ DE LDE 98 Active #> 2085 2020 NYJ DE LDE 91 Active #> 2086 2020 NYJ DE LOLB 92 Active #> 2087 2020 NYJ DE ROLB 47 Active #> 2088 2020 NYJ DE LDE 96 Active #> 2089 2020 NYJ DT DT 94 Active #> 2090 2020 NYJ DT DT 70 Active #> 2091 2020 NYJ DT DT 79 Active #> 2092 2020 NYJ DT RDE 97 Active #> 2093 2020 NYJ G C 68 Active #> 2094 2020 NYJ G LG 67 Active #> 2095 2020 NYJ G RG 62 Active #> 2096 2020 NYJ K <NA> 6 Active #> 2097 2020 NYJ K PK 3 Active #> 2098 2020 NYJ K <NA> 9 Active #> 2099 2020 NYJ LB RILB 52 Active #> 2100 2020 NYJ LB <NA> 55 Active #> 2101 2020 NYJ LB <NA> 40 Active #> 2102 2020 NYJ LB LILB 51 Active #> 2103 2020 NYJ LB <NA> 57 Voluntary Opt Out #> 2104 2020 NYJ LB LILB 46 Active #> 2105 2020 NYJ LB RILB 53 Active #> 2106 2020 NYJ LB LOLB 93 Active #> 2107 2020 NYJ LB <NA> 56 Active #> 2108 2020 NYJ LB ROLB 48 Active #> 2109 2020 NYJ LB ROLB 50 Active #> 2110 2020 NYJ LB LILB 44 Active #> 2111 2020 NYJ LB RILB 58 Active #> 2112 2020 NYJ LB LOLB 54 Active #> 2113 2020 NYJ LS <NA> 42 Active #> 2114 2020 NYJ NT RDE 95 Active #> 2115 2020 NYJ P <NA> 7 Active #> 2116 2020 NYJ QB <NA> 2 Active #> 2117 2020 NYJ QB QB 3 Active #> 2118 2020 NYJ QB <NA> 8 Active #> 2119 2020 NYJ QB QB 5 Active #> 2120 2020 NYJ QB QB 4 Active #> 2121 2020 NYJ QB QB 14 Active #> 2122 2020 NYJ RB RB 25 Active #> 2123 2020 NYJ RB <NA> 0 Active #> 2124 2020 NYJ RB RB 22 Active #> 2125 2020 NYJ RB RB 30 Inactive #> 2126 2020 NYJ RB RB 21 Active #> 2127 2020 NYJ RB <NA> 36 Active #> 2128 2020 NYJ SS FS 49 Active #> 2129 2020 NYJ SS SS 32 Active #> 2130 2020 NYJ SS CB 30 Active #> 2131 2020 NYJ T LG 72 Active #> 2132 2020 NYJ T LG 71 Active #> 2133 2020 NYJ T RG 69 Active #> 2134 2020 NYJ T RT 76 Active #> 2135 2020 NYJ T LT 77 Active #> 2136 2020 NYJ T RT 75 Active #> 2137 2020 NYJ TE <NA> 43 Active #> 2138 2020 NYJ TE TE 89 Active #> 2139 2020 NYJ TE <NA> 85 Active #> 2140 2020 NYJ TE <NA> 0 Active #> 2141 2020 NYJ TE TE 84 Active #> 2142 2020 NYJ WR SWR 82 Active #> 2143 2020 NYJ WR SWR 10 Active #> 2144 2020 NYJ WR <NA> 83 Active #> 2145 2020 NYJ WR <NA> 81 Active #> 2146 2020 NYJ WR LWR 18 Voluntary Opt Out #> 2147 2020 NYJ WR RWR 16 Active #> 2148 2020 NYJ WR RWR 11 Active #> 2149 2020 NYJ WR <NA> 18 Active #> 2150 2020 NYJ WR RWR 86 Active #> 2151 2020 NYJ WR RWR 15 Active #> 2152 2020 NYJ WR LWR 17 Active #> 2153 2020 NYJ WR TE 87 Active #> 2154 2020 NYJ WR LWR 19 Active #> 2155 2020 PHI C C 74 Active #> 2156 2020 PHI C C 62 Active #> 2157 2020 PHI C C 66 Active #> 2158 2020 PHI CB LCB 24 Active #> 2159 2020 PHI CB <NA> 41 Active #> 2160 2020 PHI CB NB 31 Active #> 2161 2020 PHI CB NB 34 Active #> 2162 2020 PHI CB RCB 39 Active #> 2163 2020 PHI CB RCB 29 Active #> 2164 2020 PHI DB <NA> 38 Active #> 2165 2020 PHI DB <NA> 39 Active #> 2166 2020 PHI DB FS 23 Active #> 2167 2020 PHI DB <NA> 38 Voluntary Opt Out #> 2168 2020 PHI DB LCB 48 Active #> 2169 2020 PHI DB FS 42 Active #> 2170 2020 PHI DB LCB 37 Active #> 2171 2020 PHI DB <NA> 46 Active #> 2172 2020 PHI DE LDE 94 Active #> 2173 2020 PHI DE LDE 55 Active #> 2174 2020 PHI DE LDE 75 Active #> 2175 2020 PHI DE <NA> 64 Active #> 2176 2020 PHI DE <NA> 95 Active #> 2177 2020 PHI DE RDE 96 Active #> 2178 2020 PHI DT LDT 61 Active #> 2179 2020 PHI DT LDT 91 Active #> 2180 2020 PHI DT RDT 93 Active #> 2181 2020 PHI DT LDT 98 Active #> 2182 2020 PHI DT RDT 97 Active #> 2183 2020 PHI DT RDT 76 Active #> 2184 2020 PHI DT <NA> 93 Active #> 2185 2020 PHI G LG 73 Active #> 2186 2020 PHI G RG 79 Active #> 2187 2020 PHI G RG 67 Active #> 2188 2020 PHI G <NA> 66 Active #> 2189 2020 PHI G LG 69 Active #> 2190 2020 PHI G RG 78 Active #> 2191 2020 PHI K PK 4 Active #> 2192 2020 PHI LB LOLB 58 Active #> 2193 2020 PHI LB MLB 57 Active #> 2194 2020 PHI LB MLB 54 Active #> 2195 2020 PHI LB LOLB 53 Injured Reserve #> 2196 2020 PHI LB ROLB 50 Active #> 2197 2020 PHI LB ROLB 53 Active #> 2198 2020 PHI LB LOLB 49 Injured Reserve #> 2199 2020 PHI LB ROLB 52 Active #> 2200 2020 PHI LB LOLB 47 Active #> 2201 2020 PHI LB MLB 59 Active #> 2202 2020 PHI LS <NA> 45 Active #> 2203 2020 PHI P <NA> 1 Active #> 2204 2020 PHI P <NA> 2 Active #> 2205 2020 PHI QB QB 7 Active #> 2206 2020 PHI QB QB 2 Active #> 2207 2020 PHI QB <NA> 11 Active #> 2208 2020 PHI RB <NA> 41 Active #> 2209 2020 PHI RB <NA> 28 Active #> 2210 2020 PHI RB <NA> 33 Active #> 2211 2020 PHI RB RB 26 Active #> 2212 2020 PHI RB <NA> 46 Inactive #> 2213 2020 PHI RB RB 35 Injured Reserve #> 2214 2020 PHI RB RB 30 Active #> 2215 2020 PHI RB <NA> 32 Active #> 2216 2020 PHI SS SS 22 Active #> 2217 2020 PHI SS SS 36 Active #> 2218 2020 PHI SS SS 21 Active #> 2219 2020 PHI SS <NA> 33 Active #> 2220 2020 PHI T RT 65 Active #> 2221 2020 PHI T RT 68 Active #> 2222 2020 PHI T LT 64 Active #> 2223 2020 PHI T RT 63 Active #> 2224 2020 PHI T LT 77 Active #> 2225 2020 PHI T LT 71 Active #> 2226 2020 PHI TE LTE 86 Active #> 2227 2020 PHI TE <NA> 81 Active #> 2228 2020 PHI TE <NA> 6 Active #> 2229 2020 PHI TE <NA> 81 Active #> 2230 2020 PHI TE LTE 88 Active #> 2231 2020 PHI TE <NA> 83 Active #> 2232 2020 PHI TE <NA> 89 Active #> 2233 2020 PHI TE LTE 85 Active #> 2234 2020 PHI WR <NA> 13 Voluntary Opt Out #> 2235 2020 PHI WR SWR 84 Injured Reserve #> 2236 2020 PHI WR <NA> 16 Active #> 2237 2020 PHI WR LWR 13 Active #> 2238 2020 PHI WR RWR 18 Active #> 2239 2020 PHI WR RWR 89 Active #> 2240 2020 PHI WR LWR 80 Active #> 2241 2020 PHI WR RWR 19 Active #> 2242 2020 PHI WR LWR 17 Active #> 2243 2020 PHI WR SWR 10 Active #> 2244 2020 PHI WR RWR 82 Active #> 2245 2020 PIT C C 53 Active #> 2246 2020 PIT C C 60 Active #> 2247 2020 PIT CB RCB 31 Active #> 2248 2020 PIT CB <NA> 41 Active #> 2249 2020 PIT CB NB 20 Active #> 2250 2020 PIT CB LCB 23 Active #> 2251 2020 PIT CB RCB 28 Active #> 2252 2020 PIT CB LCB 42 Active #> 2253 2020 PIT CB <NA> 37 Active #> 2254 2020 PIT CB LCB 22 Active #> 2255 2020 PIT DB FS 25 Active #> 2256 2020 PIT DB FS 21 Active #> 2257 2020 PIT DB RILB 27 Active #> 2258 2020 PIT DE DE 95 Active #> 2259 2020 PIT DE DT 49 Active #> 2260 2020 PIT DE DE 99 Active #> 2261 2020 PIT DE NT 96 Active #> 2262 2020 PIT DE NT 94 Active #> 2263 2020 PIT DE DE 91 Active #> 2264 2020 PIT DE <NA> 67 Active #> 2265 2020 PIT DT DT 97 Active #> 2266 2020 PIT DT DT 73 Active #> 2267 2020 PIT DT <NA> 67 Active #> 2268 2020 PIT FB FB 44 Active #> 2269 2020 PIT G RG 69 Active #> 2270 2020 PIT G LG 64 Active #> 2271 2020 PIT G RG 66 Active #> 2272 2020 PIT K PK 9 Active #> 2273 2020 PIT LB LOLB 92 Active #> 2274 2020 PIT LB LILB 41 Active #> 2275 2020 PIT LB RILB 98 Active #> 2276 2020 PIT LB ROLB 48 Active #> 2277 2020 PIT LB <NA> 40 Active #> 2278 2020 PIT LB LILB 55 Active #> 2279 2020 PIT LB LOLB 90 Active #> 2280 2020 PIT LB LILB 51 Active #> 2281 2020 PIT LB <NA> 46 Active #> 2282 2020 PIT LB ROLB 56 Active #> 2283 2020 PIT LB RILB 54 Active #> 2284 2020 PIT LB <NA> 45 Active #> 2285 2020 PIT LS <NA> 57 Active #> 2286 2020 PIT P <NA> 4 Active #> 2287 2020 PIT P <NA> 8 Active #> 2288 2020 PIT QB QB 5 Active #> 2289 2020 PIT QB QB 7 Active #> 2290 2020 PIT QB QB 2 Active #> 2291 2020 PIT QB <NA> 7 Active #> 2292 2020 PIT RB FB 38 Active #> 2293 2020 PIT RB RB 26 Active #> 2294 2020 PIT RB <NA> 24 Active #> 2295 2020 PIT RB <NA> 33 Active #> 2296 2020 PIT RB <NA> 29 Active #> 2297 2020 PIT RB RB 30 Active #> 2298 2020 PIT SS SS 37 Active #> 2299 2020 PIT SS SS 34 Active #> 2300 2020 PIT SS <NA> 21 Active #> 2301 2020 PIT SS FS 39 Active #> 2302 2020 PIT T <NA> 76 Active #> 2303 2020 PIT T RT 72 Active #> 2304 2020 PIT T <NA> 68 Active #> 2305 2020 PIT T LT 65 Active #> 2306 2020 PIT T <NA> 74 Active #> 2307 2020 PIT T LG 71 Active #> 2308 2020 PIT T RT 76 Active #> 2309 2020 PIT T LT 78 Active #> 2310 2020 PIT T <NA> 79 Active #> 2311 2020 PIT T <NA> 77 Active #> 2312 2020 PIT TE TE 85 Active #> 2313 2020 PIT TE TE 89 Injured Reserve #> 2314 2020 PIT TE <NA> 87 Active #> 2315 2020 PIT TE TE 81 Active #> 2316 2020 PIT TE TE 46 Active #> 2317 2020 PIT TE <NA> 85 Active #> 2318 2020 PIT WR LWR 11 Active #> 2319 2020 PIT WR RWR 18 Active #> 2320 2020 PIT WR <NA> 83 Active #> 2321 2020 PIT WR RWR 13 Active #> 2322 2020 PIT WR <NA> 0 Active #> 2323 2020 PIT WR LWR 14 Active #> 2324 2020 PIT WR LWR 19 Active #> 2325 2020 SEA C C 77 Active #> 2326 2020 SEA C <NA> 64 Active #> 2327 2020 SEA CB LCB 39 Active #> 2328 2020 SEA CB SS 35 Active #> 2329 2020 SEA CB LCB 26 Active #> 2330 2020 SEA CB RCB 22 Active #> 2331 2020 SEA CB <NA> 28 Active #> 2332 2020 SEA CB LCB 23 Active #> 2333 2020 SEA CB RCB 21 Active #> 2334 2020 SEA DB FS 27 Active #> 2335 2020 SEA DB <NA> 38 Active #> 2336 2020 SEA DB FS 37 Active #> 2337 2020 SEA DB FS 28 Active #> 2338 2020 SEA DB <NA> 29 Active #> 2339 2020 SEA DB <NA> 36 Active #> 2340 2020 SEA DB RCB 34 Active #> 2341 2020 SEA DE LEO 58 Active #> 2342 2020 SEA DE LEO 98 Active #> 2343 2020 SEA DE DT 93 Active #> 2344 2020 SEA DE DT 93 Active #> 2345 2020 SEA DE NT 94 Active #> 2346 2020 SEA DE LDE 43 Active #> 2347 2020 SEA DE LDE 91 Active #> 2348 2020 SEA DE LDE 95 Active #> 2349 2020 SEA DE <NA> 99 Active #> 2350 2020 SEA DT <NA> 65 Active #> 2351 2020 SEA DT DT 90 Active #> 2352 2020 SEA FB FB 44 Active #> 2353 2020 SEA G LG 70 Active #> 2354 2020 SEA G RG 68 Active #> 2355 2020 SEA G <NA> 65 Voluntary Opt Out #> 2356 2020 SEA G LG 60 Active #> 2357 2020 SEA G C 61 Active #> 2358 2020 SEA G LG 66 Active #> 2359 2020 SEA G <NA> 78 Active #> 2360 2020 SEA K PK 5 Active #> 2361 2020 SEA LB ROLB 55 Active #> 2362 2020 SEA LB SLB 56 Active #> 2363 2020 SEA LB MLB 57 Active #> 2364 2020 SEA LB SLB 49 Active #> 2365 2020 SEA LB <NA> 52 Active #> 2366 2020 SEA LB SLB 59 Active #> 2367 2020 SEA LB MLB 54 Active #> 2368 2020 SEA LB <NA> 47 Active #> 2369 2020 SEA LB LEO 51 Active #> 2370 2020 SEA LB ROLB 50 Active #> 2371 2020 SEA LS <NA> 69 Active #> 2372 2020 SEA NT NT 92 Active #> 2373 2020 SEA NT NT 97 Active #> 2374 2020 SEA P <NA> 4 Active #> 2375 2020 SEA QB <NA> 3 Active #> 2376 2020 SEA QB QB 7 Active #> 2377 2020 SEA QB <NA> 2 Active #> 2378 2020 SEA QB QB 3 Active #> 2379 2020 SEA RB <NA> 40 Inactive #> 2380 2020 SEA RB RB 20 Active #> 2381 2020 SEA RB <NA> 41 Active #> 2382 2020 SEA RB RB 30 Active #> 2383 2020 SEA RB <NA> 39 Active #> 2384 2020 SEA RB <NA> 31 Active #> 2385 2020 SEA RB <NA> 25 Active #> 2386 2020 SEA RB RB 32 Active #> 2387 2020 SEA SS SS 33 Active #> 2388 2020 SEA SS SS 42 Active #> 2389 2020 SEA T LT 73 Active #> 2390 2020 SEA T LT 75 Active #> 2391 2020 SEA T RT 74 Active #> 2392 2020 SEA T LT 76 Active #> 2393 2020 SEA T <NA> 79 Active #> 2394 2020 SEA T RT 72 Active #> 2395 2020 SEA T <NA> 67 Active #> 2396 2020 SEA TE TE 88 Active #> 2397 2020 SEA TE <NA> 85 Active #> 2398 2020 SEA TE <NA> 82 Active #> 2399 2020 SEA TE TE 84 Active #> 2400 2020 SEA TE TE 89 Active #> 2401 2020 SEA TE TE 86 Active #> 2402 2020 SEA WR RWR 16 Active #> 2403 2020 SEA WR <NA> 15 Active #> 2404 2020 SEA WR <NA> 17 Active #> 2405 2020 SEA WR LWR 18 Active #> 2406 2020 SEA WR <NA> 19 Active #> 2407 2020 SEA WR <NA> 84 Active #> 2408 2020 SEA WR <NA> 13 Active #> 2409 2020 SEA WR WR 83 Active #> 2410 2020 SEA WR LWR 14 Active #> 2411 2020 SEA WR RWR 11 Active #> 2412 2020 SEA WR <NA> 81 Active #> 2413 2020 SEA WR <NA> 10 Inactive #> 2414 2020 SF C <NA> 62 Active #> 2415 2020 SF C C 63 Active #> 2416 2020 SF C C 58 Active #> 2417 2020 SF C <NA> 64 Voluntary Opt Out #> 2418 2020 SF C C 61 Injured Reserve #> 2419 2020 SF C C 50 Active #> 2420 2020 SF CB <NA> 35 Active #> 2421 2020 SF CB RCB 25 Active #> 2422 2020 SF CB RCB 23 Active #> 2423 2020 SF CB LCB 41 Active #> 2424 2020 SF CB RCB 40 Active #> 2425 2020 SF CB LCB 47 Active #> 2426 2020 SF CB <NA> 24 Active #> 2427 2020 SF CB LCB 22 Active #> 2428 2020 SF CB <NA> 36 Active #> 2429 2020 SF CB NB 27 Active #> 2430 2020 SF DB <NA> 43 Active #> 2431 2020 SF DB <NA> 22 Active #> 2432 2020 SF DB FS 33 Active #> 2433 2020 SF DB <NA> 47 Active #> 2434 2020 SF DB FS 20 Active #> 2435 2020 SF DE <NA> 78 Active #> 2436 2020 SF DE LDE 91 Active #> 2437 2020 SF DE RDE 95 Active #> 2438 2020 SF DE LDT 94 Active #> 2439 2020 SF DE <NA> 94 Active #> 2440 2020 SF DE <NA> 64 Active #> 2441 2020 SF DE RDE 97 Active #> 2442 2020 SF DE <NA> 96 Active #> 2443 2020 SF DE LDE 98 Active #> 2444 2020 SF DE RDE 92 Active #> 2445 2020 SF DE LDE 55 Active #> 2446 2020 SF DE <NA> 74 Active #> 2447 2020 SF DT <NA> 77 Active #> 2448 2020 SF DT RDT 99 Active #> 2449 2020 SF DT LDT 65 Active #> 2450 2020 SF DT RDT 93 Active #> 2451 2020 SF DT LDT 90 Active #> 2452 2020 SF FB FB 44 Active #> 2453 2020 SF G LG 75 Active #> 2454 2020 SF G LG 62 Active #> 2455 2020 SF G RG 60 Active #> 2456 2020 SF G <NA> 76 Active #> 2457 2020 SF K PK 9 Active #> 2458 2020 SF LB SAM 53 Active #> 2459 2020 SF LB <NA> 54 Active #> 2460 2020 SF LB MIKE 54 Active #> 2461 2020 SF LB <NA> 47 Active #> 2462 2020 SF LB WILL 59 Active #> 2463 2020 SF LB MIKE 51 Active #> 2464 2020 SF LB SAM 57 Active #> 2465 2020 SF LS <NA> 46 Active #> 2466 2020 SF LS <NA> 86 Active #> 2467 2020 SF P <NA> 9 Active #> 2468 2020 SF P <NA> 6 Active #> 2469 2020 SF QB <NA> 8 Active #> 2470 2020 SF QB QB 4 Active #> 2471 2020 SF QB QB 10 Active #> 2472 2020 SF QB <NA> 2 Active #> 2473 2020 SF QB QB 3 Active #> 2474 2020 SF RB <NA> 40 Active #> 2475 2020 SF RB RB 28 Active #> 2476 2020 SF RB <NA> 34 Active #> 2477 2020 SF RB RB 30 Active #> 2478 2020 SF RB <NA> 31 Active #> 2479 2020 SF RB <NA> 48 Active #> 2480 2020 SF RB RB 26 Active #> 2481 2020 SF RB <NA> 38 Active #> 2482 2020 SF SS SS 36 Active #> 2483 2020 SF SS WILL 45 Active #> 2484 2020 SF SS <NA> 38 Active #> 2485 2020 SF SS SS 29 Active #> 2486 2020 SF SS SS 43 Active #> 2487 2020 SF SS <NA> 32 Active #> 2488 2020 SF T LT 71 Active #> 2489 2020 SF T <NA> 65 Active #> 2490 2020 SF T RG 67 Active #> 2491 2020 SF T RT 69 Active #> 2492 2020 SF T <NA> 78 Voluntary Opt Out #> 2493 2020 SF T <NA> 64 Active #> 2494 2020 SF T LG 66 Active #> 2495 2020 SF T RT 68 Active #> 2496 2020 SF T <NA> 61 Active #> 2497 2020 SF TE <NA> 88 Active #> 2498 2020 SF TE RTE 82 Active #> 2499 2020 SF TE <NA> 83 Active #> 2500 2020 SF TE RTE 81 Active #> 2501 2020 SF TE LTE 89 Active #> 2502 2020 SF TE LTE 85 Active #> 2503 2020 SF WR RWR 15 Active #> 2504 2020 SF WR <NA> 14 Active #> 2505 2020 SF WR <NA> 1 Inactive #> 2506 2020 SF WR RWR 84 Active #> 2507 2020 SF WR <NA> 18 Active #> 2508 2020 SF WR RWR 19 Active #> 2509 2020 SF WR <NA> 17 Active #> 2510 2020 SF WR <NA> 17 Active #> 2511 2020 SF WR <NA> 17 Voluntary Opt Out #> 2512 2020 SF WR <NA> 14 Active #> 2513 2020 SF WR <NA> 87 Active #> 2514 2020 SF WR LWR 13 Active #> 2515 2020 SF WR LWR 86 Active #> 2516 2020 SF WR LWR 11 Active #> 2517 2020 SF WR <NA> 2 Active #> 2518 2020 TB C C 62 Active #> 2519 2020 TB C C 66 Active #> 2520 2020 TB CB RCB 23 Active #> 2521 2020 TB CB <NA> 29 Active #> 2522 2020 TB CB <NA> 37 Active #> 2523 2020 TB CB RCB 35 Active #> 2524 2020 TB CB CB 24 Active #> 2525 2020 TB CB NB 43 Active #> 2526 2020 TB DB SS 34 Active #> 2527 2020 TB DB <NA> 36 Active #> 2528 2020 TB DB <NA> 32 Active #> 2529 2020 TB DB SS 31 Active #> 2530 2020 TB DE RDE 79 Active #> 2531 2020 TB DE <NA> 91 Active #> 2532 2020 TB DE LDE 93 Active #> 2533 2020 TB DE LOLB 90 Active #> 2534 2020 TB DE <NA> 57 Active #> 2535 2020 TB DE RDE 92 Active #> 2536 2020 TB DT LDE 95 Active #> 2537 2020 TB DT RDE 73 Active #> 2538 2020 TB DT LDE 94 Active #> 2539 2020 TB DT NT 56 Active #> 2540 2020 TB FS <NA> 38 Active #> 2541 2020 TB G LG 75 Active #> 2542 2020 TB G RG 64 Active #> 2543 2020 TB G LG 74 Active #> 2544 2020 TB G RG 60 Active #> 2545 2020 TB G <NA> 70 Active #> 2546 2020 TB G <NA> 62 Active #> 2547 2020 TB G RG 65 Active #> 2548 2020 TB K PK 3 Active #> 2549 2020 TB LB RILB 48 Active #> 2550 2020 TB LB LILB 51 Active #> 2551 2020 TB LB RILB 41 Active #> 2552 2020 TB LB LOLB 98 Active #> 2553 2020 TB LB ROLB 58 Active #> 2554 2020 TB LB ROLB 49 Active #> 2555 2020 TB LB LILB 45 Active #> 2556 2020 TB LB RILB 54 Active #> 2557 2020 TB LS <NA> 89 Active #> 2558 2020 TB LS <NA> 97 Active #> 2559 2020 TB NT NT 96 Active #> 2560 2020 TB NT NT 50 Active #> 2561 2020 TB P <NA> 8 Active #> 2562 2020 TB P <NA> 1 Active #> 2563 2020 TB P <NA> 4 Active #> 2564 2020 TB QB QB 4 Active #> 2565 2020 TB QB <NA> 6 Active #> 2566 2020 TB QB QB 11 Active #> 2567 2020 TB QB QB 12 Active #> 2568 2020 TB RB RB 27 Active #> 2569 2020 TB RB RB 25 Active #> 2570 2020 TB RB RB 30 Active #> 2571 2020 TB RB <NA> 33 Active #> 2572 2020 TB RB RB 28 Active #> 2573 2020 TB RB RB 44 Active #> 2574 2020 TB RB <NA> 24 Active #> 2575 2020 TB RB RB 22 Active #> 2576 2020 TB SS FS 33 Active #> 2577 2020 TB SS FS 26 Active #> 2578 2020 TB SS <NA> 21 Active #> 2579 2020 TB T LT 76 Active #> 2580 2020 TB T LT 72 Active #> 2581 2020 TB T <NA> 62 Voluntary Opt Out #> 2582 2020 TB T RT 78 Active #> 2583 2020 TB T RT 73 Active #> 2584 2020 TB TE RTE 80 Active #> 2585 2020 TB TE RTE 88 Active #> 2586 2020 TB TE LTE 82 Active #> 2587 2020 TB TE LTE 84 Active #> 2588 2020 TB TE RTE 87 Active #> 2589 2020 TB TE LTE 86 Active #> 2590 2020 TB WR <NA> 85 Active #> 2591 2020 TB WR <NA> 15 Active #> 2592 2020 TB WR RWR 14 Active #> 2593 2020 TB WR <NA> 89 Active #> 2594 2020 TB WR RWR 81 Active #> 2595 2020 TB WR CB 5 Active #> 2596 2020 TB WR <NA> 19 Active #> 2597 2020 TB WR LWR 18 Active #> 2598 2020 TB WR LWR 13 Active #> 2599 2020 TB WR LWR 10 Active #> 2600 2020 TB WR RWR 17 Active #> 2601 2020 TEN C C 60 Active #> 2602 2020 TEN C <NA> 52 Active #> 2603 2020 TEN C C 62 Active #> 2604 2020 TEN CB SS 46 Active #> 2605 2020 TEN CB LCB 33 Active #> 2606 2020 TEN CB <NA> 39 Active #> 2607 2020 TEN CB RCB 21 Active #> 2608 2020 TEN CB RCB 26 Active #> 2609 2020 TEN CB RCB 35 Active #> 2610 2020 TEN CB <NA> 30 Active #> 2611 2020 TEN CB LCB 23 Active #> 2612 2020 TEN CB <NA> 36 Active #> 2613 2020 TEN CB LCB 25 Active #> 2614 2020 TEN DB FS 37 Active #> 2615 2020 TEN DB <NA> 46 Active #> 2616 2020 TEN DB FS 31 Active #> 2617 2020 TEN DE ROLB 99 Active #> 2618 2020 TEN DE LOLB 57 Active #> 2619 2020 TEN DE <NA> 95 Active #> 2620 2020 TEN DT DT 98 Active #> 2621 2020 TEN DT DT 93 Active #> 2622 2020 TEN DT <NA> 94 Active #> 2623 2020 TEN DT ROLB 77 Active #> 2624 2020 TEN DT DE 94 Active #> 2625 2020 TEN DT DE 91 Active #> 2626 2020 TEN DT NT 92 Active #> 2627 2020 TEN FB RB 41 Active #> 2628 2020 TEN G LG 76 Active #> 2629 2020 TEN G LG 72 Active #> 2630 2020 TEN G <NA> 64 Active #> 2631 2020 TEN G RG 75 Active #> 2632 2020 TEN K <NA> 4 Active #> 2633 2020 TEN K <NA> 8 Active #> 2634 2020 TEN K K 2 Active #> 2635 2020 TEN K PK 3 Active #> 2636 2020 TEN LB LOLB 50 Active #> 2637 2020 TEN LB LILB 49 Active #> 2638 2020 TEN LB RILB 53 Active #> 2639 2020 TEN LB LOLB 58 Active #> 2640 2020 TEN LB ROLB 56 Active #> 2641 2020 TEN LB <NA> 49 Active #> 2642 2020 TEN LB <NA> 59 Active #> 2643 2020 TEN LB LILB 54 Active #> 2644 2020 TEN LB <NA> 42 Active #> 2645 2020 TEN LB RILB 55 Active #> 2646 2020 TEN LB RILB 51 Active #> 2647 2020 TEN LS <NA> 44 Active #> 2648 2020 TEN LS <NA> 48 Active #> 2649 2020 TEN LS <NA> 47 Active #> 2650 2020 TEN NT NT 90 Active #> 2651 2020 TEN NT <NA> 72 Active #> 2652 2020 TEN P <NA> 6 Active #> 2653 2020 TEN P <NA> 12 Active #> 2654 2020 TEN QB QB 17 Active #> 2655 2020 TEN QB <NA> 14 Active #> 2656 2020 TEN QB QB 5 Active #> 2657 2020 TEN RB <NA> 32 Active #> 2658 2020 TEN RB RB 28 Active #> 2659 2020 TEN RB RB 22 Active #> 2660 2020 TEN RB <NA> 45 Active #> 2661 2020 TEN RB <NA> 20 Active #> 2662 2020 TEN SS SS 24 Active #> 2663 2020 TEN SS SS 29 Active #> 2664 2020 TEN T RT 79 Active #> 2665 2020 TEN T LT 77 Active #> 2666 2020 TEN T RT 78 Active #> 2667 2020 TEN T <NA> 66 Active #> 2668 2020 TEN T RT 71 Active #> 2669 2020 TEN T <NA> 79 Active #> 2670 2020 TEN T LT 70 Active #> 2671 2020 TEN T <NA> 61 Voluntary Opt Out #> 2672 2020 TEN TE TE 85 Active #> 2673 2020 TEN TE <NA> 83 Active #> 2674 2020 TEN TE <NA> 87 Active #> 2675 2020 TEN TE TE 86 Active #> 2676 2020 TEN TE <NA> 89 Active #> 2677 2020 TEN TE TE 81 Active #> 2678 2020 TEN TE <NA> 89 Active #> 2679 2020 TEN WR LWR 84 Active #> 2680 2020 TEN WR RWR 13 Active #> 2681 2020 TEN WR <NA> 12 Active #> 2682 2020 TEN WR <NA> 80 Active #> 2683 2020 TEN WR RWR 11 Active #> 2684 2020 TEN WR <NA> 83 Active #> 2685 2020 TEN WR LWR 15 Active #> 2686 2020 TEN WR SWR 10 Active #> 2687 2020 TEN WR SWR 14 Active #> 2688 2020 TEN WR <NA> 16 Active #> 2689 2020 WAS C C 73 Active #> 2690 2020 WAS C C 60 Active #> 2691 2020 WAS CB RCB 23 Active #> 2692 2020 WAS CB CB 25 Active #> 2693 2020 WAS CB <NA> 34 Active #> 2694 2020 WAS CB NB 37 Active #> 2695 2020 WAS CB <NA> 38 Active #> 2696 2020 WAS CB <NA> 20 Active #> 2697 2020 WAS CB RCB 32 Active #> 2698 2020 WAS CB NB 20 Active #> 2699 2020 WAS CB CB 29 Active #> 2700 2020 WAS DB SS 31 Active #> 2701 2020 WAS DB <NA> 39 Active #> 2702 2020 WAS DB SS 39 Inactive #> 2703 2020 WAS DB FS 30 Active #> 2704 2020 WAS DB <NA> 46 Active #> 2705 2020 WAS DE RDE 52 Active #> 2706 2020 WAS DE RDE 96 Active #> 2707 2020 WAS DE RDE 90 Active #> 2708 2020 WAS DE LOLB 95 Active #> 2709 2020 WAS DE <NA> 64 Active #> 2710 2020 WAS DE <NA> 92 Active #> 2711 2020 WAS DE LDE 99 Active #> 2712 2020 WAS DE <NA> 96 Voluntary Opt Out #> 2713 2020 WAS DE LDE 91 Active #> 2714 2020 WAS DE <NA> 96 Active #> 2715 2020 WAS DT LDT 98 Active #> 2716 2020 WAS DT <NA> 64 Active #> 2717 2020 WAS DT LDT 94 Active #> 2718 2020 WAS DT RDT 97 Active #> 2719 2020 WAS DT <NA> 92 Active #> 2720 2020 WAS DT RDT 93 Active #> 2721 2020 WAS G <NA> 69 Inactive #> 2722 2020 WAS G LG 71 Active #> 2723 2020 WAS G RG 67 Active #> 2724 2020 WAS G RG 75 Active #> 2725 2020 WAS G RG 63 Injured Reserve #> 2726 2020 WAS K PK 3 Active #> 2727 2020 WAS K <NA> 8 Active #> 2728 2020 WAS LB MLB 53 Active #> 2729 2020 WAS LB <NA> 40 Voluntary Opt Out #> 2730 2020 WAS LB <NA> 50 Active #> 2731 2020 WAS LB MLB 56 Active #> 2732 2020 WAS LB ROLB 59 Active #> 2733 2020 WAS LB ROLB 47 Active #> 2734 2020 WAS LB <NA> 56 Active #> 2735 2020 WAS LB LOLB 55 Active #> 2736 2020 WAS LB MLB 48 Active #> 2737 2020 WAS LB LOLB 58 Active #> 2738 2020 WAS LB ROLB 54 Active #> 2739 2020 WAS LS <NA> 57 Active #> 2740 2020 WAS P <NA> 5 Active #> 2741 2020 WAS QB QB 4 Active #> 2742 2020 WAS QB QB 8 Active #> 2743 2020 WAS QB <NA> 6 Active #> 2744 2020 WAS QB QB 11 Active #> 2745 2020 WAS RB <NA> 35 Active #> 2746 2020 WAS RB <NA> 35 Active #> 2747 2020 WAS RB RB 41 Active #> 2748 2020 WAS RB <NA> 41 Active #> 2749 2020 WAS RB RB 34 Active #> 2750 2020 WAS RB RB 24 Active #> 2751 2020 WAS SS FS 26 Active #> 2752 2020 WAS SS CB 22 Active #> 2753 2020 WAS T <NA> 72 Active #> 2754 2020 WAS T LT 74 Active #> 2755 2020 WAS T LT 77 Active #> 2756 2020 WAS T <NA> 66 Active #> 2757 2020 WAS T LT 72 Active #> 2758 2020 WAS T RT 76 Active #> 2759 2020 WAS T RT 78 Active #> 2760 2020 WAS T <NA> 72 Active #> 2761 2020 WAS TE <NA> 85 Active #> 2762 2020 WAS TE <NA> 46 Active #> 2763 2020 WAS TE TE 87 Active #> 2764 2020 WAS TE TE 82 Active #> 2765 2020 WAS TE <NA> 82 Active #> 2766 2020 WAS TE TE 88 Active #> 2767 2020 WAS TE <NA> 46 Active #> 2768 2020 WAS WR RWR 10 Active #> 2769 2020 WAS WR <NA> 14 Active #> 2770 2020 WAS WR LWR 17 Active #> 2771 2020 WAS WR LWR 89 Active #> 2772 2020 WAS WR <NA> 12 Active #> 2773 2020 WAS WR RWR 13 Active #> 2774 2020 WAS WR <NA> 80 Active #> 2775 2020 WAS WR <NA> 80 Active #> 2776 2020 WAS WR RWR 19 Active #> 2777 2020 WAS WR LWR 83 Active #> 2778 2020 WAS WR <NA> 15 Active #> 2779 2020 WAS WR <NA> 84 Active #> 2780 2020 WAS WR <NA> 4 Active #> 2781 2020 <NA> C <NA> 59 Active #> 2782 2020 <NA> C <NA> 79 Inactive #> 2783 2020 <NA> C <NA> 55 Active #> 2784 2020 <NA> C <NA> 67 Inactive #> 2785 2020 <NA> C C 68 Active #> 2786 2020 <NA> C <NA> NA Inactive #> 2787 2020 <NA> C <NA> 60 Inactive #> 2788 2020 <NA> C <NA> 64 Inactive #> 2789 2020 <NA> C <NA> 60 Inactive #> 2790 2020 <NA> C C 63 Inactive #> 2791 2020 <NA> C <NA> 75 Active #> 2792 2020 <NA> C <NA> NA Inactive #> 2793 2020 <NA> C <NA> 74 Inactive #> 2794 2020 <NA> C C NA Inactive #> 2795 2020 <NA> C <NA> 60 Inactive #> 2796 2020 <NA> C <NA> NA Inactive #> 2797 2020 <NA> C <NA> 55 Inactive #> 2798 2020 <NA> C <NA> 61 Inactive #> 2799 2020 <NA> C <NA> 65 Active #> 2800 2020 <NA> C C 61 Active #> 2801 2020 <NA> C <NA> 49 Inactive #> 2802 2020 <NA> C <NA> 66 Active #> 2803 2020 <NA> C <NA> 68 Inactive #> 2804 2020 <NA> C <NA> 76 Inactive #> 2805 2020 <NA> C <NA> 77 Inactive #> 2806 2020 <NA> C <NA> 72 Inactive #> 2807 2020 <NA> C <NA> 69 Inactive #> 2808 2020 <NA> C C NA Inactive #> 2809 2020 <NA> C C NA Inactive #> 2810 2020 <NA> C <NA> 62 Inactive #> 2811 2020 <NA> C C NA Inactive #> 2812 2020 <NA> C <NA> 63 Active #> 2813 2020 <NA> C <NA> 59 Inactive #> 2814 2020 <NA> C C 76 Inactive #> 2815 2020 <NA> C <NA> 78 Inactive #> 2816 2020 <NA> C <NA> 63 Inactive #> 2817 2020 <NA> C LG 72 Active #> 2818 2020 <NA> C <NA> 60 Inactive #> 2819 2020 <NA> C <NA> 60 Inactive #> 2820 2020 <NA> C <NA> 60 Active #> 2821 2020 <NA> CB <NA> 39 Inactive #> 2822 2020 <NA> CB <NA> 31 Active #> 2823 2020 <NA> CB <NA> NA Inactive #> 2824 2020 <NA> CB <NA> 31 Active #> 2825 2020 <NA> CB <NA> 39 Inactive #> 2826 2020 <NA> CB <NA> NA Inactive #> 2827 2020 <NA> CB <NA> 29 Active #> 2828 2020 <NA> CB <NA> 38 Active #> 2829 2020 <NA> CB <NA> 31 Inactive #> 2830 2020 <NA> CB <NA> 35 Active #> 2831 2020 <NA> CB <NA> 37 Inactive #> 2832 2020 <NA> CB <NA> 38 Inactive #> 2833 2020 <NA> CB <NA> 37 Active #> 2834 2020 <NA> CB <NA> 29 Inactive #> 2835 2020 <NA> CB <NA> 22 Active #> 2836 2020 <NA> CB <NA> 47 Inactive #> 2837 2020 <NA> CB <NA> 38 Inactive #> 2838 2020 <NA> CB <NA> 35 Inactive #> 2839 2020 <NA> CB <NA> 45 Inactive #> 2840 2020 <NA> CB <NA> 23 Inactive #> 2841 2020 <NA> CB <NA> 43 Inactive #> 2842 2020 <NA> CB <NA> 39 Inactive #> 2843 2020 <NA> CB <NA> 44 Inactive #> 2844 2020 <NA> CB <NA> 39 Inactive #> 2845 2020 <NA> CB <NA> 32 Inactive #> 2846 2020 <NA> CB <NA> 35 Active #> 2847 2020 <NA> CB <NA> 34 Inactive #> 2848 2020 <NA> CB <NA> 36 Inactive #> 2849 2020 <NA> CB <NA> 40 Inactive #> 2850 2020 <NA> CB <NA> 24 Active #> 2851 2020 <NA> CB <NA> 31 Inactive #> 2852 2020 <NA> CB <NA> 27 Inactive #> 2853 2020 <NA> CB <NA> 39 Active #> 2854 2020 <NA> CB <NA> 44 Inactive #> 2855 2020 <NA> CB RCB 38 Inactive #> 2856 2020 <NA> CB <NA> 35 Inactive #> 2857 2020 <NA> CB <NA> 20 Inactive #> 2858 2020 <NA> CB <NA> 42 Inactive #> 2859 2020 <NA> CB <NA> NA Inactive #> 2860 2020 <NA> CB <NA> 41 Inactive #> 2861 2020 <NA> CB <NA> 36 Inactive #> 2862 2020 <NA> CB <NA> 38 Inactive #> 2863 2020 <NA> CB <NA> 29 Inactive #> 2864 2020 <NA> CB <NA> 33 Injured Reserve #> 2865 2020 <NA> CB <NA> 31 Active #> 2866 2020 <NA> CB <NA> 43 Inactive #> 2867 2020 <NA> CB <NA> 20 Active #> 2868 2020 <NA> CB <NA> 30 Inactive #> 2869 2020 <NA> CB <NA> NA Inactive #> 2870 2020 <NA> CB <NA> 7 Inactive #> 2871 2020 <NA> CB <NA> 41 Injured Reserve #> 2872 2020 <NA> CB <NA> 38 Inactive #> 2873 2020 <NA> CB <NA> 44 Inactive #> 2874 2020 <NA> CB <NA> 37 Inactive #> 2875 2020 <NA> CB <NA> 41 Inactive #> 2876 2020 <NA> CB <NA> NA Inactive #> 2877 2020 <NA> CB <NA> 23 Inactive #> 2878 2020 <NA> CB <NA> 28 Inactive #> 2879 2020 <NA> CB <NA> 43 Inactive #> 2880 2020 <NA> CB <NA> 34 Inactive #> 2881 2020 <NA> CB <NA> 22 Inactive #> 2882 2020 <NA> CB <NA> 46 Inactive #> 2883 2020 <NA> CB <NA> 30 Inactive #> 2884 2020 <NA> CB <NA> 35 Inactive #> 2885 2020 <NA> CB <NA> 39 Inactive #> 2886 2020 <NA> CB <NA> 41 Inactive #> 2887 2020 <NA> CB <NA> 66 Inactive #> 2888 2020 <NA> CB LCB NA Inactive #> 2889 2020 <NA> CB <NA> 30 Inactive #> 2890 2020 <NA> CB <NA> NA Inactive #> 2891 2020 <NA> CB <NA> NA Inactive #> 2892 2020 <NA> CB <NA> NA Inactive #> 2893 2020 <NA> CB <NA> NA Inactive #> 2894 2020 <NA> CB <NA> NA Inactive #> 2895 2020 <NA> CB <NA> 36 Inactive #> 2896 2020 <NA> CB <NA> NA Inactive #> 2897 2020 <NA> CB <NA> 29 Inactive #> 2898 2020 <NA> CB <NA> 9 Inactive #> 2899 2020 <NA> CB <NA> 36 Inactive #> 2900 2020 <NA> CB LCB 23 Active #> 2901 2020 <NA> CB <NA> 39 Active #> 2902 2020 <NA> CB <NA> 35 Inactive #> 2903 2020 <NA> CB <NA> 28 Inactive #> 2904 2020 <NA> CB <NA> 38 Active #> 2905 2020 <NA> CB <NA> 25 Inactive #> 2906 2020 <NA> CB <NA> 23 Inactive #> 2907 2020 <NA> CB <NA> 35 Inactive #> 2908 2020 <NA> CB <NA> 34 Active #> 2909 2020 <NA> CB RCB NA Inactive #> 2910 2020 <NA> CB <NA> 27 Active #> 2911 2020 <NA> CB <NA> 25 Inactive #> 2912 2020 <NA> CB <NA> 32 Inactive #> 2913 2020 <NA> CB <NA> 43 Active #> 2914 2020 <NA> CB <NA> 37 Active #> 2915 2020 <NA> CB <NA> 39 Inactive #> 2916 2020 <NA> CB <NA> 27 Inactive #> 2917 2020 <NA> CB <NA> 21 Active #> 2918 2020 <NA> CB <NA> 31 Inactive #> 2919 2020 <NA> CB <NA> 24 Active #> 2920 2020 <NA> CB <NA> 32 Active #> 2921 2020 <NA> CB <NA> NA Inactive #> 2922 2020 <NA> CB <NA> 20 Inactive #> 2923 2020 <NA> CB <NA> 8 Active #> 2924 2020 <NA> CB <NA> 49 Active #> 2925 2020 <NA> CB <NA> 42 Inactive #> 2926 2020 <NA> CB <NA> 26 Active #> 2927 2020 <NA> CB <NA> 29 Inactive #> 2928 2020 <NA> CB <NA> 38 Inactive #> 2929 2020 <NA> CB <NA> 34 Inactive #> 2930 2020 <NA> CB <NA> 22 Inactive #> 2931 2020 <NA> CB <NA> 29 Inactive #> 2932 2020 <NA> CB LCB NA Inactive #> 2933 2020 <NA> CB <NA> 46 Inactive #> 2934 2020 <NA> CB <NA> 48 Inactive #> 2935 2020 <NA> CB <NA> NA Inactive #> 2936 2020 <NA> CB <NA> 46 Active #> 2937 2020 <NA> CB <NA> 36 Inactive #> 2938 2020 <NA> CB <NA> 47 Inactive #> 2939 2020 <NA> CB <NA> 29 Active #> 2940 2020 <NA> CB <NA> 33 Inactive #> 2941 2020 <NA> CB RCB NA Inactive #> 2942 2020 <NA> CB <NA> 38 Inactive #> 2943 2020 <NA> CB <NA> 45 Active #> 2944 2020 <NA> CB <NA> 34 Inactive #> 2945 2020 <NA> CB RCB 30 Active #> 2946 2020 <NA> CB <NA> 49 Inactive #> 2947 2020 <NA> CB <NA> NA Inactive #> 2948 2020 <NA> CB <NA> 31 Active #> 2949 2020 <NA> CB <NA> 39 Inactive #> 2950 2020 <NA> CB <NA> NA Inactive #> 2951 2020 <NA> CB <NA> NA Inactive #> 2952 2020 <NA> CB <NA> 40 Inactive #> 2953 2020 <NA> CB <NA> 33 Inactive #> 2954 2020 <NA> CB <NA> 35 Inactive #> 2955 2020 <NA> CB <NA> 23 Inactive #> 2956 2020 <NA> CB <NA> 38 Inactive #> 2957 2020 <NA> CB <NA> 37 Active #> 2958 2020 <NA> CB <NA> 23 Inactive #> 2959 2020 <NA> CB <NA> 28 Inactive #> 2960 2020 <NA> CB <NA> NA Inactive #> 2961 2020 <NA> CB <NA> 39 Inactive #> 2962 2020 <NA> CB <NA> 20 Inactive #> 2963 2020 <NA> CB <NA> 44 Inactive #> 2964 2020 <NA> CB <NA> 42 Inactive #> 2965 2020 <NA> CB <NA> 40 Inactive #> 2966 2020 <NA> CB <NA> 41 Inactive #> 2967 2020 <NA> DB <NA> NA Inactive #> 2968 2020 <NA> DB <NA> NA Inactive #> 2969 2020 <NA> DB <NA> NA Inactive #> 2970 2020 <NA> DB <NA> 47 Inactive #> 2971 2020 <NA> DB <NA> 43 Inactive #> 2972 2020 <NA> DB <NA> 39 Inactive #> 2973 2020 <NA> DB <NA> NA Inactive #> 2974 2020 <NA> DB <NA> 40 Inactive #> 2975 2020 <NA> DB <NA> 41 Inactive #> 2976 2020 <NA> DB <NA> 46 Inactive #> 2977 2020 <NA> DB <NA> 46 Inactive #> 2978 2020 <NA> DE <NA> 94 Active #> 2979 2020 <NA> DE <NA> 75 Inactive #> 2980 2020 <NA> DE <NA> 98 Inactive #> 2981 2020 <NA> DE <NA> 95 Inactive #> 2982 2020 <NA> DE <NA> 61 Inactive #> 2983 2020 <NA> DE DT 99 Active #> 2984 2020 <NA> DE <NA> 50 Inactive #> 2985 2020 <NA> DE <NA> 56 Active #> 2986 2020 <NA> DE <NA> 52 Inactive #> 2987 2020 <NA> DE <NA> 68 Inactive #> 2988 2020 <NA> DE <NA> 98 Inactive #> 2989 2020 <NA> DE <NA> 90 Active #> 2990 2020 <NA> DE <NA> 66 Inactive #> 2991 2020 <NA> DE <NA> 98 Active #> 2992 2020 <NA> DE <NA> 71 Inactive #> 2993 2020 <NA> DE <NA> 96 Inactive #> 2994 2020 <NA> DE <NA> 75 Inactive #> 2995 2020 <NA> DE <NA> 76 Inactive #> 2996 2020 <NA> DE <NA> 91 Inactive #> 2997 2020 <NA> DE <NA> 95 Active #> 2998 2020 <NA> DE <NA> NA Inactive #> 2999 2020 <NA> DE <NA> 76 Active #> 3000 2020 <NA> DE <NA> 92 Active #> 3001 2020 <NA> DE <NA> 90 Inactive #> 3002 2020 <NA> DE <NA> NA Inactive #> 3003 2020 <NA> DE <NA> 59 Inactive #> 3004 2020 <NA> DE <NA> 56 Active #> 3005 2020 <NA> DE <NA> 56 Active #> 3006 2020 <NA> DE <NA> 66 Inactive #> 3007 2020 <NA> DE <NA> 61 Inactive #> 3008 2020 <NA> DE <NA> 59 Inactive #> 3009 2020 <NA> DE <NA> 62 Inactive #> 3010 2020 <NA> DE <NA> 95 Active #> 3011 2020 <NA> DE <NA> 73 Inactive #> 3012 2020 <NA> DE <NA> 92 Inactive #> 3013 2020 <NA> DE <NA> 46 Active #> 3014 2020 <NA> DE <NA> 99 Active #> 3015 2020 <NA> DE <NA> 96 Active #> 3016 2020 <NA> DE <NA> 93 Inactive #> 3017 2020 <NA> DE <NA> 90 Inactive #> 3018 2020 <NA> DE <NA> 76 Inactive #> 3019 2020 <NA> DE <NA> 79 Inactive #> 3020 2020 <NA> DE <NA> 90 Active #> 3021 2020 <NA> DE <NA> 96 Inactive #> 3022 2020 <NA> DE <NA> 74 Inactive #> 3023 2020 <NA> DE <NA> NA Inactive #> 3024 2020 <NA> DE <NA> 44 Inactive #> 3025 2020 <NA> DE <NA> 71 Inactive #> 3026 2020 <NA> DE <NA> 75 Inactive #> 3027 2020 <NA> DE <NA> NA Inactive #> 3028 2020 <NA> DE <NA> 90 Active #> 3029 2020 <NA> DE <NA> 63 Inactive #> 3030 2020 <NA> DE RDE NA Inactive #> 3031 2020 <NA> DE <NA> 66 Inactive #> 3032 2020 <NA> DE <NA> 71 Inactive #> 3033 2020 <NA> DE <NA> 47 Inactive #> 3034 2020 <NA> DE RDE 95 Inactive #> 3035 2020 <NA> DE <NA> 70 Inactive #> 3036 2020 <NA> DE <NA> 76 Injured Reserve #> 3037 2020 <NA> DE <NA> 49 Inactive #> 3038 2020 <NA> DE <NA> 93 Active #> 3039 2020 <NA> DE LOLB 91 Active #> 3040 2020 <NA> DE <NA> 64 Inactive #> 3041 2020 <NA> DE <NA> 98 Injured Reserve #> 3042 2020 <NA> DE LDE NA Inactive #> 3043 2020 <NA> DE <NA> 40 Inactive #> 3044 2020 <NA> DE <NA> 62 Inactive #> 3045 2020 <NA> DE RDE 96 Active #> 3046 2020 <NA> DE <NA> 43 Inactive #> 3047 2020 <NA> DE <NA> 90 Inactive #> 3048 2020 <NA> DE <NA> 48 Inactive #> 3049 2020 <NA> DE RDT NA Inactive #> 3050 2020 <NA> DE <NA> 79 Inactive #> 3051 2020 <NA> DE <NA> 63 Inactive #> 3052 2020 <NA> DE <NA> 92 Inactive #> 3053 2020 <NA> DE <NA> NA Inactive #> 3054 2020 <NA> DE <NA> 91 Inactive #> 3055 2020 <NA> DE <NA> 97 Inactive #> 3056 2020 <NA> DE <NA> 79 Active #> 3057 2020 <NA> DE <NA> 75 Inactive #> 3058 2020 <NA> DE <NA> 69 Inactive #> 3059 2020 <NA> DE <NA> 93 Active #> 3060 2020 <NA> DE <NA> 59 Inactive #> 3061 2020 <NA> DE <NA> 96 Active #> 3062 2020 <NA> DE <NA> 54 Inactive #> 3063 2020 <NA> DE <NA> NA Inactive #> 3064 2020 <NA> DE <NA> 45 Inactive #> 3065 2020 <NA> DE <NA> 47 Inactive #> 3066 2020 <NA> DE <NA> 62 Inactive #> 3067 2020 <NA> DE <NA> 58 Inactive #> 3068 2020 <NA> DE <NA> 98 Inactive #> 3069 2020 <NA> DE <NA> 63 Inactive #> 3070 2020 <NA> DE <NA> 95 Inactive #> 3071 2020 <NA> DE <NA> 96 Inactive #> 3072 2020 <NA> DE <NA> 97 Inactive #> 3073 2020 <NA> DE ROLB NA Inactive #> 3074 2020 <NA> DE <NA> NA Inactive #> 3075 2020 <NA> DE <NA> 95 Inactive #> 3076 2020 <NA> DE LDE NA Inactive #> 3077 2020 <NA> DE <NA> 72 Active #> 3078 2020 <NA> DE <NA> 57 Inactive #> 3079 2020 <NA> DE <NA> 90 Inactive #> 3080 2020 <NA> DE <NA> NA Inactive #> 3081 2020 <NA> DE <NA> 78 Inactive #> 3082 2020 <NA> DE <NA> 90 Inactive #> 3083 2020 <NA> DE <NA> 96 Inactive #> 3084 2020 <NA> DL <NA> 60 Inactive #> 3085 2020 <NA> DL <NA> 92 Inactive #> 3086 2020 <NA> DL <NA> 95 Inactive #> 3087 2020 <NA> DL <NA> 54 Inactive #> 3088 2020 <NA> DL <NA> 43 Inactive #> 3089 2020 <NA> DL <NA> 0 Inactive #> 3090 2020 <NA> DL <NA> 59 Inactive #> 3091 2020 <NA> DL <NA> 60 Inactive #> 3092 2020 <NA> DL LDT NA Inactive #> 3093 2020 <NA> DT <NA> 56 Inactive #> 3094 2020 <NA> DT <NA> 90 Active #> 3095 2020 <NA> DT <NA> 66 Inactive #> 3096 2020 <NA> DT <NA> 71 Inactive #> 3097 2020 <NA> DT <NA> 96 Active #> 3098 2020 <NA> DT <NA> 64 Inactive #> 3099 2020 <NA> DT <NA> 66 Inactive #> 3100 2020 <NA> DT <NA> 97 Inactive #> 3101 2020 <NA> DT DT NA Inactive #> 3102 2020 <NA> DT <NA> 93 Active #> 3103 2020 <NA> DT <NA> 94 Inactive #> 3104 2020 <NA> DT <NA> 78 Inactive #> 3105 2020 <NA> DT <NA> 98 Inactive #> 3106 2020 <NA> DT RDE NA Inactive #> 3107 2020 <NA> DT <NA> 97 Active #> 3108 2020 <NA> DT <NA> 94 Active #> 3109 2020 <NA> DT <NA> 61 Inactive #> 3110 2020 <NA> DT <NA> 93 Active #> 3111 2020 <NA> DT <NA> 69 Inactive #> 3112 2020 <NA> DT <NA> 90 Injured Reserve #> 3113 2020 <NA> DT <NA> 60 Inactive #> 3114 2020 <NA> DT RDT NA Inactive #> 3115 2020 <NA> DT <NA> 63 Inactive #> 3116 2020 <NA> DT <NA> 95 Active #> 3117 2020 <NA> DT <NA> 61 Active #> 3118 2020 <NA> DT <NA> 72 Inactive #> 3119 2020 <NA> DT <NA> 97 Inactive #> 3120 2020 <NA> DT <NA> 63 Inactive #> 3121 2020 <NA> DT <NA> 65 Inactive #> 3122 2020 <NA> DT <NA> NA Inactive #> 3123 2020 <NA> DT <NA> 61 Inactive #> 3124 2020 <NA> DT <NA> 97 Inactive #> 3125 2020 <NA> DT <NA> 73 Inactive #> 3126 2020 <NA> DT <NA> 71 Inactive #> 3127 2020 <NA> DT LDE 63 Active #> 3128 2020 <NA> DT <NA> 94 Inactive #> 3129 2020 <NA> DT <NA> 76 Inactive #> 3130 2020 <NA> DT <NA> 65 Inactive #> 3131 2020 <NA> DT <NA> 93 Active #> 3132 2020 <NA> DT <NA> 97 Inactive #> 3133 2020 <NA> DT <NA> 60 Inactive #> 3134 2020 <NA> DT <NA> NA Inactive #> 3135 2020 <NA> DT <NA> 62 Inactive #> 3136 2020 <NA> DT <NA> 65 Inactive #> 3137 2020 <NA> DT <NA> 78 Inactive #> 3138 2020 <NA> DT <NA> 60 Inactive #> 3139 2020 <NA> DT <NA> 93 Inactive #> 3140 2020 <NA> DT <NA> 67 Inactive #> 3141 2020 <NA> DT <NA> 93 Inactive #> 3142 2020 <NA> DT <NA> 78 Inactive #> 3143 2020 <NA> DT <NA> 53 Inactive #> 3144 2020 <NA> DT <NA> 68 Inactive #> 3145 2020 <NA> DT <NA> 99 Inactive #> 3146 2020 <NA> DT <NA> 90 Injured Reserve #> 3147 2020 <NA> DT <NA> 63 Inactive #> 3148 2020 <NA> DT <NA> 61 Inactive #> 3149 2020 <NA> DT <NA> 40 Inactive #> 3150 2020 <NA> DT <NA> 97 Inactive #> 3151 2020 <NA> DT LDT 93 Inactive #> 3152 2020 <NA> DT <NA> 75 Inactive #> 3153 2020 <NA> DT <NA> 72 Inactive #> 3154 2020 <NA> DT <NA> 96 Injured Reserve #> 3155 2020 <NA> DT <NA> 96 Injured Reserve #> 3156 2020 <NA> DT <NA> 66 Inactive #> 3157 2020 <NA> DT <NA> 77 Inactive #> 3158 2020 <NA> DT LDT 93 Inactive #> 3159 2020 <NA> DT <NA> 70 Inactive #> 3160 2020 <NA> DT <NA> 64 Inactive #> 3161 2020 <NA> DT <NA> 48 Inactive #> 3162 2020 <NA> FB <NA> 96 Inactive #> 3163 2020 <NA> FB RB NA Inactive #> 3164 2020 <NA> FB <NA> 44 Inactive #> 3165 2020 <NA> FB <NA> 49 Inactive #> 3166 2020 <NA> FB <NA> 47 Inactive #> 3167 2020 <NA> FB <NA> 30 Inactive #> 3168 2020 <NA> FB <NA> 40 Inactive #> 3169 2020 <NA> FB <NA> 45 Inactive #> 3170 2020 <NA> FB <NA> 36 Inactive #> 3171 2020 <NA> FB <NA> 40 Inactive #> 3172 2020 <NA> FB <NA> 32 Active #> 3173 2020 <NA> FB RB NA Inactive #> 3174 2020 <NA> FB FB NA Inactive #> 3175 2020 <NA> FB <NA> 45 Inactive #> 3176 2020 <NA> FB <NA> 48 Inactive #> 3177 2020 <NA> FB RB 42 Active #> 3178 2020 <NA> FB <NA> 46 Inactive #> 3179 2020 <NA> FB <NA> 22 Inactive #> 3180 2020 <NA> FB RB 35 Inactive #> 3181 2020 <NA> FB RB 33 Active #> 3182 2020 <NA> FB RB 42 Injured Reserve #> 3183 2020 <NA> FB RB NA Inactive #> 3184 2020 <NA> FB <NA> 46 Active #> 3185 2020 <NA> FB <NA> 40 Inactive #> 3186 2020 <NA> FB <NA> 43 Inactive #> 3187 2020 <NA> FB <NA> 75 Inactive #> 3188 2020 <NA> FS <NA> 29 Active #> 3189 2020 <NA> FS <NA> 35 Inactive #> 3190 2020 <NA> FS <NA> 41 Inactive #> 3191 2020 <NA> FS <NA> 47 Inactive #> 3192 2020 <NA> FS <NA> 23 Active #> 3193 2020 <NA> FS <NA> 47 Inactive #> 3194 2020 <NA> FS <NA> 45 Inactive #> 3195 2020 <NA> FS <NA> 38 Inactive #> 3196 2020 <NA> FS <NA> 28 Inactive #> 3197 2020 <NA> FS <NA> NA Inactive #> 3198 2020 <NA> FS <NA> 39 Inactive #> 3199 2020 <NA> FS <NA> 31 Inactive #> 3200 2020 <NA> FS <NA> 41 Inactive #> 3201 2020 <NA> FS <NA> 31 Inactive #> 3202 2020 <NA> FS SS 35 Active #> 3203 2020 <NA> FS <NA> 28 Active #> 3204 2020 <NA> FS <NA> 33 Inactive #> 3205 2020 <NA> FS <NA> 39 Inactive #> 3206 2020 <NA> FS FS 42 Active #> 3207 2020 <NA> FS <NA> 23 Inactive #> 3208 2020 <NA> FS <NA> 35 Inactive #> 3209 2020 <NA> FS <NA> 36 Active #> 3210 2020 <NA> FS <NA> 28 Active #> 3211 2020 <NA> FS <NA> 20 Inactive #> 3212 2020 <NA> FS <NA> 24 Active #> 3213 2020 <NA> FS FS 29 Active #> 3214 2020 <NA> FS <NA> 41 Inactive #> 3215 2020 <NA> FS FS 27 Active #> 3216 2020 <NA> FS <NA> 46 Inactive #> 3217 2020 <NA> FS <NA> 35 Inactive #> 3218 2020 <NA> FS <NA> 25 Inactive #> 3219 2020 <NA> FS <NA> 24 Active #> 3220 2020 <NA> FS <NA> 31 Active #> 3221 2020 <NA> FS FS NA Inactive #> 3222 2020 <NA> FS <NA> NA Inactive #> 3223 2020 <NA> FS <NA> 45 Active #> 3224 2020 <NA> FS <NA> 40 Inactive #> 3225 2020 <NA> FS FS NA Inactive #> 3226 2020 <NA> FS <NA> 45 Inactive #> 3227 2020 <NA> FS FS 41 Active #> 3228 2020 <NA> FS <NA> 46 Injured Reserve #> 3229 2020 <NA> FS <NA> 21 Active #> 3230 2020 <NA> FS <NA> 27 Active #> 3231 2020 <NA> FS FS NA Inactive #> 3232 2020 <NA> FS <NA> 38 Active #> 3233 2020 <NA> FS <NA> 32 Active #> 3234 2020 <NA> FS <NA> 39 Inactive #> 3235 2020 <NA> FS <NA> 27 Active #> 3236 2020 <NA> FS <NA> 34 Active #> 3237 2020 <NA> FS <NA> 30 Inactive #> 3238 2020 <NA> FS <NA> 46 Inactive #> 3239 2020 <NA> FS <NA> 37 Inactive #> 3240 2020 <NA> FS SS 20 Active #> 3241 2020 <NA> FS <NA> 36 Inactive #> 3242 2020 <NA> FS <NA> 47 Inactive #> 3243 2020 <NA> FS <NA> 29 Inactive #> 3244 2020 <NA> FS <NA> 29 Inactive #> 3245 2020 <NA> FS FS 29 Inactive #> 3246 2020 <NA> FS <NA> 43 Inactive #> 3247 2020 <NA> FS <NA> 21 Inactive #> 3248 2020 <NA> FS <NA> 38 Active #> 3249 2020 <NA> FS FS NA Inactive #> 3250 2020 <NA> FS <NA> 34 Inactive #> 3251 2020 <NA> FS <NA> 41 Inactive #> 3252 2020 <NA> FS <NA> 35 Inactive #> 3253 2020 <NA> G <NA> 66 Inactive #> 3254 2020 <NA> G <NA> 66 Inactive #> 3255 2020 <NA> G <NA> 72 Active #> 3256 2020 <NA> G <NA> 74 Inactive #> 3257 2020 <NA> G <NA> 70 Active #> 3258 2020 <NA> G <NA> 60 Inactive #> 3259 2020 <NA> G <NA> 65 Inactive #> 3260 2020 <NA> G <NA> 68 Inactive #> 3261 2020 <NA> G <NA> 61 Inactive #> 3262 2020 <NA> G RG 68 Active #> 3263 2020 <NA> G <NA> 60 Inactive #> 3264 2020 <NA> G <NA> 69 Inactive #> 3265 2020 <NA> G <NA> 60 Inactive #> 3266 2020 <NA> G <NA> NA Inactive #> 3267 2020 <NA> G RG 78 Inactive #> 3268 2020 <NA> G <NA> 68 Active #> 3269 2020 <NA> G <NA> 66 Inactive #> 3270 2020 <NA> G LG NA Inactive #> 3271 2020 <NA> G <NA> 65 Active #> 3272 2020 <NA> G LG 62 Inactive #> 3273 2020 <NA> G <NA> 66 Inactive #> 3274 2020 <NA> G <NA> 68 Inactive #> 3275 2020 <NA> G <NA> 74 Active #> 3276 2020 <NA> G LG 73 Active #> 3277 2020 <NA> G RG NA Inactive #> 3278 2020 <NA> G <NA> 63 Inactive #> 3279 2020 <NA> G <NA> 69 Active #> 3280 2020 <NA> G <NA> 63 Inactive #> 3281 2020 <NA> G <NA> 63 Inactive #> 3282 2020 <NA> G <NA> 75 Inactive #> 3283 2020 <NA> G <NA> 67 Inactive #> 3284 2020 <NA> G <NA> 74 Inactive #> 3285 2020 <NA> G <NA> 61 Inactive #> 3286 2020 <NA> G <NA> 74 Active #> 3287 2020 <NA> G <NA> 63 Inactive #> 3288 2020 <NA> G <NA> 63 Inactive #> 3289 2020 <NA> G <NA> 62 Active #> 3290 2020 <NA> G <NA> 65 Active #> 3291 2020 <NA> G <NA> 65 Active #> 3292 2020 <NA> G <NA> NA Inactive #> 3293 2020 <NA> G <NA> 69 Inactive #> 3294 2020 <NA> G <NA> 66 Inactive #> 3295 2020 <NA> G <NA> 61 Inactive #> 3296 2020 <NA> G <NA> 62 Active #> 3297 2020 <NA> G <NA> 68 Inactive #> 3298 2020 <NA> G <NA> 66 Inactive #> 3299 2020 <NA> G <NA> 70 Inactive #> 3300 2020 <NA> G <NA> 67 Inactive #> 3301 2020 <NA> G <NA> 64 Inactive #> 3302 2020 <NA> G <NA> 62 Inactive #> 3303 2020 <NA> G <NA> 62 Inactive #> 3304 2020 <NA> G <NA> 67 Active #> 3305 2020 <NA> G <NA> 68 Active #> 3306 2020 <NA> G <NA> 71 Injured Reserve #> 3307 2020 <NA> G <NA> 79 Inactive #> 3308 2020 <NA> G <NA> 67 Inactive #> 3309 2020 <NA> G <NA> 75 Active #> 3310 2020 <NA> G <NA> 68 Active #> 3311 2020 <NA> G <NA> 60 Inactive #> 3312 2020 <NA> G <NA> 73 Inactive #> 3313 2020 <NA> G LG 63 Inactive #> 3314 2020 <NA> G <NA> NA Inactive #> 3315 2020 <NA> G <NA> 78 Inactive #> 3316 2020 <NA> G <NA> 65 Active #> 3317 2020 <NA> G <NA> 79 Inactive #> 3318 2020 <NA> G <NA> 72 Inactive #> 3319 2020 <NA> G <NA> 70 Inactive #> 3320 2020 <NA> G LG 66 Active #> 3321 2020 <NA> G <NA> 60 Inactive #> 3322 2020 <NA> G RG 64 Active #> 3323 2020 <NA> G <NA> 61 Inactive #> 3324 2020 <NA> G <NA> 67 Inactive #> 3325 2020 <NA> G <NA> 64 Inactive #> 3326 2020 <NA> G <NA> 78 Inactive #> 3327 2020 <NA> G LG 69 Active #> 3328 2020 <NA> G <NA> 60 Inactive #> 3329 2020 <NA> G <NA> 78 Inactive #> 3330 2020 <NA> G <NA> 63 Inactive #> 3331 2020 <NA> G <NA> 63 Inactive #> 3332 2020 <NA> G RG 67 Active #> 3333 2020 <NA> G <NA> 66 Inactive #> 3334 2020 <NA> G <NA> 62 Inactive #> 3335 2020 <NA> G <NA> 66 Inactive #> 3336 2020 <NA> G <NA> 61 Inactive #> 3337 2020 <NA> G <NA> 76 Inactive #> 3338 2020 <NA> G <NA> 70 Inactive #> 3339 2020 <NA> G <NA> NA Inactive #> 3340 2020 <NA> G LG NA Inactive #> 3341 2020 <NA> G <NA> NA Inactive #> 3342 2020 <NA> G <NA> 60 Inactive #> 3343 2020 <NA> G <NA> 64 Active #> 3344 2020 <NA> G <NA> NA Inactive #> 3345 2020 <NA> G <NA> NA Inactive #> 3346 2020 <NA> G <NA> 68 Active #> 3347 2020 <NA> G <NA> 74 Inactive #> 3348 2020 <NA> G <NA> 79 Inactive #> 3349 2020 <NA> G <NA> 76 Active #> 3350 2020 <NA> G LG 66 Inactive #> 3351 2020 <NA> G <NA> 65 Inactive #> 3352 2020 <NA> G RG 73 Active #> 3353 2020 <NA> G <NA> 67 Inactive #> 3354 2020 <NA> G <NA> 74 Inactive #> 3355 2020 <NA> G LG NA Inactive #> 3356 2020 <NA> G <NA> 73 Active #> 3357 2020 <NA> G <NA> 63 Inactive #> 3358 2020 <NA> G <NA> 73 Active #> 3359 2020 <NA> G <NA> 71 Active #> 3360 2020 <NA> G <NA> 77 Active #> 3361 2020 <NA> G <NA> 67 Inactive #> 3362 2020 <NA> G <NA> NA Inactive #> 3363 2020 <NA> G <NA> 64 Active #> 3364 2020 <NA> G <NA> 68 Inactive #> 3365 2020 <NA> G <NA> 68 Inactive #> 3366 2020 <NA> G <NA> 66 Inactive #> 3367 2020 <NA> G <NA> 61 Inactive #> 3368 2020 <NA> G LG NA Inactive #> 3369 2020 <NA> G <NA> 69 Inactive #> 3370 2020 <NA> G LG 79 Active #> 3371 2020 <NA> G <NA> 63 Inactive #> 3372 2020 <NA> G <NA> 67 Inactive #> 3373 2020 <NA> G <NA> 67 Inactive #> 3374 2020 <NA> G <NA> 68 Inactive #> 3375 2020 <NA> G <NA> 68 Inactive #> 3376 2020 <NA> ILB RILB NA Inactive #> 3377 2020 <NA> ILB <NA> 96 Inactive #> 3378 2020 <NA> ILB <NA> 45 Inactive #> 3379 2020 <NA> ILB <NA> NA Inactive #> 3380 2020 <NA> ILB <NA> 41 Inactive #> 3381 2020 <NA> ILB <NA> 53 Inactive #> 3382 2020 <NA> ILB <NA> NA Inactive #> 3383 2020 <NA> ILB <NA> 41 Inactive #> 3384 2020 <NA> ILB <NA> 55 Inactive #> 3385 2020 <NA> ILB <NA> 58 Inactive #> 3386 2020 <NA> ILB <NA> 50 Inactive #> 3387 2020 <NA> ILB <NA> 52 Inactive #> 3388 2020 <NA> ILB <NA> 59 Inactive #> 3389 2020 <NA> ILB <NA> NA Inactive #> 3390 2020 <NA> ILB <NA> 52 Inactive #> 3391 2020 <NA> ILB <NA> 41 Inactive #> 3392 2020 <NA> ILB <NA> 46 Inactive #> 3393 2020 <NA> ILB <NA> 46 Inactive #> 3394 2020 <NA> ILB <NA> NA Inactive #> 3395 2020 <NA> ILB <NA> 53 Inactive #> 3396 2020 <NA> ILB <NA> 33 Inactive #> 3397 2020 <NA> ILB <NA> 99 Inactive #> 3398 2020 <NA> ILB <NA> 48 Inactive #> 3399 2020 <NA> ILB <NA> 44 Inactive #> 3400 2020 <NA> ILB <NA> 49 Inactive #> 3401 2020 <NA> ILB <NA> 51 Inactive #> 3402 2020 <NA> ILB MLB NA Inactive #> 3403 2020 <NA> ILB <NA> 60 Inactive #> 3404 2020 <NA> ILB <NA> 59 Inactive #> 3405 2020 <NA> ILB RILB NA Inactive #> 3406 2020 <NA> ILB <NA> 50 Inactive #> 3407 2020 <NA> ILB <NA> 46 Inactive #> 3408 2020 <NA> ILB <NA> 49 Inactive #> 3409 2020 <NA> ILB <NA> 46 Inactive #> 3410 2020 <NA> ILB <NA> 52 Inactive #> 3411 2020 <NA> ILB <NA> 59 Inactive #> 3412 2020 <NA> ILB LILB NA Inactive #> 3413 2020 <NA> ILB <NA> 48 Inactive #> 3414 2020 <NA> ILB <NA> NA Inactive #> 3415 2020 <NA> ILB <NA> 48 Inactive #> 3416 2020 <NA> ILB <NA> 44 Inactive #> 3417 2020 <NA> ILB <NA> 45 Inactive #> 3418 2020 <NA> ILB <NA> 43 Inactive #> 3419 2020 <NA> ILB <NA> NA Inactive #> 3420 2020 <NA> ILB <NA> NA Inactive #> 3421 2020 <NA> ILB <NA> NA Inactive #> 3422 2020 <NA> ILB WILL NA Inactive #> 3423 2020 <NA> ILB <NA> 55 Inactive #> 3424 2020 <NA> K <NA> 11 Active #> 3425 2020 <NA> K <NA> 6 Inactive #> 3426 2020 <NA> K <NA> 4 Active #> 3427 2020 <NA> K <NA> 5 Inactive #> 3428 2020 <NA> K <NA> 1 Inactive #> 3429 2020 <NA> K <NA> 9 Inactive #> 3430 2020 <NA> K <NA> 6 Active #> 3431 2020 <NA> K <NA> 9 Inactive #> 3432 2020 <NA> K K 4 Active #> 3433 2020 <NA> K K 7 Active #> 3434 2020 <NA> K <NA> 4 Inactive #> 3435 2020 <NA> K <NA> 3 Active #> 3436 2020 <NA> K <NA> 9 Inactive #> 3437 2020 <NA> LB <NA> 44 Inactive #> 3438 2020 <NA> LB <NA> 59 Injured Reserve #> 3439 2020 <NA> LB <NA> 52 Active #> 3440 2020 <NA> LB <NA> 50 Active #> 3441 2020 <NA> LB <NA> 55 Active #> 3442 2020 <NA> LB <NA> 57 Inactive #> 3443 2020 <NA> LB <NA> 54 Active #> 3444 2020 <NA> LB <NA> 51 Active #> 3445 2020 <NA> LB <NA> 59 Active #> 3446 2020 <NA> LB <NA> 50 Inactive #> 3447 2020 <NA> LB RILB 52 Active #> 3448 2020 <NA> LB <NA> 49 Injured Reserve #> 3449 2020 <NA> LB RILB 45 Active #> 3450 2020 <NA> LB <NA> 52 Active #> 3451 2020 <NA> LB <NA> 48 Inactive #> 3452 2020 <NA> LB <NA> 58 Active #> 3453 2020 <NA> LB <NA> 54 Active #> 3454 2020 <NA> LB <NA> 57 Active #> 3455 2020 <NA> LB <NA> 47 Inactive #> 3456 2020 <NA> LB <NA> 50 Active #> 3457 2020 <NA> LB <NA> 56 Injured Reserve #> 3458 2020 <NA> LB ILB 52 Active #> 3459 2020 <NA> LB <NA> 56 Active #> 3460 2020 <NA> LB <NA> 55 Inactive #> 3461 2020 <NA> LB <NA> 59 Active #> 3462 2020 <NA> LB <NA> 47 Inactive #> 3463 2020 <NA> LB <NA> NA Inactive #> 3464 2020 <NA> LB WLB 57 Active #> 3465 2020 <NA> LB <NA> 49 Active #> 3466 2020 <NA> LB <NA> 57 Active #> 3467 2020 <NA> LB <NA> 93 Injured Reserve #> 3468 2020 <NA> LB <NA> 50 Active #> 3469 2020 <NA> LB <NA> 47 Active #> 3470 2020 <NA> LB <NA> 91 Active #> 3471 2020 <NA> LB <NA> 55 Inactive #> 3472 2020 <NA> LB <NA> 53 Active #> 3473 2020 <NA> LB <NA> 40 Inactive #> 3474 2020 <NA> LB <NA> 42 Inactive #> 3475 2020 <NA> LB LB 45 Active #> 3476 2020 <NA> LB <NA> 91 Active #> 3477 2020 <NA> LB <NA> 91 Active #> 3478 2020 <NA> LB MLB 54 Active #> 3479 2020 <NA> LB <NA> 50 Inactive #> 3480 2020 <NA> LB <NA> 51 Active #> 3481 2020 <NA> LB <NA> 57 Active #> 3482 2020 <NA> LB <NA> 49 Inactive #> 3483 2020 <NA> LB <NA> 49 Inactive #> 3484 2020 <NA> LB <NA> 56 Active #> 3485 2020 <NA> LB <NA> 49 Active #> 3486 2020 <NA> LB <NA> 50 Active #> 3487 2020 <NA> LB <NA> 55 Inactive #> 3488 2020 <NA> LB <NA> 55 Active #> 3489 2020 <NA> LB <NA> 53 Active #> 3490 2020 <NA> LB <NA> 56 Active #> 3491 2020 <NA> LB <NA> 47 Active #> 3492 2020 <NA> LB <NA> 56 Active #> 3493 2020 <NA> LB <NA> 41 Active #> 3494 2020 <NA> LB LDE 94 Active #> 3495 2020 <NA> LB <NA> 47 Active #> 3496 2020 <NA> LB <NA> 53 Injured Reserve #> 3497 2020 <NA> LB <NA> 53 Inactive #> 3498 2020 <NA> LB <NA> 53 Active #> 3499 2020 <NA> LB <NA> 63 Inactive #> 3500 2020 <NA> LB <NA> 46 Inactive #> 3501 2020 <NA> LB <NA> 51 Active #> 3502 2020 <NA> LB OLB 52 Active #> 3503 2020 <NA> LB FS NA Inactive #> 3504 2020 <NA> LB <NA> 51 Active #> 3505 2020 <NA> LB <NA> 50 Injured Reserve #> 3506 2020 <NA> LB <NA> 57 Active #> 3507 2020 <NA> LB DT 52 Inactive #> 3508 2020 <NA> LB <NA> 45 Inactive #> 3509 2020 <NA> LB <NA> 35 Inactive #> 3510 2020 <NA> LB <NA> 55 Injured Reserve #> 3511 2020 <NA> LB <NA> 71 Inactive #> 3512 2020 <NA> LB <NA> 98 Active #> 3513 2020 <NA> LB <NA> 55 Inactive #> 3514 2020 <NA> LB <NA> 59 Active #> 3515 2020 <NA> LB <NA> 96 Active #> 3516 2020 <NA> LB <NA> 53 Inactive #> 3517 2020 <NA> LB <NA> 96 Active #> 3518 2020 <NA> LB <NA> 48 Inactive #> 3519 2020 <NA> LB <NA> 50 Inactive #> 3520 2020 <NA> LS <NA> 59 Active #> 3521 2020 <NA> LS <NA> 47 Inactive #> 3522 2020 <NA> LS <NA> 48 Inactive #> 3523 2020 <NA> LS <NA> 47 Active #> 3524 2020 <NA> LS <NA> 51 Active #> 3525 2020 <NA> LS <NA> 47 Active #> 3526 2020 <NA> LS <NA> 63 Inactive #> 3527 2020 <NA> LS <NA> 48 Inactive #> 3528 2020 <NA> LS <NA> NA Inactive #> 3529 2020 <NA> LS <NA> 53 Inactive #> 3530 2020 <NA> LS <NA> NA Inactive #> 3531 2020 <NA> LS <NA> 46 Inactive #> 3532 2020 <NA> NT <NA> 96 Inactive #> 3533 2020 <NA> NT <NA> NA Inactive #> 3534 2020 <NA> NT <NA> 79 Inactive #> 3535 2020 <NA> NT <NA> 62 Inactive #> 3536 2020 <NA> NT <NA> 99 Inactive #> 3537 2020 <NA> NT NT NA Inactive #> 3538 2020 <NA> NT <NA> 97 Inactive #> 3539 2020 <NA> NT <NA> 61 Inactive #> 3540 2020 <NA> NT <NA> 62 Inactive #> 3541 2020 <NA> NT <NA> 93 Inactive #> 3542 2020 <NA> NT <NA> 95 Inactive #> 3543 2020 <NA> NT <NA> 67 Inactive #> 3544 2020 <NA> NT <NA> NA Inactive #> 3545 2020 <NA> NT <NA> 70 Inactive #> 3546 2020 <NA> NT <NA> 63 Inactive #> 3547 2020 <NA> NT <NA> 96 Inactive #> 3548 2020 <NA> NT <NA> 60 Inactive #> 3549 2020 <NA> NT <NA> NA Inactive #> 3550 2020 <NA> NT <NA> 91 Inactive #> 3551 2020 <NA> NT <NA> NA Inactive #> 3552 2020 <NA> NT <NA> 92 Inactive #> 3553 2020 <NA> NT <NA> 68 Inactive #> 3554 2020 <NA> NT <NA> 67 Inactive #> 3555 2020 <NA> NT <NA> 62 Inactive #> 3556 2020 <NA> NT NT 92 Active #> 3557 2020 <NA> NT <NA> 71 Inactive #> 3558 2020 <NA> NT NT 77 Active #> 3559 2020 <NA> NT <NA> 66 Inactive #> 3560 2020 <NA> NT <NA> 64 Inactive #> 3561 2020 <NA> NT <NA> 96 Active #> 3562 2020 <NA> NT <NA> NA Inactive #> 3563 2020 <NA> NT NT 60 Inactive #> 3564 2020 <NA> OLB <NA> 49 Inactive #> 3565 2020 <NA> OLB <NA> 46 Inactive #> 3566 2020 <NA> OLB <NA> 48 Inactive #> 3567 2020 <NA> OLB <NA> NA Inactive #> 3568 2020 <NA> OLB <NA> 49 Inactive #> 3569 2020 <NA> OLB ROLB NA Inactive #> 3570 2020 <NA> OLB <NA> 53 Inactive #> 3571 2020 <NA> OLB <NA> 49 Inactive #> 3572 2020 <NA> OLB LOLB NA Inactive #> 3573 2020 <NA> OLB LOLB NA Inactive #> 3574 2020 <NA> OLB <NA> 59 Inactive #> 3575 2020 <NA> OLB <NA> NA Inactive #> 3576 2020 <NA> OLB <NA> 58 Inactive #> 3577 2020 <NA> OLB <NA> 40 Inactive #> 3578 2020 <NA> OLB RUSH NA Inactive #> 3579 2020 <NA> OLB <NA> 54 Inactive #> 3580 2020 <NA> OLB <NA> 59 Inactive #> 3581 2020 <NA> OLB WLB NA Inactive #> 3582 2020 <NA> OLB <NA> NA Inactive #> 3583 2020 <NA> OLB <NA> 59 Inactive #> 3584 2020 <NA> OLB <NA> 54 Inactive #> 3585 2020 <NA> OLB <NA> 58 Inactive #> 3586 2020 <NA> OLB <NA> 50 Inactive #> 3587 2020 <NA> OLB <NA> 49 Inactive #> 3588 2020 <NA> OLB WILL NA Inactive #> 3589 2020 <NA> OLB <NA> 52 Inactive #> 3590 2020 <NA> OLB <NA> 59 Inactive #> 3591 2020 <NA> OLB <NA> NA Inactive #> 3592 2020 <NA> OLB <NA> 51 Inactive #> 3593 2020 <NA> OLB <NA> 59 Inactive #> 3594 2020 <NA> OLB <NA> 62 Inactive #> 3595 2020 <NA> OLB <NA> 45 Inactive #> 3596 2020 <NA> OLB <NA> 49 Inactive #> 3597 2020 <NA> OLB <NA> 69 Inactive #> 3598 2020 <NA> OLB <NA> 46 Inactive #> 3599 2020 <NA> OLB <NA> 40 Inactive #> 3600 2020 <NA> OLB <NA> 51 Inactive #> 3601 2020 <NA> OLB <NA> NA Inactive #> 3602 2020 <NA> OLB <NA> 57 Inactive #> 3603 2020 <NA> OLB SAM NA Inactive #> 3604 2020 <NA> OLB <NA> 58 Inactive #> 3605 2020 <NA> OLB <NA> 47 Inactive #> 3606 2020 <NA> OLB <NA> 51 Inactive #> 3607 2020 <NA> OLB <NA> NA Inactive #> 3608 2020 <NA> OLB <NA> 69 Inactive #> 3609 2020 <NA> OLB <NA> 49 Inactive #> 3610 2020 <NA> OLB WILL NA Inactive #> 3611 2020 <NA> OLB <NA> 58 Inactive #> 3612 2020 <NA> OLB <NA> 6 Inactive #> 3613 2020 <NA> OLB <NA> 48 Inactive #> 3614 2020 <NA> OLB <NA> 46 Inactive #> 3615 2020 <NA> OLB <NA> 41 Inactive #> 3616 2020 <NA> OLB <NA> 96 Inactive #> 3617 2020 <NA> OLB <NA> 63 Inactive #> 3618 2020 <NA> OLB <NA> 59 Inactive #> 3619 2020 <NA> OLB SLB NA Inactive #> 3620 2020 <NA> OLB <NA> 50 Inactive #> 3621 2020 <NA> OLB <NA> 50 Inactive #> 3622 2020 <NA> OLB <NA> 48 Inactive #> 3623 2020 <NA> OLB <NA> 94 Inactive #> 3624 2020 <NA> OLB <NA> 90 Inactive #> 3625 2020 <NA> OLB <NA> 56 Inactive #> 3626 2020 <NA> OLB <NA> 79 Inactive #> 3627 2020 <NA> OLB <NA> 45 Inactive #> 3628 2020 <NA> OLB <NA> 48 Inactive #> 3629 2020 <NA> OLB <NA> 46 Inactive #> 3630 2020 <NA> OLB <NA> 57 Inactive #> 3631 2020 <NA> OLB LOLB NA Inactive #> 3632 2020 <NA> OLB <NA> 49 Inactive #> 3633 2020 <NA> OLB <NA> 50 Inactive #> 3634 2020 <NA> OLB <NA> 50 Inactive #> 3635 2020 <NA> OLB <NA> 49 Inactive #> 3636 2020 <NA> OLB <NA> NA Inactive #> 3637 2020 <NA> OLB <NA> NA Inactive #> 3638 2020 <NA> OLB <NA> 95 Inactive #> 3639 2020 <NA> OLB SLB 58 Inactive #> 3640 2020 <NA> OLB <NA> 43 Inactive #> 3641 2020 <NA> OLB <NA> NA Inactive #> 3642 2020 <NA> OLB <NA> NA Inactive #> 3643 2020 <NA> OLB <NA> 59 Inactive #> 3644 2020 <NA> OLB <NA> NA Inactive #> 3645 2020 <NA> OLB WLB NA Inactive #> 3646 2020 <NA> OLB WLB NA Inactive #> 3647 2020 <NA> OLB <NA> 58 Inactive #> 3648 2020 <NA> OLB <NA> 58 Inactive #> 3649 2020 <NA> OLB <NA> 50 Inactive #> 3650 2020 <NA> OLB SLB NA Inactive #> 3651 2020 <NA> OLB <NA> NA Inactive #> 3652 2020 <NA> OLB <NA> 45 Inactive #> 3653 2020 <NA> OLB <NA> 54 Inactive #> 3654 2020 <NA> OLB <NA> 57 Inactive #> 3655 2020 <NA> OLB <NA> 53 Inactive #> 3656 2020 <NA> OLB <NA> 25 Inactive #> 3657 2020 <NA> OLB <NA> 52 Inactive #> 3658 2020 <NA> OLB <NA> 43 Inactive #> 3659 2020 <NA> OT <NA> 71 Inactive #> 3660 2020 <NA> OT <NA> 72 Inactive #> 3661 2020 <NA> OT <NA> 63 Inactive #> 3662 2020 <NA> OT <NA> 63 Inactive #> 3663 2020 <NA> OT LT NA Inactive #> 3664 2020 <NA> OT <NA> NA Inactive #> 3665 2020 <NA> OT <NA> 77 Inactive #> 3666 2020 <NA> OT <NA> 77 Inactive #> 3667 2020 <NA> OT <NA> NA Inactive #> 3668 2020 <NA> OT <NA> 61 Inactive #> 3669 2020 <NA> OT <NA> 63 Inactive #> 3670 2020 <NA> OT <NA> 75 Inactive #> 3671 2020 <NA> OT <NA> 63 Inactive #> 3672 2020 <NA> OT <NA> 62 Inactive #> 3673 2020 <NA> OT <NA> NA Inactive #> 3674 2020 <NA> OT LT NA Inactive #> 3675 2020 <NA> OT <NA> 64 Inactive #> 3676 2020 <NA> OT <NA> 64 Inactive #> 3677 2020 <NA> OT <NA> 72 Inactive #> 3678 2020 <NA> OT LT NA Inactive #> 3679 2020 <NA> OT <NA> 75 Inactive #> 3680 2020 <NA> OT <NA> 75 Inactive #> 3681 2020 <NA> OT <NA> 79 Inactive #> 3682 2020 <NA> OT <NA> 72 Inactive #> 3683 2020 <NA> OT <NA> NA Inactive #> 3684 2020 <NA> OT <NA> 74 Inactive #> 3685 2020 <NA> OT <NA> 71 Inactive #> 3686 2020 <NA> OT <NA> 75 Inactive #> 3687 2020 <NA> OT <NA> 78 Inactive #> 3688 2020 <NA> OT <NA> 73 Inactive #> 3689 2020 <NA> OT <NA> 79 Inactive #> 3690 2020 <NA> OT <NA> 73 Inactive #> 3691 2020 <NA> OT <NA> 65 Inactive #> 3692 2020 <NA> OT <NA> 79 Inactive #> 3693 2020 <NA> OT <NA> 72 Inactive #> 3694 2020 <NA> OT <NA> 60 Inactive #> 3695 2020 <NA> OT <NA> 67 Inactive #> 3696 2020 <NA> OT <NA> 76 Inactive #> 3697 2020 <NA> OT <NA> 64 Inactive #> 3698 2020 <NA> OT <NA> 76 Inactive #> 3699 2020 <NA> OT <NA> NA Inactive #> 3700 2020 <NA> OT <NA> 62 Inactive #> 3701 2020 <NA> OT RG NA Inactive #> 3702 2020 <NA> OT <NA> 72 Inactive #> 3703 2020 <NA> OT <NA> 68 Inactive #> 3704 2020 <NA> OT <NA> 60 Inactive #> 3705 2020 <NA> OT <NA> 67 Inactive #> 3706 2020 <NA> OT <NA> NA Inactive #> 3707 2020 <NA> OT RT NA Inactive #> 3708 2020 <NA> OT RT NA Inactive #> 3709 2020 <NA> OT <NA> 61 Inactive #> 3710 2020 <NA> OT <NA> 60 Inactive #> 3711 2020 <NA> OT <NA> 73 Inactive #> 3712 2020 <NA> OT <NA> NA Inactive #> 3713 2020 <NA> OT <NA> 62 Inactive #> 3714 2020 <NA> OT <NA> 65 Inactive #> 3715 2020 <NA> OT <NA> 60 Inactive #> 3716 2020 <NA> OT <NA> 71 Inactive #> 3717 2020 <NA> OT <NA> 76 Inactive #> 3718 2020 <NA> OT <NA> NA Inactive #> 3719 2020 <NA> OT RT NA Inactive #> 3720 2020 <NA> OT <NA> 78 Inactive #> 3721 2020 <NA> OT <NA> 63 Inactive #> 3722 2020 <NA> OT <NA> 72 Inactive #> 3723 2020 <NA> OT <NA> 63 Inactive #> 3724 2020 <NA> OT <NA> 63 Inactive #> 3725 2020 <NA> OT <NA> 62 Inactive #> 3726 2020 <NA> OT <NA> 73 Inactive #> 3727 2020 <NA> OT <NA> 68 Inactive #> 3728 2020 <NA> OT RT NA Inactive #> 3729 2020 <NA> P <NA> 1 Inactive #> 3730 2020 <NA> P <NA> 3 Inactive #> 3731 2020 <NA> P <NA> 9 Inactive #> 3732 2020 <NA> P <NA> 2 Inactive #> 3733 2020 <NA> P <NA> NA Inactive #> 3734 2020 <NA> P <NA> 6 Active #> 3735 2020 <NA> P <NA> 1 Inactive #> 3736 2020 <NA> P <NA> 5 Active #> 3737 2020 <NA> P <NA> NA Inactive #> 3738 2020 <NA> P <NA> 9 Inactive #> 3739 2020 <NA> P <NA> 1 Inactive #> 3740 2020 <NA> P <NA> 7 Inactive #> 3741 2020 <NA> P <NA> 1 Injured Reserve #> 3742 2020 <NA> P <NA> 4 Inactive #> 3743 2020 <NA> P <NA> 3 Active #> 3744 2020 <NA> P <NA> 5 Active #> 3745 2020 <NA> P <NA> NA Inactive #> 3746 2020 <NA> P <NA> NA Inactive #> 3747 2020 <NA> P <NA> 2 Inactive #> 3748 2020 <NA> QB <NA> NA Inactive #> 3749 2020 <NA> QB <NA> 10 Inactive #> 3750 2020 <NA> QB <NA> 8 Inactive #> 3751 2020 <NA> QB <NA> 12 Active #> 3752 2020 <NA> QB <NA> 8 Active #> 3753 2020 <NA> QB <NA> 14 Injured Reserve #> 3754 2020 <NA> QB <NA> 2 Active #> 3755 2020 <NA> QB QB 36 Inactive #> 3756 2020 <NA> QB QB 9 Inactive #> 3757 2020 <NA> QB <NA> 2 Inactive #> 3758 2020 <NA> QB <NA> 9 Active #> 3759 2020 <NA> QB <NA> NA Inactive #> 3760 2020 <NA> QB <NA> 6 Inactive #> 3761 2020 <NA> QB <NA> 5 Inactive #> 3762 2020 <NA> QB QB 7 Inactive #> 3763 2020 <NA> QB QB NA Inactive #> 3764 2020 <NA> QB QB 3 Inactive #> 3765 2020 <NA> QB <NA> 48 Inactive #> 3766 2020 <NA> QB <NA> 9 Inactive #> 3767 2020 <NA> QB <NA> 2 Inactive #> 3768 2020 <NA> QB <NA> 6 Inactive #> 3769 2020 <NA> QB <NA> 3 Inactive #> 3770 2020 <NA> QB <NA> 3 Active #> 3771 2020 <NA> QB <NA> 10 Active #> 3772 2020 <NA> QB <NA> 8 Inactive #> 3773 2020 <NA> QB <NA> 5 Inactive #> 3774 2020 <NA> QB <NA> 8 Inactive #> 3775 2020 <NA> QB QB 6 Inactive #> 3776 2020 <NA> QB <NA> 6 Inactive #> 3777 2020 <NA> QB <NA> 18 Inactive #> 3778 2020 <NA> QB QB 14 Inactive #> 3779 2020 <NA> QB <NA> 66 Inactive #> 3780 2020 <NA> QB <NA> NA Inactive #> 3781 2020 <NA> QB <NA> 6 Active #> 3782 2020 <NA> QB <NA> 3 Inactive #> 3783 2020 <NA> QB <NA> 3 Active #> 3784 2020 <NA> QB <NA> NA Inactive #> 3785 2020 <NA> QB <NA> 6 Inactive #> 3786 2020 <NA> QB <NA> 3 Injured Reserve #> 3787 2020 <NA> QB <NA> 8 Inactive #> 3788 2020 <NA> QB QB NA Inactive #> 3789 2020 <NA> QB <NA> 12 Active #> 3790 2020 <NA> QB <NA> 9 Inactive #> 3791 2020 <NA> QB <NA> 8 Active #> 3792 2020 <NA> QB <NA> NA Inactive #> 3793 2020 <NA> QB QB 5 Inactive #> 3794 2020 <NA> QB QB 9 Inactive #> 3795 2020 <NA> RB <NA> 40 Inactive #> 3796 2020 <NA> RB <NA> 35 Inactive #> 3797 2020 <NA> RB RB 39 Inactive #> 3798 2020 <NA> RB RB NA Inactive #> 3799 2020 <NA> RB <NA> 34 Inactive #> 3800 2020 <NA> RB RB NA Inactive #> 3801 2020 <NA> RB <NA> 22 Active #> 3802 2020 <NA> RB <NA> 41 Inactive #> 3803 2020 <NA> RB <NA> 34 Active #> 3804 2020 <NA> RB RB 34 Inactive #> 3805 2020 <NA> RB <NA> 36 Inactive #> 3806 2020 <NA> RB <NA> 22 Inactive #> 3807 2020 <NA> RB RB 25 Inactive #> 3808 2020 <NA> RB RB 39 Inactive #> 3809 2020 <NA> RB <NA> 44 Inactive #> 3810 2020 <NA> RB <NA> 29 Inactive #> 3811 2020 <NA> RB RB 27 Inactive #> 3812 2020 <NA> RB <NA> 34 Injured Reserve #> 3813 2020 <NA> RB <NA> 43 Inactive #> 3814 2020 <NA> RB <NA> 33 Inactive #> 3815 2020 <NA> RB <NA> 32 Inactive #> 3816 2020 <NA> RB RB 31 Inactive #> 3817 2020 <NA> RB <NA> 41 Inactive #> 3818 2020 <NA> RB <NA> 31 Active #> 3819 2020 <NA> RB <NA> NA Inactive #> 3820 2020 <NA> RB RB 48 Inactive #> 3821 2020 <NA> RB <NA> 37 Inactive #> 3822 2020 <NA> RB <NA> 38 Active #> 3823 2020 <NA> RB RB 36 Inactive #> 3824 2020 <NA> RB <NA> NA Inactive #> 3825 2020 <NA> RB <NA> 34 Injured Reserve #> 3826 2020 <NA> RB <NA> 36 Active #> 3827 2020 <NA> RB RB NA Inactive #> 3828 2020 <NA> RB <NA> 28 Active #> 3829 2020 <NA> RB <NA> 32 Inactive #> 3830 2020 <NA> RB RB NA Inactive #> 3831 2020 <NA> RB RB 24 Active #> 3832 2020 <NA> RB <NA> 40 Inactive #> 3833 2020 <NA> RB <NA> 29 Active #> 3834 2020 <NA> RB <NA> 37 Active #> 3835 2020 <NA> RB RB 22 Active #> 3836 2020 <NA> RB <NA> 38 Inactive #> 3837 2020 <NA> RB RB 34 Inactive #> 3838 2020 <NA> RB <NA> 34 Inactive #> 3839 2020 <NA> RB RB 40 Inactive #> 3840 2020 <NA> RB <NA> 38 Inactive #> 3841 2020 <NA> RB RB 1 Inactive #> 3842 2020 <NA> RB <NA> 22 Inactive #> 3843 2020 <NA> RB RB 35 Inactive #> 3844 2020 <NA> RB <NA> 26 Active #> 3845 2020 <NA> RB <NA> 33 Active #> 3846 2020 <NA> RB <NA> 34 Inactive #> 3847 2020 <NA> RB <NA> 48 Inactive #> 3848 2020 <NA> RB <NA> 34 Active #> 3849 2020 <NA> RB <NA> 41 Inactive #> 3850 2020 <NA> RB <NA> NA Inactive #> 3851 2020 <NA> RB RB 30 Inactive #> 3852 2020 <NA> RB <NA> 33 Active #> 3853 2020 <NA> RB RB 39 Inactive #> 3854 2020 <NA> RB <NA> 30 Inactive #> 3855 2020 <NA> RB <NA> 25 Inactive #> 3856 2020 <NA> RB RB 39 Inactive #> 3857 2020 <NA> RB <NA> 46 Inactive #> 3858 2020 <NA> RB <NA> 36 Inactive #> 3859 2020 <NA> RB <NA> 28 Active #> 3860 2020 <NA> RB <NA> 42 Inactive #> 3861 2020 <NA> RB <NA> 35 Inactive #> 3862 2020 <NA> RB RB 34 Inactive #> 3863 2020 <NA> RB <NA> 23 Inactive #> 3864 2020 <NA> RB <NA> 30 Inactive #> 3865 2020 <NA> RB <NA> 34 Active #> 3866 2020 <NA> RB <NA> 45 Inactive #> 3867 2020 <NA> RB <NA> 23 Inactive #> 3868 2020 <NA> RB <NA> 34 Inactive #> 3869 2020 <NA> RB <NA> 41 Inactive #> 3870 2020 <NA> RB RB 24 Inactive #> 3871 2020 <NA> RB <NA> NA Inactive #> 3872 2020 <NA> RB <NA> 43 Active #> 3873 2020 <NA> RB <NA> 27 Inactive #> 3874 2020 <NA> RB <NA> 42 Inactive #> 3875 2020 <NA> RB <NA> 22 Active #> 3876 2020 <NA> RB <NA> 22 Inactive #> 3877 2020 <NA> RB RB 29 Active #> 3878 2020 <NA> RB <NA> 43 Injured Reserve #> 3879 2020 <NA> RB <NA> 38 Inactive #> 3880 2020 <NA> RB <NA> 35 Active #> 3881 2020 <NA> RB <NA> NA Inactive #> 3882 2020 <NA> RB RB 43 Inactive #> 3883 2020 <NA> RB RB 35 Inactive #> 3884 2020 <NA> RB <NA> 35 Injured Reserve #> 3885 2020 <NA> RB <NA> 23 Injured Reserve #> 3886 2020 <NA> RB RB NA Inactive #> 3887 2020 <NA> RB <NA> 38 Inactive #> 3888 2020 <NA> RB <NA> 38 Inactive #> 3889 2020 <NA> RB <NA> 39 Inactive #> 3890 2020 <NA> RB RB 49 Inactive #> 3891 2020 <NA> RB <NA> 25 Active #> 3892 2020 <NA> RB RB NA Inactive #> 3893 2020 <NA> RB RB NA Inactive #> 3894 2020 <NA> RB <NA> 22 Inactive #> 3895 2020 <NA> RB <NA> 47 Inactive #> 3896 2020 <NA> RB <NA> 38 Inactive #> 3897 2020 <NA> RB <NA> NA Inactive #> 3898 2020 <NA> RB <NA> 34 Inactive #> 3899 2020 <NA> RB <NA> 22 Inactive #> 3900 2020 <NA> RB <NA> 38 Inactive #> 3901 2020 <NA> RB <NA> 36 Inactive #> 3902 2020 <NA> RB <NA> NA Inactive #> 3903 2020 <NA> RB <NA> 24 Inactive #> 3904 2020 <NA> RB <NA> 29 Active #> 3905 2020 <NA> RB RB NA Inactive #> 3906 2020 <NA> RB <NA> 36 Inactive #> 3907 2020 <NA> RB <NA> 35 Inactive #> 3908 2020 <NA> RB <NA> 37 Active #> 3909 2020 <NA> RB <NA> 44 Inactive #> 3910 2020 <NA> RB <NA> 32 Inactive #> 3911 2020 <NA> RB <NA> 48 Inactive #> 3912 2020 <NA> RB RB NA Inactive #> 3913 2020 <NA> RB <NA> 37 Inactive #> 3914 2020 <NA> RB <NA> 38 Active #> 3915 2020 <NA> RB <NA> 35 Inactive #> 3916 2020 <NA> RB <NA> 34 Inactive #> 3917 2020 <NA> RB <NA> 37 Inactive #> 3918 2020 <NA> RB <NA> 22 Active #> 3919 2020 <NA> RB <NA> 89 Inactive #> 3920 2020 <NA> RB <NA> 41 Inactive #> 3921 2020 <NA> RB RB 35 Inactive #> 3922 2020 <NA> RB RB 41 Inactive #> 3923 2020 <NA> RB <NA> 43 Inactive #> 3924 2020 <NA> RB <NA> 45 Inactive #> 3925 2020 <NA> RB RB NA Inactive #> 3926 2020 <NA> RB RB 22 Active #> 3927 2020 <NA> RB <NA> 38 Inactive #> 3928 2020 <NA> RB <NA> 39 Inactive #> 3929 2020 <NA> RB RB NA Inactive #> 3930 2020 <NA> RB <NA> 26 Inactive #> 3931 2020 <NA> RB <NA> 39 Inactive #> 3932 2020 <NA> RB <NA> 20 Inactive #> 3933 2020 <NA> RB <NA> 40 Inactive #> 3934 2020 <NA> RB <NA> NA Inactive #> 3935 2020 <NA> RB <NA> 27 Inactive #> 3936 2020 <NA> RB RB 56 Inactive #> 3937 2020 <NA> RB RB NA Inactive #> 3938 2020 <NA> RB <NA> 43 Inactive #> 3939 2020 <NA> RB <NA> 22 Injured Reserve #> 3940 2020 <NA> S <NA> 35 Inactive #> 3941 2020 <NA> S <NA> 35 Inactive #> 3942 2020 <NA> S <NA> NA Inactive #> 3943 2020 <NA> S <NA> 22 Inactive #> 3944 2020 <NA> SS <NA> 47 Inactive #> 3945 2020 <NA> SS SS 38 Active #> 3946 2020 <NA> SS <NA> 35 Inactive #> 3947 2020 <NA> SS <NA> 37 Inactive #> 3948 2020 <NA> SS <NA> 36 Inactive #> 3949 2020 <NA> SS SS 23 Active #> 3950 2020 <NA> SS SS 27 Active #> 3951 2020 <NA> SS <NA> NA Inactive #> 3952 2020 <NA> SS <NA> 39 Inactive #> 3953 2020 <NA> SS <NA> 33 Inactive #> 3954 2020 <NA> SS <NA> 29 Inactive #> 3955 2020 <NA> SS <NA> NA Inactive #> 3956 2020 <NA> SS <NA> 28 Injured Reserve #> 3957 2020 <NA> SS <NA> 40 Injured Reserve #> 3958 2020 <NA> SS <NA> 37 Inactive #> 3959 2020 <NA> SS <NA> 21 Inactive #> 3960 2020 <NA> SS <NA> 35 Inactive #> 3961 2020 <NA> SS <NA> NA Inactive #> 3962 2020 <NA> SS SS NA Inactive #> 3963 2020 <NA> SS <NA> 42 Active #> 3964 2020 <NA> SS SS NA Inactive #> 3965 2020 <NA> SS <NA> 36 Active #> 3966 2020 <NA> SS SS NA Inactive #> 3967 2020 <NA> SS <NA> 42 Inactive #> 3968 2020 <NA> SS <NA> 43 Inactive #> 3969 2020 <NA> SS <NA> 32 Inactive #> 3970 2020 <NA> SS <NA> 45 Inactive #> 3971 2020 <NA> SS <NA> 30 Inactive #> 3972 2020 <NA> SS <NA> 47 Inactive #> 3973 2020 <NA> SS <NA> NA Inactive #> 3974 2020 <NA> SS <NA> 20 Active #> 3975 2020 <NA> SS <NA> 35 Active #> 3976 2020 <NA> SS <NA> 14 Inactive #> 3977 2020 <NA> SS <NA> 38 Inactive #> 3978 2020 <NA> SS SS NA Inactive #> 3979 2020 <NA> SS <NA> NA Inactive #> 3980 2020 <NA> SS <NA> NA Inactive #> 3981 2020 <NA> SS <NA> 46 Inactive #> 3982 2020 <NA> SS SS 25 Active #> 3983 2020 <NA> SS <NA> 30 Inactive #> 3984 2020 <NA> SS <NA> 23 Inactive #> 3985 2020 <NA> SS FS NA Inactive #> 3986 2020 <NA> SS <NA> 38 Active #> 3987 2020 <NA> SS SS 42 Active #> 3988 2020 <NA> SS <NA> 32 Active #> 3989 2020 <NA> SS <NA> 37 Inactive #> 3990 2020 <NA> SS <NA> 37 Inactive #> 3991 2020 <NA> SS <NA> 49 Inactive #> 3992 2020 <NA> SS <NA> 39 Inactive #> 3993 2020 <NA> SS <NA> 47 Inactive #> 3994 2020 <NA> SS <NA> 39 Inactive #> 3995 2020 <NA> SS <NA> 32 Inactive #> 3996 2020 <NA> SS <NA> NA Inactive #> 3997 2020 <NA> SS <NA> 35 Active #> 3998 2020 <NA> SS <NA> 39 Inactive #> 3999 2020 <NA> SS <NA> 31 Inactive #> 4000 2020 <NA> SS <NA> 32 Inactive #> 4001 2020 <NA> SS <NA> 26 Active #> 4002 2020 <NA> SS <NA> 46 Inactive #> 4003 2020 <NA> SS <NA> 29 Active #> 4004 2020 <NA> SS <NA> 39 Inactive #> 4005 2020 <NA> SS <NA> 39 Inactive #> 4006 2020 <NA> SS <NA> 21 Active #> 4007 2020 <NA> SS <NA> 43 Inactive #> 4008 2020 <NA> SS <NA> 42 Inactive #> 4009 2020 <NA> SS <NA> 22 Active #> 4010 2020 <NA> SS <NA> NA Inactive #> 4011 2020 <NA> T <NA> 74 Active #> 4012 2020 <NA> T <NA> 65 Injured Reserve #> 4013 2020 <NA> T <NA> 79 Active #> 4014 2020 <NA> T <NA> 77 Active #> 4015 2020 <NA> T <NA> 75 Inactive #> 4016 2020 <NA> T <NA> 66 Inactive #> 4017 2020 <NA> T <NA> 79 Inactive #> 4018 2020 <NA> T <NA> 79 Active #> 4019 2020 <NA> T <NA> 76 Injured Reserve #> 4020 2020 <NA> T <NA> 77 Active #> 4021 2020 <NA> T <NA> 60 Active #> 4022 2020 <NA> T <NA> 78 Active #> 4023 2020 <NA> T <NA> 74 Active #> 4024 2020 <NA> T <NA> 74 Inactive #> 4025 2020 <NA> T <NA> 76 Inactive #> 4026 2020 <NA> T <NA> 76 Inactive #> 4027 2020 <NA> T <NA> 73 Active #> 4028 2020 <NA> T <NA> 78 Active #> 4029 2020 <NA> T LT 77 Active #> 4030 2020 <NA> T <NA> 63 Inactive #> 4031 2020 <NA> T <NA> 72 Active #> 4032 2020 <NA> T <NA> 78 Active #> 4033 2020 <NA> T <NA> 61 Injured Reserve #> 4034 2020 <NA> T LT 70 Active #> 4035 2020 <NA> T <NA> 60 Active #> 4036 2020 <NA> T <NA> 79 Inactive #> 4037 2020 <NA> T <NA> 76 Active #> 4038 2020 <NA> T <NA> 65 Inactive #> 4039 2020 <NA> T <NA> 78 Inactive #> 4040 2020 <NA> T LT 74 Active #> 4041 2020 <NA> TE <NA> NA Inactive #> 4042 2020 <NA> TE TE 82 Inactive #> 4043 2020 <NA> TE <NA> 89 Active #> 4044 2020 <NA> TE <NA> 86 Inactive #> 4045 2020 <NA> TE TE NA Inactive #> 4046 2020 <NA> TE <NA> 82 Inactive #> 4047 2020 <NA> TE <NA> 82 Inactive #> 4048 2020 <NA> TE <NA> 86 Inactive #> 4049 2020 <NA> TE <NA> NA Inactive #> 4050 2020 <NA> TE <NA> 48 Inactive #> 4051 2020 <NA> TE TE 41 Inactive #> 4052 2020 <NA> TE <NA> NA Inactive #> 4053 2020 <NA> TE <NA> 82 Inactive #> 4054 2020 <NA> TE <NA> 85 Active #> 4055 2020 <NA> TE <NA> 83 Inactive #> 4056 2020 <NA> TE TE NA Inactive #> 4057 2020 <NA> TE <NA> 45 Injured Reserve #> 4058 2020 <NA> TE <NA> 85 Active #> 4059 2020 <NA> TE <NA> NA Inactive #> 4060 2020 <NA> TE <NA> 82 Inactive #> 4061 2020 <NA> TE <NA> 85 Active #> 4062 2020 <NA> TE <NA> 47 Active #> 4063 2020 <NA> TE <NA> NA Inactive #> 4064 2020 <NA> TE <NA> 87 Inactive #> 4065 2020 <NA> TE <NA> 46 Inactive #> 4066 2020 <NA> TE <NA> 80 Inactive #> 4067 2020 <NA> TE <NA> 84 Inactive #> 4068 2020 <NA> TE <NA> 86 Inactive #> 4069 2020 <NA> TE <NA> 85 Active #> 4070 2020 <NA> TE <NA> 86 Inactive #> 4071 2020 <NA> TE <NA> 88 Injured Reserve #> 4072 2020 <NA> TE <NA> 87 Inactive #> 4073 2020 <NA> TE TE NA Inactive #> 4074 2020 <NA> TE <NA> 40 Inactive #> 4075 2020 <NA> TE TE 86 Inactive #> 4076 2020 <NA> TE <NA> 86 Active #> 4077 2020 <NA> TE <NA> 88 Inactive #> 4078 2020 <NA> TE <NA> 83 Inactive #> 4079 2020 <NA> TE TE 46 Inactive #> 4080 2020 <NA> TE <NA> 85 Inactive #> 4081 2020 <NA> TE <NA> 88 Active #> 4082 2020 <NA> TE <NA> 87 Inactive #> 4083 2020 <NA> TE <NA> 84 Active #> 4084 2020 <NA> TE <NA> 85 Inactive #> 4085 2020 <NA> TE <NA> 81 Inactive #> 4086 2020 <NA> TE TE 85 Active #> 4087 2020 <NA> TE <NA> 83 Active #> 4088 2020 <NA> TE <NA> 84 Inactive #> 4089 2020 <NA> TE <NA> 43 Inactive #> 4090 2020 <NA> TE <NA> 89 Inactive #> 4091 2020 <NA> TE <NA> 83 Injured Reserve #> 4092 2020 <NA> TE TE 42 Inactive #> 4093 2020 <NA> TE TE 84 Inactive #> 4094 2020 <NA> TE <NA> NA Inactive #> 4095 2020 <NA> TE <NA> 88 Inactive #> 4096 2020 <NA> TE TE 45 Inactive #> 4097 2020 <NA> TE <NA> 46 Inactive #> 4098 2020 <NA> TE <NA> 81 Inactive #> 4099 2020 <NA> TE <NA> 85 Inactive #> 4100 2020 <NA> TE <NA> 86 Inactive #> 4101 2020 <NA> TE <NA> 87 Inactive #> 4102 2020 <NA> TE TE 86 Inactive #> 4103 2020 <NA> TE <NA> 84 Inactive #> 4104 2020 <NA> TE <NA> NA Inactive #> 4105 2020 <NA> TE <NA> 88 Active #> 4106 2020 <NA> TE <NA> 48 Inactive #> 4107 2020 <NA> TE <NA> 84 Active #> 4108 2020 <NA> TE TE 88 Active #> 4109 2020 <NA> TE <NA> 89 Injured Reserve #> 4110 2020 <NA> TE <NA> 49 Inactive #> 4111 2020 <NA> TE <NA> 48 Inactive #> 4112 2020 <NA> TE <NA> 86 Inactive #> 4113 2020 <NA> TE TE NA Inactive #> 4114 2020 <NA> TE <NA> 89 Inactive #> 4115 2020 <NA> TE <NA> 82 Active #> 4116 2020 <NA> TE <NA> 86 Inactive #> 4117 2020 <NA> TE <NA> 83 Inactive #> 4118 2020 <NA> TE <NA> 49 Inactive #> 4119 2020 <NA> TE <NA> 82 Active #> 4120 2020 <NA> TE <NA> 87 Inactive #> 4121 2020 <NA> TE TE 85 Inactive #> 4122 2020 <NA> TE <NA> 83 Active #> 4123 2020 <NA> TE <NA> 89 Inactive #> 4124 2020 <NA> TE <NA> 85 Inactive #> 4125 2020 <NA> TE <NA> 87 Inactive #> 4126 2020 <NA> TE <NA> 85 Active #> 4127 2020 <NA> TE <NA> NA Inactive #> 4128 2020 <NA> TE <NA> 86 Inactive #> 4129 2020 <NA> TE <NA> 48 Inactive #> 4130 2020 <NA> TE <NA> 88 Active #> 4131 2020 <NA> TE <NA> 86 Inactive #> 4132 2020 <NA> TE <NA> 82 Inactive #> 4133 2020 <NA> TE TE 58 Inactive #> 4134 2020 <NA> TE <NA> 81 Inactive #> 4135 2020 <NA> TE <NA> 41 Active #> 4136 2020 <NA> TE TE 84 Inactive #> 4137 2020 <NA> TE <NA> 81 Inactive #> 4138 2020 <NA> TE <NA> NA Inactive #> 4139 2020 <NA> TE TE NA Inactive #> 4140 2020 <NA> TE <NA> 89 Active #> 4141 2020 <NA> TE <NA> 81 Inactive #> 4142 2020 <NA> TE <NA> 89 Inactive #> 4143 2020 <NA> TE TE NA Inactive #> 4144 2020 <NA> TE <NA> 48 Inactive #> 4145 2020 <NA> TE <NA> 48 Inactive #> 4146 2020 <NA> TE <NA> 42 Inactive #> 4147 2020 <NA> TE <NA> 87 Inactive #> 4148 2020 <NA> TE <NA> 82 Inactive #> 4149 2020 <NA> TE <NA> 80 Inactive #> 4150 2020 <NA> TE <NA> 83 Inactive #> 4151 2020 <NA> TE <NA> 84 Active #> 4152 2020 <NA> TE <NA> 89 Inactive #> 4153 2020 <NA> TE TE 88 Inactive #> 4154 2020 <NA> TE TE 87 Active #> 4155 2020 <NA> TE TE NA Inactive #> 4156 2020 <NA> TE <NA> 80 Inactive #> 4157 2020 <NA> TE <NA> 49 Inactive #> 4158 2020 <NA> TE <NA> 87 Active #> 4159 2020 <NA> TE <NA> NA Inactive #> 4160 2020 <NA> WR LWR NA Inactive #> 4161 2020 <NA> WR <NA> 17 Inactive #> 4162 2020 <NA> WR RWR 14 Inactive #> 4163 2020 <NA> WR RWR 88 Inactive #> 4164 2020 <NA> WR <NA> 88 Inactive #> 4165 2020 <NA> WR <NA> 82 Inactive #> 4166 2020 <NA> WR <NA> 18 Active #> full_name first_name last_name #> 1 Mason Cole Mason Cole #> 2 Lamont Gaillard Lamont Gaillard #> 3 Byron Murphy Byron Murphy #> 4 Prince Amukamara Prince Amukamara #> 5 Jace Whittaker Jace Whittaker #> 6 Kevin Peterson Kevin Peterson #> 7 Johnathan Joseph Johnathan Joseph #> 8 Robert Alford Robert Alford #> 9 Patrick Peterson Patrick Peterson #> 10 Dre Kirkpatrick Dre Kirkpatrick #> 11 Chris Miller Chris Miller #> 12 Picasso Nelson Picasso Nelson #> 13 Jalen Thompson Jalen Thompson #> 14 Charles Washington Charles Washington #> 15 Chris Banjo Chris Banjo #> 16 Shareef Miller Shareef Miller #> 17 Michael Dogbe Michael Dogbe #> 18 Stacy McGee Stacy McGee #> 19 Josh Mauro Josh Mauro #> 20 David Parry David Parry #> 21 Angelo Blackson Angelo Blackson #> 22 Leki Fotu Leki Fotu #> 23 Zach Allen Zach Allen #> 24 Jordan Phillips Jordan Phillips #> 25 P.J. Johnson P.J. Johnson #> 26 Kentrell Brice Kentrell Brice #> 27 J.R. Sweezy J.R. Sweezy #> 28 Deion Calhoun Deion Calhoun #> 29 Sean Harlow Sean Harlow #> 30 Justin Pugh Justin Pugh #> 31 Koda Martin Koda Martin #> 32 Max Garcia Max Garcia #> 33 Mike Nugent Mike Nugent #> 34 Zane Gonzalez Zane Gonzalez #> 35 Brett Maher Brett Maher #> 36 Dennis Gardeck Dennis Gardeck #> 37 Devon Kennard Devon Kennard #> 38 Stephone Anthony Stephone Anthony #> 39 Ezekiel Turner Ezekiel Turner #> 40 Kylie Fitts Kylie Fitts #> 41 Jordan Hicks Jordan Hicks #> 42 Haason Reddick Haason Reddick #> 43 Tanner Vallejo Tanner Vallejo #> 44 Markus Golden Markus Golden #> 45 Jamal Carter Jamal Carter #> 46 De'Vondre Campbell De'Vondre Campbell #> 47 Chandler Jones Chandler Jones #> 48 Reggie Walker Reggie Walker #> 49 Isaiah Irving Isaiah Irving #> 50 Terrance Smith Terrance Smith #> 51 Evan Weaver Evan Weaver #> 52 Isaiah Simmons Isaiah Simmons #> 53 Aaron Brewer Aaron Brewer #> 54 Corey Peters Corey Peters #> 55 Rashard Lawrence Rashard Lawrence #> 56 Domata Peko Domata Peko #> 57 Andy Lee Andy Lee #> 58 Kyler Murray Kyler Murray #> 59 Chris Streveler Chris Streveler #> 60 Brett Hundley Brett Hundley #> 61 Kenyan Drake Kenyan Drake #> 62 Chase Edmonds Chase Edmonds #> 63 Khalfani Muhammad Khalfani Muhammad #> 64 Eno Benjamin Eno Benjamin #> 65 D.J. Foster D.J. Foster #> 66 Jonathan Ward Jonathan Ward #> 67 Josh Shaw Josh Shaw #> 68 Deionte Thompson Deionte Thompson #> 69 Budda Baker Budda Baker #> 70 Josh Jones Josh Jones #> 71 Kelvin Beachum Kelvin Beachum #> 72 Joshua Miles Joshua Miles #> 73 Justin Murray Justin Murray #> 74 Marcus Gilbert Marcus Gilbert #> 75 D.J. Humphries D.J. Humphries #> 76 Darrell Daniels Darrell Daniels #> 77 Ian Bunting Ian Bunting #> 78 Seth DeValve Seth DeValve #> 79 Justin Johnson Justin Johnson #> 80 Maxx Williams Maxx Williams #> 81 Dan Arnold Dan Arnold #> 82 Krishawn Hogan Krishawn Hogan #> 83 KeeSean Johnson KeeSean Johnson #> 84 Isaac Whitney Isaac Whitney #> 85 Jaron Brown Jaron Brown #> 86 Andy Isabella Andy Isabella #> 87 DeAndre Hopkins DeAndre Hopkins #> 88 A.J. Richardson A.J. Richardson #> 89 JoJo Ward JoJo Ward #> 90 Rico Gafford Rico Gafford #> 91 Larry Fitzgerald Larry Fitzgerald #> 92 Christian Kirk Christian Kirk #> 93 Trent Sherfield Trent Sherfield #> 94 Alex Mack Alex Mack #> 95 Willie Wright Willie Wright #> 96 Justin McCray Justin McCray #> 97 Delrick Abrams Delrick Abrams #> 98 Darqueze Dennard Darqueze Dennard #> 99 Sharrod Neasman Sharrod Neasman #> 100 A.J. Terrell A.J. Terrell #> 101 Isaiah Oliver Isaiah Oliver #> 102 Tyler Hall Tyler Hall #> 103 Kendall Sheffield Kendall Sheffield #> 104 Ricardo Allen Ricardo Allen #> 105 Blidi Wreh-Wilson Blidi Wreh-Wilson #> 106 Chris Williamson Chris Williamson #> 107 Jaylinn Hawkins Jaylinn Hawkins #> 108 Keanu Neal Keanu Neal #> 109 Steven Means Steven Means #> 110 Dante Fowler Dante Fowler #> 111 Jacob Tuioti-Mariner Jacob Tuioti-Mariner #> 112 Allen Bailey Allen Bailey #> 113 Deadrin Senat Deadrin Senat #> 114 Chris Slayton Chris Slayton #> 115 Grady Jarrett Grady Jarrett #> 116 John Cominsky John Cominsky #> 117 Tyeler Davison Tyeler Davison #> 118 Marlon Davidson Marlon Davidson #> 119 Keith Smith Keith Smith #> 120 James Carpenter James Carpenter #> 121 Willie Beavers Willie Beavers #> 122 Matt Hennessy Matt Hennessy #> 123 Chris Lindstrom Chris Lindstrom #> 124 Younghoe Koo Younghoe Koo #> 125 Elliott Fry Elliott Fry #> 126 LaRoy Reynolds LaRoy Reynolds #> 127 Mykal Walker Mykal Walker #> 128 Deion Jones Deion Jones #> 129 Pita Taumoepenu Pita Taumoepenu #> 130 Charles Harris Charles Harris #> 131 Jake Carlock Jake Carlock #> 132 Edmond Robinson Edmond Robinson #> 133 Foyesade Oluokun Foyesade Oluokun #> 134 Josh Harris Josh Harris #> 135 Sterling Hofrichter Sterling Hofrichter #> 136 Matt Ryan Matt Ryan #> 137 Kurt Benkert Kurt Benkert #> 138 Matt Schaub Matt Schaub #> 139 Tony Brooks-James Tony Brooks-James #> 140 Todd Gurley Todd Gurley #> 141 Ito Smith Ito Smith #> 142 Brian Hill Brian Hill #> 143 Qadree Ollison Qadree Ollison #> 144 Damontae Kazee Damontae Kazee #> 145 T.J. Green T.J. Green #> 146 J.J. Wilcox J.J. Wilcox #> 147 Matt Gono Matt Gono #> 148 Jake Matthews Jake Matthews #> 149 John Wetzel John Wetzel #> 150 Kaleb McGary Kaleb McGary #> 151 Luke Stocker Luke Stocker #> 152 Hayden Hurst Hayden Hurst #> 153 Jaeden Graham Jaeden Graham #> 154 Calvin Ridley Calvin Ridley #> 155 Olamide Zaccheaus Olamide Zaccheaus #> 156 Greg Dortch Greg Dortch #> 157 Juwan Green Juwan Green #> 158 Julio Jones Julio Jones #> 159 Chris Rowland Chris Rowland #> 160 Christian Blake Christian Blake #> 161 Russell Gage Russell Gage #> 162 Laquon Treadwell Laquon Treadwell #> 163 Brandon Powell Brandon Powell #> 164 Devin Gray Devin Gray #> 165 Greg Mancz Greg Mancz #> 166 Patrick Mekari Patrick Mekari #> 167 Matt Skura Matt Skura #> 168 Trystan Colon-Castillo Trystan Colon-Castillo #> 169 Marcus Peters Marcus Peters #> 170 Pierre Desir Pierre Desir #> 171 Tavon Young Tavon Young #> 172 Jimmy Smith Jimmy Smith #> 173 Khalil Dorsey Khalil Dorsey #> 174 Iman Marshall Iman Marshall #> 175 Marlon Humphrey Marlon Humphrey #> 176 Anthony Averett Anthony Averett #> 177 Davontae Harris Davontae Harris #> 178 Chris Westry Chris Westry #> 179 Nigel Warrior Nigel Warrior #> 180 Nate Brooks Nate Brooks #> 181 Jayron Kearse Jayron Kearse #> 182 DeShon Elliott DeShon Elliott #> 183 Jihad Ward Jihad Ward #> 184 Chauncey Rivers Chauncey Rivers #> 185 Yannick Ngakoue Yannick Ngakoue #> 186 Derek Wolfe Derek Wolfe #> 187 Justin Madubuike Justin Madubuike #> 188 Aaron Crawford Aaron Crawford #> 189 Braxton Hoyett Braxton Hoyett #> 190 Broderick Washington Broderick Washington #> 191 Calais Campbell Calais Campbell #> 192 Kalil Morris Kalil Morris #> 193 Tommy Bohanon Tommy Bohanon #> 194 Patrick Ricard Patrick Ricard #> 195 Marcus Gilchrist Marcus Gilchrist #> 196 Ben Powers Ben Powers #> 197 C.J. Toogood C.J. Toogood #> 198 Ben Bredeson Ben Bredeson #> 199 Parker Ehinger Parker Ehinger #> 200 D.J. Fluker D.J. Fluker #> 201 Tyre Phillips Tyre Phillips #> 202 Bradley Bozeman Bradley Bozeman #> 203 Justin Tucker Justin Tucker #> 204 Otaro Alaka Otaro Alaka #> 205 Kristian Welch Kristian Welch #> 206 Pernell McPhee Pernell McPhee #> 207 Patrick Queen Patrick Queen #> 208 Aaron Adeoye Aaron Adeoye #> 209 Jaylon Ferguson Jaylon Ferguson #> 210 Tyus Bowser Tyus Bowser #> 211 Malik Harrison Malik Harrison #> 212 James Crawford James Crawford #> 213 L.J. Fort L.J. Fort #> 214 Matt Judon Matt Judon #> 215 Chris Board Chris Board #> 216 Nick Moore Nick Moore #> 217 Morgan Cox Morgan Cox #> 218 Brandon Williams Brandon Williams #> 219 Justin Ellis Justin Ellis #> 220 Johnny Townsend Johnny Townsend #> 221 Sam Koch Sam Koch #> 222 Tyler Huntley Tyler Huntley #> 223 Lamar Jackson Lamar Jackson #> 224 Robert Griffin Robert Griffin #> 225 Trace McSorley Trace McSorley #> 226 Mark Ingram Mark Ingram #> 227 Ty'Son Williams Ty'Son Williams #> 228 Gus Edwards Gus Edwards #> 229 J.K. Dobbins J.K. Dobbins #> 230 Justice Hill Justice Hill #> 231 Jordan Richards Jordan Richards #> 232 Anthony Levine Anthony Levine #> 233 Chuck Clark Chuck Clark #> 234 R.J. Prince R.J. Prince #> 235 Jordan Mills Jordan Mills #> 236 Andre Smith Andre Smith #> 237 Ronnie Stanley Ronnie Stanley #> 238 Orlando Brown Orlando Brown #> 239 Jake Rodgers Jake Rodgers #> 240 Jacob Breeland Jacob Breeland #> 241 Mark Andrews Mark Andrews #> 242 Eli Wolf Eli Wolf #> 243 Eric Tomlinson Eric Tomlinson #> 244 Nick Boyle Nick Boyle #> 245 Xavier Grimble Xavier Grimble #> 246 Miles Boykin Miles Boykin #> 247 Antoine Wesley Antoine Wesley #> 248 Dez Bryant Dez Bryant #> 249 Chris Moore Chris Moore #> 250 James Proche James Proche #> 251 DeAndrew White DeAndrew White #> 252 Marquise Brown Marquise Brown #> 253 Deon Cain Deon Cain #> 254 Jaylon Moore Jaylon Moore #> 255 De'Anthony Thomas De'Anthony Thomas #> 256 Binjimen Victor Binjimen Victor #> 257 Devin Duvernay Devin Duvernay #> 258 Willie Snead Willie Snead #> 259 Mitch Morse Mitch Morse #> 260 Ryan Bates Ryan Bates #> 261 Jordan Devey Jordan Devey #> 262 Tre'Davious White Tre'Davious White #> 263 Josh Norman Josh Norman #> 264 Duke Thomas Duke Thomas #> 265 Lafayette Pitts Lafayette Pitts #> 266 Dane Jackson Dane Jackson #> 267 Cameron Lewis Cameron Lewis #> 268 E.J. Gaines E.J. Gaines #> 269 Levi Wallace Levi Wallace #> 270 Siran Neal Siran Neal #> 271 Taron Johnson Taron Johnson #> 272 Jaquan Johnson Jaquan Johnson #> 273 Micah Hyde Micah Hyde #> 274 Darryl Johnson Darryl Johnson #> 275 Jerry Hughes Jerry Hughes #> 276 Trent Murphy Trent Murphy #> 277 A.J. Epenesa A.J. Epenesa #> 278 Mike Love Mike Love #> 279 Mario Addison Mario Addison #> 280 Bryan Cox Bryan Cox #> 281 Star Lotulelei Star Lotulelei #> 282 Quinton Jefferson Quinton Jefferson #> 283 Harrison Phillips Harrison Phillips #> 284 Brandin Bryant Brandin Bryant #> 285 Quindarius Thagard Quindarius Thagard #> 286 Vernon Butler Vernon Butler #> 287 Justin Zimmer Justin Zimmer #> 288 Ed Oliver Ed Oliver #> 289 Jon Feliciano Jon Feliciano #> 290 Brian Winters Brian Winters #> 291 Ike Boettger Ike Boettger #> 292 Tyler Bass Tyler Bass #> 293 Tristan Vizcaino Tristan Vizcaino #> 294 Tremaine Edmunds Tremaine Edmunds #> 295 Andre Smith Andre Smith #> 296 Del'Shawn Phillips Del'Shawn Phillips #> 297 Darron Lee Darron Lee #> 298 Ahmad Gooden Ahmad Gooden #> 299 Tyrel Dodson Tyrel Dodson #> 300 A.J. Klein A.J. Klein #> 301 Tyler Matakevich Tyler Matakevich #> 302 Deon Lacey Deon Lacey #> 303 Matt Milano Matt Milano #> 304 Reid Ferguson Reid Ferguson #> 305 Corey Bojorquez Corey Bojorquez #> 306 Matt Barkley Matt Barkley #> 307 Jake Fromm Jake Fromm #> 308 Davis Webb Davis Webb #> 309 Josh Allen Josh Allen #> 310 Zack Moss Zack Moss #> 311 T.J. Yeldon T.J. Yeldon #> 312 Devonta Freeman Devonta Freeman #> 313 Taiwan Jones Taiwan Jones #> 314 Christian Wade Christian Wade #> 315 Antonio Williams Antonio Williams #> 316 Devin Singletary Devin Singletary #> 317 Jordan Poyer Jordan Poyer #> 318 Dean Marlowe Dean Marlowe #> 319 Josh Thomas Josh Thomas #> 320 Trey Adams Trey Adams #> 321 Cody Ford Cody Ford #> 322 Dion Dawkins Dion Dawkins #> 323 Daryl Williams Daryl Williams #> 324 Victor Salako Victor Salako #> 325 Ty Nsekhe Ty Nsekhe #> 326 Dawson Knox Dawson Knox #> 327 Tyler Kroft Tyler Kroft #> 328 Nate Becker Nate Becker #> 329 Reggie Gilliam Reggie Gilliam #> 330 Lee Smith Lee Smith #> 331 Tommy Sweeney Tommy Sweeney #> 332 Duke Williams Duke Williams #> 333 Isaiah McKenzie Isaiah McKenzie #> 334 Jake Kumerow Jake Kumerow #> 335 Stefon Diggs Stefon Diggs #> 336 John Brown John Brown #> 337 Tanner Gentry Tanner Gentry #> 338 Kenny Stills Kenny Stills #> 339 Cole Beasley Cole Beasley #> 340 Andre Roberts Andre Roberts #> 341 Gabriel Davis Gabriel Davis #> 342 Isaiah Hodgins Isaiah Hodgins #> 343 Matt Paradis Matt Paradis #> 344 Tyler Larsen Tyler Larsen #> 345 Sam Tecklenburg Sam Tecklenburg #> 346 Donte Jackson Donte Jackson #> 347 Rasul Douglas Rasul Douglas #> 348 Trumaine Johnson Trumaine Johnson #> 349 Troy Pride Troy Pride #> 350 Corn Elder Corn Elder #> 351 Stantley Thomas-Oliver Stantley Thomas-Oliver #> 352 Natrell Jamerson Natrell Jamerson #> 353 Eli Apple Eli Apple #> 354 Kenny Robinson Kenny Robinson #> 355 Myles Hartsfield Myles Hartsfield #> 356 Sean Chandler Sean Chandler #> 357 Tre Boston Tre Boston #> 358 Derrek Thomas Derrek Thomas #> 359 Jeremy Chinn Jeremy Chinn #> 360 Greg Roberts Greg Roberts #> 361 Marquis Haynes Marquis Haynes #> 362 Austin Larkin Austin Larkin #> 363 Christian Miller Christian Miller #> 364 Stephen Weatherly Stephen Weatherly #> 365 Yetur Gross-Matos Yetur Gross-Matos #> 366 Brian Burns Brian Burns #> 367 Jonathan Wynn Jonathan Wynn #> 368 Efe Obada Efe Obada #> 369 Woodrow Hamilton Woodrow Hamilton #> 370 Zach Kerr Zach Kerr #> 371 Derrick Brown Derrick Brown #> 372 Mike Panasiuk Mike Panasiuk #> 373 Bruce Hector Bruce Hector #> 374 Kawann Short Kawann Short #> 375 Bravvion Roy Bravvion Roy #> 376 Alex Armah Alex Armah #> 377 Aaron Monteiro Aaron Monteiro #> 378 John Miller John Miller #> 379 Mike Horton Mike Horton #> 380 Dennis Daley Dennis Daley #> 381 Chris Reed Chris Reed #> 382 Michael Schofield Michael Schofield #> 383 Joey Slye Joey Slye #> 384 Jordan Mack Jordan Mack #> 385 Luke Kuechly Luke Kuechly #> 386 Tahir Whitehead Tahir Whitehead #> 387 Julian Stanford Julian Stanford #> 388 Shaq Thompson Shaq Thompson #> 389 Adarius Taylor Adarius Taylor #> 390 Jermaine Carter Jermaine Carter #> 391 Clay Johnston Clay Johnston #> 392 Chris Orr Chris Orr #> 393 Daniel Bituli Daniel Bituli #> 394 J.J. Jansen J.J. Jansen #> 395 Michael Palardy Michael Palardy #> 396 Joseph Charlton Joseph Charlton #> 397 Teddy Bridgewater Teddy Bridgewater #> 398 Phillip Walker Phillip Walker #> 399 Will Grier Will Grier #> 400 Tommy Stevens Tommy Stevens #> 401 Reggie Bonnafon Reggie Bonnafon #> 402 Trenton Cannon Trenton Cannon #> 403 Rodney Smith Rodney Smith #> 404 Christian McCaffrey Christian McCaffrey #> 405 Mike Davis Mike Davis #> 406 Sam Franklin Sam Franklin #> 407 Juston Burris Juston Burris #> 408 Trenton Scott Trenton Scott #> 409 Greg Little Greg Little #> 410 Taylor Moton Taylor Moton #> 411 Russell Okung Russell Okung #> 412 Matt Kaskey Matt Kaskey #> 413 Ian Thomas Ian Thomas #> 414 Colin Thompson Colin Thompson #> 415 Stephen Sullivan Stephen Sullivan #> 416 Giovanni Ricci Giovanni Ricci #> 417 Chris Manhertz Chris Manhertz #> 418 Amara Darboh Amara Darboh #> 419 Shelton Gibson Shelton Gibson #> 420 Omar Bayless Omar Bayless #> 421 Brandon Zylstra Brandon Zylstra #> 422 Pharoh Cooper Pharoh Cooper #> 423 Ishmael Hyman Ishmael Hyman #> 424 Robby Anderson Robby Anderson #> 425 Curtis Samuel Curtis Samuel #> 426 Ventell Bryant Ventell Bryant #> 427 D.J. Moore D.J. Moore #> 428 Keith Kirkwood Keith Kirkwood #> 429 Marken Michel Marken Michel #> 430 Cody Whitehair Cody Whitehair #> 431 Sam Mustipher Sam Mustipher #> 432 Buster Skrine Buster Skrine #> 433 Duke Shelley Duke Shelley #> 434 Tre Roberson Tre Roberson #> 435 Xavier Crawford Xavier Crawford #> 436 Kyle Fuller Kyle Fuller #> 437 Jaylon Johnson Jaylon Johnson #> 438 Artie Burns Artie Burns #> 439 Sojourn Shelton Sojourn Shelton #> 440 Michael Joseph Michael Joseph #> 441 Kindle Vildor Kindle Vildor #> 442 Teez Tabor Teez Tabor #> 443 Tashaun Gipson Tashaun Gipson #> 444 Deon Bush Deon Bush #> 445 Marqui Christian Marqui Christian #> 446 DeAndre Houston-Carson DeAndre Houston-Carson #> 447 Ledarius Mack Ledarius Mack #> 448 Robert Quinn Robert Quinn #> 449 Lawrence Marshall Lawrence Marshall #> 450 Mario Edwards Mario Edwards #> 451 Roy Robertson-Harris Roy Robertson-Harris #> 452 Terry Beckner Terry Beckner #> 453 Brent Urban Brent Urban #> 454 Akiem Hicks Akiem Hicks #> 455 Lacale London Lacale London #> 456 James Daniels James Daniels #> 457 Dieter Eiselen Dieter Eiselen #> 458 Germain Ifedi Germain Ifedi #> 459 Lachavious Simmons Lachavious Simmons #> 460 Alex Bars Alex Bars #> 461 Eric Kush Eric Kush #> 462 Arlington Hambright Arlington Hambright #> 463 Cairo Santos Cairo Santos #> 464 Eddy Pineiro Eddy Pineiro #> 465 Roquan Smith Roquan Smith #> 466 Trevis Gipson Trevis Gipson #> 467 Joel Iyiegbuniwe Joel Iyiegbuniwe #> 468 Barkevious Mingo Barkevious Mingo #> 469 James Vaughters James Vaughters #> 470 Danny Trevathan Danny Trevathan #> 471 Josh Woods Josh Woods #> 472 Khalil Mack Khalil Mack #> 473 Devante Bond Devante Bond #> 474 Manti Te'o Manti Te'o #> 475 Patrick Scales Patrick Scales #> 476 John Jenkins John Jenkins #> 477 Bilal Nichols Bilal Nichols #> 478 Eddie Goldman Eddie Goldman #> 479 Daniel McCullers Daniel McCullers #> 480 Pat O'Donnell Pat O'Donnell #> 481 Mitchell Trubisky Mitchell Trubisky #> 482 Nick Foles Nick Foles #> 483 Tyler Bray Tyler Bray #> 484 Ryan Nall Ryan Nall #> 485 Artavis Pierce Artavis Pierce #> 486 Tarik Cohen Tarik Cohen #> 487 David Montgomery David Montgomery #> 488 Spencer Ware Spencer Ware #> 489 Eddie Jackson Eddie Jackson #> 490 Sherrick McManis Sherrick McManis #> 491 Jordan Lucas Jordan Lucas #> 492 Rashaad Coward Rashaad Coward #> 493 Jason Spriggs Jason Spriggs #> 494 Charles Leno Charles Leno #> 495 Bobby Massie Bobby Massie #> 496 Badara Traore Badara Traore #> 497 Darion Clark Darion Clark #> 498 J.P. Holtz J.P. Holtz #> 499 Cole Kmet Cole Kmet #> 500 Jesper Horsted Jesper Horsted #> 501 Jimmy Graham Jimmy Graham #> 502 Demetrius Harris Demetrius Harris #> 503 Ted Ginn Ted Ginn #> 504 DeAndre Carter DeAndre Carter #> 505 Jester Weah Jester Weah #> 506 Riley Ridley Riley Ridley #> 507 Javon Wims Javon Wims #> 508 Reggie Davis Reggie Davis #> 509 Rodney Adams Rodney Adams #> 510 Darnell Mooney Darnell Mooney #> 511 Dwayne Harris Dwayne Harris #> 512 Thomas Ives Thomas Ives #> 513 Anthony Miller Anthony Miller #> 514 Allen Robinson Allen Robinson #> 515 Cordarrelle Patterson Cordarrelle Patterson #> 516 Trey Hopkins Trey Hopkins #> 517 B.J. Finney B.J. Finney #> 518 Billy Price Billy Price #> 519 Trae Waynes Trae Waynes #> 520 Donnie Lewis Donnie Lewis #> 521 Winston Rose Winston Rose #> 522 Mackensie Alexander Mackensie Alexander #> 523 Tony Brown Tony Brown #> 524 Darius Phillips Darius Phillips #> 525 William Jackson William Jackson #> 526 Jalen Davis Jalen Davis #> 527 LeShaun Sims LeShaun Sims #> 528 Trajan Bandy Trajan Bandy #> 529 Brandon Wilson Brandon Wilson #> 530 Jessie Bates Jessie Bates #> 531 Carl Lawson Carl Lawson #> 532 Freedom Akinmoladun Freedom Akinmoladun #> 533 Sam Hubbard Sam Hubbard #> 534 Khalid Kareem Khalid Kareem #> 535 Amani Bledsoe Amani Bledsoe #> 536 Xavier Williams Xavier Williams #> 537 Mike Daniels Mike Daniels #> 538 Geno Atkins Geno Atkins #> 539 Margus Hunt Margus Hunt #> 540 Reginald McKenzie Reginald McKenzie #> 541 Quinton Spain Quinton Spain #> 542 Hakeem Adeniji Hakeem Adeniji #> 543 Alex Redmond Alex Redmond #> 544 Rod Taylor Rod Taylor #> 545 Keaton Sutherland Keaton Sutherland #> 546 Michael Jordan Michael Jordan #> 547 Xavier Su'a-Filo Xavier Su'a-Filo #> 548 Austin Seibert Austin Seibert #> 549 Randy Bullock Randy Bullock #> 550 Akeem Davis-Gaither Akeem Davis-Gaither #> 551 Germaine Pratt Germaine Pratt #> 552 Josh Bynes Josh Bynes #> 553 Markus Bailey Markus Bailey #> 554 Kendall Donnerson Kendall Donnerson #> 555 Keandre Jones Keandre Jones #> 556 Jordan Evans Jordan Evans #> 557 Logan Wilson Logan Wilson #> 558 Clark Harris Clark Harris #> 559 Dan Godsil Dan Godsil #> 560 Josh Tupou Josh Tupou #> 561 D.J. Reader D.J. Reader #> 562 Renell Wren Renell Wren #> 563 Christian Covington Christian Covington #> 564 Kevin Huber Kevin Huber #> 565 Kyle Shurmur Kyle Shurmur #> 566 Joe Burrow Joe Burrow #> 567 Ryan Finley Ryan Finley #> 568 Kevin Hogan Kevin Hogan #> 569 Brandon Allen Brandon Allen #> 570 Trayveon Williams Trayveon Williams #> 571 Jacques Patrick Jacques Patrick #> 572 Samaje Perine Samaje Perine #> 573 Joe Mixon Joe Mixon #> 574 Giovani Bernard Giovani Bernard #> 575 Shawn Williams Shawn Williams #> 576 Vonn Bell Vonn Bell #> 577 Trayvon Henderson Trayvon Henderson #> 578 Isaiah Prince Isaiah Prince #> 579 Jonah Williams Jonah Williams #> 580 Bobby Hart Bobby Hart #> 581 Fred Johnson Fred Johnson #> 582 O'Shea Dugas O'Shea Dugas #> 583 Cethan Carter Cethan Carter #> 584 Mason Schreck Mason Schreck #> 585 C.J. Uzomah C.J. Uzomah #> 586 Drew Sample Drew Sample #> 587 Mitchell Wilcox Mitchell Wilcox #> 588 A.J. Green A.J. Green #> 589 Stanley Morgan Stanley Morgan #> 590 Auden Tate Auden Tate #> 591 Scotty Washington Scotty Washington #> 592 Tee Higgins Tee Higgins #> 593 Alex Erickson Alex Erickson #> 594 Tyler Boyd Tyler Boyd #> 595 Mike Thomas Mike Thomas #> 596 Trenton Irwin Trenton Irwin #> 597 John Ross John Ross #> 598 J.C. Tretter J.C. Tretter #> 599 Javon Patterson Javon Patterson #> 600 Nick Harris Nick Harris #> 601 Anthony Fabiano Anthony Fabiano #> 602 Robert Jackson Robert Jackson #> 603 Greedy Williams Greedy Williams #> 604 Terrance Mitchell Terrance Mitchell #> 605 Brian Allen Brian Allen #> 606 Denzel Ward Denzel Ward #> 607 A.J. Green A.J. Green #> 608 Donovan Olumba Donovan Olumba #> 609 M.J. Stewart M.J. Stewart #> 610 Kevin Johnson Kevin Johnson #> 611 Tavierre Thomas Tavierre Thomas #> 612 Grant Delpit Grant Delpit #> 613 Tedric Thompson Tedric Thompson #> 614 Andrew Sendejo Andrew Sendejo #> 615 Sheldrick Redwine Sheldrick Redwine #> 616 Cameron Malveaux Cameron Malveaux #> 617 Porter Gustin Porter Gustin #> 618 Joe Jackson Joe Jackson #> 619 Curtis Weaver Curtis Weaver #> 620 Jamal Davis Jamal Davis #> 621 Myles Garrett Myles Garrett #> 622 George Obinna George Obinna #> 623 Olivier Vernon Olivier Vernon #> 624 Adrian Clayborn Adrian Clayborn #> 625 Jordan Elliott Jordan Elliott #> 626 Sheldon Richardson Sheldon Richardson #> 627 Vincent Taylor Vincent Taylor #> 628 Joey Ivie Joey Ivie #> 629 Sheldon Day Sheldon Day #> 630 Larry Ogunjobi Larry Ogunjobi #> 631 Johnny Stanton Johnny Stanton #> 632 Andy Janovich Andy Janovich #> 633 Joel Bitonio Joel Bitonio #> 634 Malcolm Pridgeon Malcolm Pridgeon #> 635 Wyatt Teller Wyatt Teller #> 636 Colby Gossett Colby Gossett #> 637 Cordel Iwuagwu Cordel Iwuagwu #> 638 Matthew McCrane Matthew McCrane #> 639 Cody Parkey Cody Parkey #> 640 Mack Wilson Mack Wilson #> 641 Malcolm Smith Malcolm Smith #> 642 Elijah Lee Elijah Lee #> 643 Jacob Phillips Jacob Phillips #> 644 Trevon Young Trevon Young #> 645 Sione Takitaki Sione Takitaki #> 646 B.J. Goodson B.J. Goodson #> 647 Tae Davis Tae Davis #> 648 Charley Hughlett Charley Hughlett #> 649 Andrew Billings Andrew Billings #> 650 Jamie Gillan Jamie Gillan #> 651 Kyle Lauletta Kyle Lauletta #> 652 Case Keenum Case Keenum #> 653 Baker Mayfield Baker Mayfield #> 654 John Kelly John Kelly #> 655 LJ Scott LJ Scott #> 656 Nick Chubb Nick Chubb #> 657 D'Ernest Johnson D'Ernest Johnson #> 658 Kareem Hunt Kareem Hunt #> 659 Jovante Moffatt Jovante Moffatt #> 660 Montrel Meander Montrel Meander #> 661 Elijah Benton Elijah Benton #> 662 Ronnie Harrison Ronnie Harrison #> 663 Karl Joseph Karl Joseph #> 664 Jedrick Wills Jedrick Wills #> 665 Christopher Hubbard Christopher Hubbard #> 666 Blake Hance Blake Hance #> 667 Drake Dorbeck Drake Dorbeck #> 668 Kendall Lamm Kendall Lamm #> 669 Michael Dunn Michael Dunn #> 670 Alex Taylor Alex Taylor #> 671 Drew Forbes Drew Forbes #> 672 Jack Conklin Jack Conklin #> 673 Harrison Bryant Harrison Bryant #> 674 Austin Hooper Austin Hooper #> 675 Stephen Carlson Stephen Carlson #> 676 David Njoku David Njoku #> 677 Jordan Franks Jordan Franks #> 678 Kyle Markway Kyle Markway #> 679 JoJo Natson JoJo Natson #> 680 Taywan Taylor Taywan Taylor #> 681 Derrick Willies Derrick Willies #> 682 Ryan Switzer Ryan Switzer #> 683 Odell Beckham Odell Beckham #> 684 Khadarel Hodge Khadarel Hodge #> 685 Jarvis Landry Jarvis Landry #> 686 Marvin Hall Marvin Hall #> 687 Donovan Peoples-Jones Donovan Peoples-Jones #> 688 Rashard Higgins Rashard Higgins #> 689 Alexander Hollins Alexander Hollins #> 690 Ja'Marcus Bradley Ja'Marcus Bradley #> 691 Marcus Henry Marcus Henry #> 692 Tyler Biadasz Tyler Biadasz #> 693 Travis Frederick Travis Frederick #> 694 Adam Redmond Adam Redmond #> 695 Joe Looney Joe Looney #> 696 Maurice Canady Maurice Canady #> 697 Kemon Hall Kemon Hall #> 698 Trevon Diggs Trevon Diggs #> 699 Anthony Brown Anthony Brown #> 700 Brandon Carr Brandon Carr #> 701 Deante Burton Deante Burton #> 702 Chidobe Awuzie Chidobe Awuzie #> 703 C.J. Goodwin C.J. Goodwin #> 704 Jourdan Lewis Jourdan Lewis #> 705 Rashard Robinson Rashard Robinson #> 706 Saivion Smith Saivion Smith #> 707 Xavier Woods Xavier Woods #> 708 Steven Parker Steven Parker #> 709 Darian Thompson Darian Thompson #> 710 Reggie Robinson Reggie Robinson #> 711 Aldon Smith Aldon Smith #> 712 Ron'Dell Carter Ron'Dell Carter #> 713 Demarcus Lawrence Demarcus Lawrence #> 714 Bradlee Anae Bradlee Anae #> 715 Randy Gregory Randy Gregory #> 716 Dorance Armstrong Dorance Armstrong #> 717 Tyrone Crawford Tyrone Crawford #> 718 Dontari Poe Dontari Poe #> 719 Eli Ankou Eli Ankou #> 720 Trysten Hill Trysten Hill #> 721 Antwaun Woods Antwaun Woods #> 722 Justin Hamilton Justin Hamilton #> 723 Walter Palmore Walter Palmore #> 724 Neville Gallimore Neville Gallimore #> 725 Jamize Olawale Jamize Olawale #> 726 Zack Martin Zack Martin #> 727 Connor McGovern Connor McGovern #> 728 Connor Williams Connor Williams #> 729 Greg Zuerlein Greg Zuerlein #> 730 Justin March Justin March #> 731 Leighton Vander Esch Leighton Vander Esch #> 732 Jaylon Smith Jaylon Smith #> 733 Luke Gifford Luke Gifford #> 734 Joe Thomas Joe Thomas #> 735 Francis Bernard Francis Bernard #> 736 Azur Kamara Azur Kamara #> 737 Sean Lee Sean Lee #> 738 Ladarius Hamilton Ladarius Hamilton #> 739 L.P. LaDouceur L.P. LaDouceur #> 740 Hunter Niswander Hunter Niswander #> 741 Chris Jones Chris Jones #> 742 Cooper Rush Cooper Rush #> 743 Andy Dalton Andy Dalton #> 744 Ben DiNucci Ben DiNucci #> 745 Dak Prescott Dak Prescott #> 746 Garrett Gilbert Garrett Gilbert #> 747 Tony Pollard Tony Pollard #> 748 Rico Dowdle Rico Dowdle #> 749 Sewo Olonilua Sewo Olonilua #> 750 Ezekiel Elliott Ezekiel Elliott #> 751 Donovan Wilson Donovan Wilson #> 752 Brandon Knight Brandon Knight #> 753 Eric Smith Eric Smith #> 754 Greg Senat Greg Senat #> 755 William Sweet William Sweet #> 756 Isaac Alarcon Isaac Alarcon #> 757 Mitch Hyatt Mitch Hyatt #> 758 Cameron Erving Cameron Erving #> 759 Tyron Smith Tyron Smith #> 760 Alex Light Alex Light #> 761 La'el Collins La'el Collins #> 762 Terence Steele Terence Steele #> 763 Blake Jarwin Blake Jarwin #> 764 Dalton Schultz Dalton Schultz #> 765 Blake Bell Blake Bell #> 766 Sean McKeon Sean McKeon #> 767 Cole Hikutini Cole Hikutini #> 768 Malik Turner Malik Turner #> 769 Chris Lacy Chris Lacy #> 770 Cedrick Wilson Cedrick Wilson #> 771 Noah Brown Noah Brown #> 772 Amari Cooper Amari Cooper #> 773 Michael Gallup Michael Gallup #> 774 CeeDee Lamb CeeDee Lamb #> 775 Stephen Guidry Stephen Guidry #> 776 Jon'Vea Johnson Jon'Vea Johnson #> 777 Aaron Parker Aaron Parker #> 778 Lloyd Cushenberry Lloyd Cushenberry #> 779 Patrick Morris Patrick Morris #> 780 Jon Halapio Jon Halapio #> 781 Bryce Callahan Bryce Callahan #> 782 Parnell Motley Parnell Motley #> 783 De'Vante Bausby De'Vante Bausby #> 784 Essang Bassey Essang Bassey #> 785 Michael Ojemudia Michael Ojemudia #> 786 Nate Hairston Nate Hairston #> 787 Kareem Jackson Kareem Jackson #> 788 Kevin Toliver Kevin Toliver #> 789 A.J. Bouye A.J. Bouye #> 790 Duke Dawson Duke Dawson #> 791 Will Parks Will Parks #> 792 P.J. Locke P.J. Locke #> 793 Alijah Holder Alijah Holder #> 794 Justin Simmons Justin Simmons #> 795 Shelby Harris Shelby Harris #> 796 DeMarcus Walker DeMarcus Walker #> 797 Jonathan Harris Jonathan Harris #> 798 Bradley Chubb Bradley Chubb #> 799 Deyon Sizer Deyon Sizer #> 800 Dre'Mont Jones Dre'Mont Jones #> 801 DeShawn Williams DeShawn Williams #> 802 Sylvester Williams Sylvester Williams #> 803 Timmy Jernigan Timmy Jernigan #> 804 Isaiah Mack Isaiah Mack #> 805 Kyle Peko Kyle Peko #> 806 Darius Kilgo Darius Kilgo #> 807 McTelvin Agim McTelvin Agim #> 808 Jurrell Casey Jurrell Casey #> 809 Netane Muti Netane Muti #> 810 Austin Schlottmann Austin Schlottmann #> 811 Dalton Risner Dalton Risner #> 812 Graham Glasgow Graham Glasgow #> 813 Brandon McManus Brandon McManus #> 814 Taylor Russolino Taylor Russolino #> 815 Mark Barron Mark Barron #> 816 Anthony Chickillo Anthony Chickillo #> 817 Malik Reed Malik Reed #> 818 Von Miller Von Miller #> 819 Justin Strnad Justin Strnad #> 820 Natrez Patrick Natrez Patrick #> 821 Jeremiah Attaochu Jeremiah Attaochu #> 822 Nigel Bradham Nigel Bradham #> 823 Josey Jewell Josey Jewell #> 824 Joseph Jones Joseph Jones #> 825 Josh Watson Josh Watson #> 826 Derrek Tuszka Derrek Tuszka #> 827 A.J. Johnson A.J. Johnson #> 828 Austin Calitro Austin Calitro #> 829 Jacob Bobenmoyer Jacob Bobenmoyer #> 830 Mike Purcell Mike Purcell #> 831 Sam Martin Sam Martin #> 832 Drew Lock Drew Lock #> 833 Jeff Driskel Jeff Driskel #> 834 Brett Rypien Brett Rypien #> 835 Damarea Crockett Damarea Crockett #> 836 LeVante Bellamy LeVante Bellamy #> 837 Phillip Lindsay Phillip Lindsay #> 838 Jeremy Cox Jeremy Cox #> 839 Melvin Gordon Melvin Gordon #> 840 Royce Freeman Royce Freeman #> 841 Chris Cooper Chris Cooper #> 842 Trey Marshall Trey Marshall #> 843 Quinn Bailey Quinn Bailey #> 844 Elijah Wilkinson Elijah Wilkinson #> 845 Demar Dotson Demar Dotson #> 846 Calvin Anderson Calvin Anderson #> 847 Garett Bolles Garett Bolles #> 848 Ja'Wuan James Ja'Wuan James #> 849 Darrin Paulo Darrin Paulo #> 850 Troy Fumagalli Troy Fumagalli #> 851 Noah Fant Noah Fant #> 852 Jake Butt Jake Butt #> 853 Albert Okwuegbunam Albert Okwuegbunam #> 854 Nick Vannett Nick Vannett #> 855 Austin Fort Austin Fort #> 856 Andrew Beck Andrew Beck #> 857 Jordan Leggett Jordan Leggett #> 858 Courtland Sutton Courtland Sutton #> 859 Fred Brown Fred Brown #> 860 Jerry Jeudy Jerry Jeudy #> 861 DaeSean Hamilton DaeSean Hamilton #> 862 Tim Patrick Tim Patrick #> 863 Kendall Hinton Kendall Hinton #> 864 Trinity Benson Trinity Benson #> 865 Tyrie Cleveland Tyrie Cleveland #> 866 K.J. Hamler K.J. Hamler #> 867 Diontae Spencer Diontae Spencer #> 868 Jon Toth Jon Toth #> 869 Frank Ragnow Frank Ragnow #> 870 Russell Bodine Russell Bodine #> 871 Amani Oruwariye Amani Oruwariye #> 872 Jeff Okudah Jeff Okudah #> 873 Darryl Roberts Darryl Roberts #> 874 Josh Hawkins Josh Hawkins #> 875 Tramaine Brock Tramaine Brock #> 876 Desmond Trufant Desmond Trufant #> 877 Tony McRae Tony McRae #> 878 Mike Ford Mike Ford #> 879 Justin Coleman Justin Coleman #> 880 Bobby Price Bobby Price #> 881 Miles Killebrew Miles Killebrew #> 882 Alexander Myres Alexander Myres #> 883 Jalen Elliott Jalen Elliott #> 884 Tracy Walker Tracy Walker #> 885 C.J. Moore C.J. Moore #> 886 Julian Okwara Julian Okwara #> 887 Joel Heath Joel Heath #> 888 Jashon Cornell Jashon Cornell #> 889 Austin Bryant Austin Bryant #> 890 Romeo Okwara Romeo Okwara #> 891 Da'Shawn Hand Da'Shawn Hand #> 892 Frank Herron Frank Herron #> 893 Trey Flowers Trey Flowers #> 894 Robert McCray Robert McCray #> 895 Everson Griffen Everson Griffen #> 896 John Atkins John Atkins #> 897 Albert Huggins Albert Huggins #> 898 John Penisini John Penisini #> 899 Danny Shelton Danny Shelton #> 900 Kevin Strong Kevin Strong #> 901 Nicholas Williams Nicholas Williams #> 902 Evan Brown Evan Brown #> 903 Jonah Jackson Jonah Jackson #> 904 Oday Aboushi Oday Aboushi #> 905 Joe Dahl Joe Dahl #> 906 Logan Stenberg Logan Stenberg #> 907 Matt Prater Matt Prater #> 908 Matthew Wright Matthew Wright #> 909 Anthony Pittman Anthony Pittman #> 910 Jalen Reeves-Maybin Jalen Reeves-Maybin #> 911 Jason Cabinda Jason Cabinda #> 912 Jahlani Tavai Jahlani Tavai #> 913 Shaun Dion Hamilton Shaun Dion Hamilton #> 914 Jamie Collins Jamie Collins #> 915 Jarrad Davis Jarrad Davis #> 916 Reggie Ragland Reggie Ragland #> 917 Kareem Martin Kareem Martin #> 918 Christian Jones Christian Jones #> 919 Don Muhlbach Don Muhlbach #> 920 Jack Fox Jack Fox #> 921 Matthew Stafford Matthew Stafford #> 922 Chase Daniel Chase Daniel #> 923 David Blough David Blough #> 924 Kerryon Johnson Kerryon Johnson #> 925 D'Andre Swift D'Andre Swift #> 926 Kerrith Whyte Kerrith Whyte #> 927 Adrian Peterson Adrian Peterson #> 928 Dalyn Dawkins Dalyn Dawkins #> 929 Nick Bawden Nick Bawden #> 930 Duron Harmon Duron Harmon #> 931 Will Harris Will Harris #> 932 Godwin Igwebuike Godwin Igwebuike #> 933 Dan Skipper Dan Skipper #> 934 Halapoulivaati Vaitai Halapoulivaati Vaitai #> 935 Matt Nelson Matt Nelson #> 936 Taylor Decker Taylor Decker #> 937 Tyrell Crosby Tyrell Crosby #> 938 Khari Lee Khari Lee #> 939 Jerell Adams Jerell Adams #> 940 Jesse James Jesse James #> 941 Alize Mack Alize Mack #> 942 Hunter Bryant Hunter Bryant #> 943 T.J. Hockenson T.J. Hockenson #> 944 Jamal Agnew Jamal Agnew #> 945 Tom Kennedy Tom Kennedy #> 946 Mohamed Sanu Mohamed Sanu #> 947 Marvin Jones Marvin Jones #> 948 Danny Amendola Danny Amendola #> 949 Quintez Cephus Quintez Cephus #> 950 Victor Bolden Victor Bolden #> 951 Geronimo Allison Geronimo Allison #> 952 Kenny Golladay Kenny Golladay #> 953 Corey Linsley Corey Linsley #> 954 Jake Hanson Jake Hanson #> 955 Parry Nickerson Parry Nickerson #> 956 Chandon Sullivan Chandon Sullivan #> 957 Kevin King Kevin King #> 958 KeiVarae Russell KeiVarae Russell #> 959 Tramon Williams Tramon Williams #> 960 Jaire Alexander Jaire Alexander #> 961 Ka'dar Hollman Ka'dar Hollman #> 962 Josh Jackson Josh Jackson #> 963 Kabion Ento Kabion Ento #> 964 Adrian Amos Adrian Amos #> 965 Henry Black Henry Black #> 966 Vernon Scott Vernon Scott #> 967 Raven Greene Raven Greene #> 968 Stanford Samuels Stanford Samuels #> 969 Dean Lowry Dean Lowry #> 970 Billy Winn Billy Winn #> 971 Delontae Scott Delontae Scott #> 972 Montravius Adams Montravius Adams #> 973 Tipa Galeai Tipa Galeai #> 974 Kingsley Keke Kingsley Keke #> 975 Anthony Rush Anthony Rush #> 976 Willington Previlon Willington Previlon #> 977 Damon Harrison Damon Harrison #> 978 Brian Price Brian Price #> 979 Lane Taylor Lane Taylor #> 980 Ben Braden Ben Braden #> 981 Rick Wagner Rick Wagner #> 982 Zack Johnson Zack Johnson #> 983 Elgton Jenkins Elgton Jenkins #> 984 Lucas Patrick Lucas Patrick #> 985 Jon Runyan Jon Runyan #> 986 Simon Stepaniak Simon Stepaniak #> 987 Mason Crosby Mason Crosby #> 988 De'Jon Harris De'Jon Harris #> 989 Preston Smith Preston Smith #> 990 Rashan Gary Rashan Gary #> 991 Jonathan Garvin Jonathan Garvin #> 992 Oren Burks Oren Burks #> 993 Ty Summers Ty Summers #> 994 Za'Darius Smith Za'Darius Smith #> 995 Krys Barnes Krys Barnes #> 996 Kamal Martin Kamal Martin #> 997 Randy Ramsey Randy Ramsey #> 998 James Burgess James Burgess #> 999 Christian Kirksey Christian Kirksey #> 1000 Hunter Bradley Hunter Bradley #> 1001 Kenny Clark Kenny Clark #> 1002 Tyler Lancaster Tyler Lancaster #> 1003 Ryan Winslow Ryan Winslow #> 1004 J.K. Scott J.K. Scott #> 1005 Aaron Rodgers Aaron Rodgers #> 1006 Tim Boyle Tim Boyle #> 1007 Jordan Love Jordan Love #> 1008 John Lovett John Lovett #> 1009 Dexter Williams Dexter Williams #> 1010 Mike Weber Mike Weber #> 1011 Patrick Taylor Patrick Taylor #> 1012 Aaron Jones Aaron Jones #> 1013 Tyler Ervin Tyler Ervin #> 1014 A.J. Dillon A.J. Dillon #> 1015 Jamaal Williams Jamaal Williams #> 1016 Darnell Savage Darnell Savage #> 1017 Will Redmond Will Redmond #> 1018 Ryan Pope Ryan Pope #> 1019 Billy Turner Billy Turner #> 1020 Yosuah Nijman Yosuah Nijman #> 1021 David Bakhtiari David Bakhtiari #> 1022 Jared Veldheer Jared Veldheer #> 1023 Marcedes Lewis Marcedes Lewis #> 1024 Jace Sternberger Jace Sternberger #> 1025 Dominique Dafney Dominique Dafney #> 1026 Josiah Deguara Josiah Deguara #> 1027 Isaac Nauta Isaac Nauta #> 1028 Bronson Kaufusi Bronson Kaufusi #> 1029 Robert Tonyan Robert Tonyan #> 1030 Davis Koppenhaver Davis Koppenhaver #> 1031 Davante Adams Davante Adams #> 1032 Malik Taylor Malik Taylor #> 1033 Reggie Begelton Reggie Begelton #> 1034 Equanimeous St. Brown Equanimeous St. Brown #> 1035 Caleb Scott Caleb Scott #> 1036 Seth Roberts Seth Roberts #> 1037 Darrius Shepherd Darrius Shepherd #> 1038 Allen Lazard Allen Lazard #> 1039 Tavon Austin Tavon Austin #> 1040 Marquez Valdes-Scantling Marquez Valdes-Scantling #> 1041 Juwann Winfree Juwann Winfree #> 1042 Devin Funchess Devin Funchess #> 1043 Nick Martin Nick Martin #> 1044 Cohl Cabral Cohl Cabral #> 1045 Beau Benzschawel Beau Benzschawel #> 1046 Jonathan Owens Jonathan Owens #> 1047 Vernon Hargreaves Vernon Hargreaves #> 1048 John Reid John Reid #> 1049 Lonnie Johnson Lonnie Johnson #> 1050 Mark Fields Mark Fields #> 1051 Bradley Roby Bradley Roby #> 1052 Cornell Armstrong Cornell Armstrong #> 1053 Phillip Gaines Phillip Gaines #> 1054 Brandon Williams Brandon Williams #> 1055 Keion Crossen Keion Crossen #> 1056 Gareon Conley Gareon Conley #> 1057 Eric Murray Eric Murray #> 1058 A.J. Moore A.J. Moore #> 1059 Geno Stone Geno Stone #> 1060 Jacob Martin Jacob Martin #> 1061 Charles Omenihu Charles Omenihu #> 1062 Carlos Watkins Carlos Watkins #> 1063 J.J. Watt J.J. Watt #> 1064 Ross Blacklock Ross Blacklock #> 1065 P.J. Hall P.J. Hall #> 1066 Corey Liuget Corey Liuget #> 1067 Willie Henry Willie Henry #> 1068 Eddie Vanderdoes Eddie Vanderdoes #> 1069 Auzoyah Alufohai Auzoyah Alufohai #> 1070 Hjalte Froholdt Hjalte Froholdt #> 1071 Senio Kelemete Senio Kelemete #> 1072 Zach Fulton Zach Fulton #> 1073 Ka'imi Fairbairn Ka'imi Fairbairn #> 1074 Dylan Cole Dylan Cole #> 1075 Curtis Bolton Curtis Bolton #> 1076 Benardrick McKinney Benardrick McKinney #> 1077 Nate Hall Nate Hall #> 1078 Peter Kalambayi Peter Kalambayi #> 1079 Zach Cunningham Zach Cunningham #> 1080 Whitney Mercilus Whitney Mercilus #> 1081 Tyrell Adams Tyrell Adams #> 1082 Jonathan Greenard Jonathan Greenard #> 1083 Duke Ejiofor Duke Ejiofor #> 1084 Emmanuel Ellerbee Emmanuel Ellerbee #> 1085 Brennan Scarlett Brennan Scarlett #> 1086 Kyle Emanuel Kyle Emanuel #> 1087 Anthony Kukwa Anthony Kukwa #> 1088 Jonathan Weeks Jonathan Weeks #> 1089 Brandon Dunn Brandon Dunn #> 1090 Andrew Brown Andrew Brown #> 1091 Bryan Anger Bryan Anger #> 1092 Deshaun Watson Deshaun Watson #> 1093 AJ McCarron AJ McCarron #> 1094 Josh McCown Josh McCown #> 1095 Dontrell Hilliard Dontrell Hilliard #> 1096 Buddy Howell Buddy Howell #> 1097 David Johnson David Johnson #> 1098 Scottie Phillips Scottie Phillips #> 1099 Duke Johnson Duke Johnson #> 1100 Cullen Gillaspia Cullen Gillaspia #> 1101 Michael Thomas Michael Thomas #> 1102 Justin Reid Justin Reid #> 1103 Brent Qvale Brent Qvale #> 1104 Tytus Howard Tytus Howard #> 1105 Roderick Johnson Roderick Johnson #> 1106 Max Scharping Max Scharping #> 1107 Laremy Tunsil Laremy Tunsil #> 1108 Charlie Heck Charlie Heck #> 1109 Jordan Steckler Jordan Steckler #> 1110 Jordan Akins Jordan Akins #> 1111 Pharaoh Brown Pharaoh Brown #> 1112 Darren Fells Darren Fells #> 1113 Kahale Warring Kahale Warring #> 1114 Randall Cobb Randall Cobb #> 1115 Steven Mitchell Steven Mitchell #> 1116 Chad Hansen Chad Hansen #> 1117 Keke Coutee Keke Coutee #> 1118 Damion Ratley Damion Ratley #> 1119 Isaiah Coulter Isaiah Coulter #> 1120 J'Mon Moore J'Mon Moore #> 1121 Will Fuller Will Fuller #> 1122 Artavis Scott Artavis Scott #> 1123 Brandin Cooks Brandin Cooks #> 1124 Ryan Kelly Ryan Kelly #> 1125 Joey Hunt Joey Hunt #> 1126 Sam Jones Sam Jones #> 1127 T.J. Carrie T.J. Carrie #> 1128 Roderic Teamer Roderic Teamer #> 1129 Tremon Smith Tremon Smith #> 1130 Rock Ya-Sin Rock Ya-Sin #> 1131 Nick Nelson Nick Nelson #> 1132 Xavier Rhodes Xavier Rhodes #> 1133 Anthony Chesley Anthony Chesley #> 1134 Isaiah Rodgers Isaiah Rodgers #> 1135 Kenny Moore Kenny Moore #> 1136 Marvell Tell Marvell Tell #> 1137 Andre Chachere Andre Chachere #> 1138 Ibraheim Campbell Ibraheim Campbell #> 1139 Will Sunderland Will Sunderland #> 1140 Julian Blackmon Julian Blackmon #> 1141 George Odum George Odum #> 1142 Malik Hooker Malik Hooker #> 1143 Tyquan Lewis Tyquan Lewis #> 1144 Denico Autry Denico Autry #> 1145 Kemoko Turay Kemoko Turay #> 1146 Justin Houston Justin Houston #> 1147 Al-Quadin Muhammad Al-Quadin Muhammad #> 1148 Ben Banogu Ben Banogu #> 1149 Chris Williams Chris Williams #> 1150 Kameron Cline Kameron Cline #> 1151 Taylor Stallworth Taylor Stallworth #> 1152 Robert Windsor Robert Windsor #> 1153 DeForest Buckner DeForest Buckner #> 1154 Mark Glowinski Mark Glowinski #> 1155 Quenton Nelson Quenton Nelson #> 1156 Danny Pinter Danny Pinter #> 1157 Jake Eldrenkamp Jake Eldrenkamp #> 1158 Rodrigo Blankenship Rodrigo Blankenship #> 1159 Darius Leonard Darius Leonard #> 1160 Matthew Adams Matthew Adams #> 1161 Anthony Walker Anthony Walker #> 1162 Najee Goode Najee Goode #> 1163 Skai Moore Skai Moore #> 1164 Bobby Okereke Bobby Okereke #> 1165 Jordan Glasgow Jordan Glasgow #> 1166 Chris Covington Chris Covington #> 1167 E.J. Speed E.J. Speed #> 1168 Zaire Franklin Zaire Franklin #> 1169 Luke Rhodes Luke Rhodes #> 1170 Grover Stewart Grover Stewart #> 1171 Austin Rehkow Austin Rehkow #> 1172 Rigoberto Sanchez Rigoberto Sanchez #> 1173 Ryan Allen Ryan Allen #> 1174 Jacoby Brissett Jacoby Brissett #> 1175 Chad Kelly Chad Kelly #> 1176 Jacob Eason Jacob Eason #> 1177 Philip Rivers Philip Rivers #> 1178 Nyheim Hines Nyheim Hines #> 1179 Jordan Wilkins Jordan Wilkins #> 1180 Darius Anderson Darius Anderson #> 1181 Jonathan Taylor Jonathan Taylor #> 1182 Marlon Mack Marlon Mack #> 1183 Paul Perkins Paul Perkins #> 1184 Darius Jackson Darius Jackson #> 1185 Khari Willis Khari Willis #> 1186 Tavon Wilson Tavon Wilson #> 1187 Rolan Milligan Rolan Milligan #> 1188 Le'Raven Clark Le'Raven Clark #> 1189 Carter O'Donnell Carter O'Donnell #> 1190 Anthony Castonzo Anthony Castonzo #> 1191 Casey Tucker Casey Tucker #> 1192 Will Holden Will Holden #> 1193 Chaz Green Chaz Green #> 1194 Braden Smith Braden Smith #> 1195 Elijah Nkansah Elijah Nkansah #> 1196 J'Marcus Webb J'Marcus Webb #> 1197 Jordan Thomas Jordan Thomas #> 1198 Andrew Vollert Andrew Vollert #> 1199 Jack Doyle Jack Doyle #> 1200 Mo Alie-Cox Mo Alie-Cox #> 1201 Noah Togiai Noah Togiai #> 1202 Trey Burton Trey Burton #> 1203 Farrod Green Farrod Green #> 1204 Dezmon Patmon Dezmon Patmon #> 1205 Parris Campbell Parris Campbell #> 1206 DeMichael Harris DeMichael Harris #> 1207 J.J. Nelson J.J. Nelson #> 1208 Daurice Fountain Daurice Fountain #> 1209 Ashton Dulin Ashton Dulin #> 1210 Gary Jennings Gary Jennings #> 1211 Zach Pascal Zach Pascal #> 1212 T.Y. Hilton T.Y. Hilton #> 1213 Michael Pittman Michael Pittman #> 1214 Evan Boehm Evan Boehm #> 1215 D.J. Hayden D.J. Hayden #> 1216 Greg Mabin Greg Mabin #> 1217 Rashaan Melvin Rashaan Melvin #> 1218 Nate Meadors Nate Meadors #> 1219 Brandon Rusnak Brandon Rusnak #> 1220 Josiah Scott Josiah Scott #> 1221 Sidney Jones Sidney Jones #> 1222 Luq Barcoo Luq Barcoo #> 1223 Quenton Meeks Quenton Meeks #> 1224 C.J. Henderson C.J. Henderson #> 1225 Chris Claybrooks Chris Claybrooks #> 1226 Tre Herndon Tre Herndon #> 1227 Andrew Wingard Andrew Wingard #> 1228 Doug Middleton Doug Middleton #> 1229 Josh Nurse Josh Nurse #> 1230 Adam Gotsis Adam Gotsis #> 1231 Reggie Gilbert Reggie Gilbert #> 1232 Josh Allen Josh Allen #> 1233 K'Lavon Chaisson K'Lavon Chaisson #> 1234 Dawuane Smoot Dawuane Smoot #> 1235 Rodney Gunter Rodney Gunter #> 1236 Lerentee McCray Lerentee McCray #> 1237 Al Woods Al Woods #> 1238 Daniel Ekuale Daniel Ekuale #> 1239 Taven Bryan Taven Bryan #> 1240 Abry Jones Abry Jones #> 1241 Doug Costin Doug Costin #> 1242 Caraun Reid Caraun Reid #> 1243 Daniel Ross Daniel Ross #> 1244 Gabe Wright Gabe Wright #> 1245 Bruce Miller Bruce Miller #> 1246 Tyler Shatley Tyler Shatley #> 1247 A.J. Cann A.J. Cann #> 1248 Andrew Norwell Andrew Norwell #> 1249 Brandon Linder Brandon Linder #> 1250 Tre'Vour Wallace-Simms Tre'Vour Wallace-Simms #> 1251 Stephen Hauschka Stephen Hauschka #> 1252 Jon Brown Jon Brown #> 1253 Josh Lambo Josh Lambo #> 1254 Aldrick Rosas Aldrick Rosas #> 1255 Chapelle Russell Chapelle Russell #> 1256 Shaquille Quarterman Shaquille Quarterman #> 1257 Joe Schobert Joe Schobert #> 1258 Quincy Williams Quincy Williams #> 1259 Joe Giles-Harris Joe Giles-Harris #> 1260 Dakota Allen Dakota Allen #> 1261 Kamalei Correa Kamalei Correa #> 1262 Leon Jacobs Leon Jacobs #> 1263 Myles Jack Myles Jack #> 1264 Nate Evans Nate Evans #> 1265 Aaron Lynch Aaron Lynch #> 1266 Ross Matiscik Ross Matiscik #> 1267 Davon Hamilton Davon Hamilton #> 1268 Dontavius Russell Dontavius Russell #> 1269 Cameron Nizialek Cameron Nizialek #> 1270 Logan Cooke Logan Cooke #> 1271 Jake Luton Jake Luton #> 1272 Mike Glennon Mike Glennon #> 1273 Gardner Minshew Gardner Minshew #> 1274 Devine Ozigbo Devine Ozigbo #> 1275 Ryquell Armstead Ryquell Armstead #> 1276 Chris Thompson Chris Thompson #> 1277 Nathan Cottrell Nathan Cottrell #> 1278 James Robinson James Robinson #> 1279 Craig Reynolds Craig Reynolds #> 1280 Dare Ogunbowale Dare Ogunbowale #> 1281 Jarrod Wilson Jarrod Wilson #> 1282 Daniel Thomas Daniel Thomas #> 1283 Josh Jones Josh Jones #> 1284 Garrett McGhin Garrett McGhin #> 1285 Ben Bartch Ben Bartch #> 1286 KC McDermott KC McDermott #> 1287 Will Richardson Will Richardson #> 1288 Derwin Gray Derwin Gray #> 1289 Cam Robinson Cam Robinson #> 1290 Austen Pleasants Austen Pleasants #> 1291 Jawaan Taylor Jawaan Taylor #> 1292 Eric Saubert Eric Saubert #> 1293 James O'Shaughnessy James O'Shaughnessy #> 1294 Matt Flanagan Matt Flanagan #> 1295 Tyler Eifert Tyler Eifert #> 1296 Ben Ellefson Ben Ellefson #> 1297 Tyler Davis Tyler Davis #> 1298 Josh Oliver Josh Oliver #> 1299 Terry Godwin Terry Godwin #> 1300 Keelan Cole Keelan Cole #> 1301 Michael Walker Michael Walker #> 1302 Damion Willis Damion Willis #> 1303 Josh Hammond Josh Hammond #> 1304 Dede Westbrook Dede Westbrook #> 1305 Laviska Shenault Laviska Shenault #> 1306 D.J. Chark D.J. Chark #> 1307 Chris Conley Chris Conley #> 1308 Bug Howard Bug Howard #> 1309 Collin Johnson Collin Johnson #> 1310 Daniel Kilgore Daniel Kilgore #> 1311 Darryl Williams Darryl Williams #> 1312 Austin Reiter Austin Reiter #> 1313 Antonio Hamilton Antonio Hamilton #> 1314 Alex Brown Alex Brown #> 1315 Bashaud Breeland Bashaud Breeland #> 1316 Thakarius Keyes Thakarius Keyes #> 1317 L'Jarius Sneed L'Jarius Sneed #> 1318 Rashad Fenton Rashad Fenton #> 1319 Chris Lammons Chris Lammons #> 1320 Charvarius Ward Charvarius Ward #> 1321 Deandre Baker Deandre Baker #> 1322 Juan Thornhill Juan Thornhill #> 1323 Daniel Sorensen Daniel Sorensen #> 1324 Rodney Clemons Rodney Clemons #> 1325 Alex Okafor Alex Okafor #> 1326 Tim Ward Tim Ward #> 1327 Taco Charlton Taco Charlton #> 1328 Frank Clark Frank Clark #> 1329 Demone Harris Demone Harris #> 1330 Tanoh Kpassagnon Tanoh Kpassagnon #> 1331 Michael Danna Michael Danna #> 1332 Austin Edwards Austin Edwards #> 1333 Khalen Saunders Khalen Saunders #> 1334 Tyler Clark Tyler Clark #> 1335 Tershawn Wharton Tershawn Wharton #> 1336 Chris Jones Chris Jones #> 1337 Bryan Witzmann Bryan Witzmann #> 1338 Kelechi Osemele Kelechi Osemele #> 1339 Stefen Wisniewski Stefen Wisniewski #> 1340 Laurent Duvernay-Tardif Laurent Duvernay-Tardif #> 1341 Patrick Omameh Patrick Omameh #> 1342 Nick Allegretti Nick Allegretti #> 1343 Harrison Butker Harrison Butker #> 1344 Dorian O'Daniel Dorian O'Daniel #> 1345 Willie Gay Willie Gay #> 1346 Damien Wilson Damien Wilson #> 1347 Anthony Hitchens Anthony Hitchens #> 1348 Ben Niemann Ben Niemann #> 1349 Emmanuel Smith Emmanuel Smith #> 1350 Darius Harris Darius Harris #> 1351 Omari Cobb Omari Cobb #> 1352 James Winchester James Winchester #> 1353 Mike Pennel Mike Pennel #> 1354 Derrick Nnadi Derrick Nnadi #> 1355 Dustin Colquitt Dustin Colquitt #> 1356 Tommy Townsend Tommy Townsend #> 1357 Patrick Mahomes Patrick Mahomes #> 1358 Matt Moore Matt Moore #> 1359 Chad Henne Chad Henne #> 1360 Jordan Ta'amu Jordan Ta'amu #> 1361 Damien Williams Damien Williams #> 1362 Anthony Sherman Anthony Sherman #> 1363 Darwin Thompson Darwin Thompson #> 1364 Elijah McGuire Elijah McGuire #> 1365 Darrel Williams Darrel Williams #> 1366 Le'Veon Bell Le'Veon Bell #> 1367 Clyde Edwards-Helaire Clyde Edwards-Helaire #> 1368 Armani Watts Armani Watts #> 1369 Tyrann Mathieu Tyrann Mathieu #> 1370 Mike Remmers Mike Remmers #> 1371 Andrew Wylie Andrew Wylie #> 1372 Eric Fisher Eric Fisher #> 1373 Lucas Niang Lucas Niang #> 1374 Yasir Durant Yasir Durant #> 1375 Martinas Rankin Martinas Rankin #> 1376 Mitchell Schwartz Mitchell Schwartz #> 1377 Prince Tega Wanogho Prince Tega Wanogho #> 1378 Deon Yelder Deon Yelder #> 1379 Ricky Seals-Jones Ricky Seals-Jones #> 1380 Travis Kelce Travis Kelce #> 1381 Sean Culkin Sean Culkin #> 1382 Evan Baylis Evan Baylis #> 1383 Nick Keizer Nick Keizer #> 1384 Demarcus Robinson Demarcus Robinson #> 1385 Maurice Ffrench Maurice Ffrench #> 1386 Tajae Sharpe Tajae Sharpe #> 1387 Sammy Watkins Sammy Watkins #> 1388 Chad Williams Chad Williams #> 1389 Joe Fortson Joe Fortson #> 1390 Antonio Callaway Antonio Callaway #> 1391 Mecole Hardman Mecole Hardman #> 1392 Gehrig Dieter Gehrig Dieter #> 1393 Byron Pringle Byron Pringle #> 1394 Tyreek Hill Tyreek Hill #> 1395 Marcus Kemp Marcus Kemp #> 1396 Austin Blythe Austin Blythe #> 1397 Brian Allen Brian Allen #> 1398 Troy Hill Troy Hill #> 1399 David Long David Long #> 1400 Donte Deayon Donte Deayon #> 1401 Jalen Ramsey Jalen Ramsey #> 1402 Darious Williams Darious Williams #> 1403 Juju Hughes Juju Hughes #> 1404 John Johnson John Johnson #> 1405 Nick Scott Nick Scott #> 1406 Jordan Fuller Jordan Fuller #> 1407 J.R. Reed J.R. Reed #> 1408 Tyrique McGhee Tyrique McGhee #> 1409 Derek Rivers Derek Rivers #> 1410 Morgan Fox Morgan Fox #> 1411 Jonah Williams Jonah Williams #> 1412 Michael Brockers Michael Brockers #> 1413 Eric Banks Eric Banks #> 1414 Aaron Donald Aaron Donald #> 1415 A'Shawn Robinson A'Shawn Robinson #> 1416 Michael Hoecht Michael Hoecht #> 1417 Marquise Copeland Marquise Copeland #> 1418 Jamil Demby Jamil Demby #> 1419 Jeremiah Kolone Jeremiah Kolone #> 1420 Joseph Noteboom Joseph Noteboom #> 1421 David Edwards David Edwards #> 1422 Austin Corbett Austin Corbett #> 1423 Coleman Shelton Coleman Shelton #> 1424 Kai Forbath Kai Forbath #> 1425 Austin MacGinnis Austin MacGinnis #> 1426 Matt Gay Matt Gay #> 1427 Kenny Young Kenny Young #> 1428 Derrick Moncrief Derrick Moncrief #> 1429 Troy Reeder Troy Reeder #> 1430 Ogbonnia Okoronkwo Ogbonnia Okoronkwo #> 1431 Leonard Floyd Leonard Floyd #> 1432 Micah Kiser Micah Kiser #> 1433 Justin Lawler Justin Lawler #> 1434 Justin Hollins Justin Hollins #> 1435 Samson Ebukam Samson Ebukam #> 1436 Christian Rozeboom Christian Rozeboom #> 1437 Terrell Lewis Terrell Lewis #> 1438 Jachai Polite Jachai Polite #> 1439 Travin Howard Travin Howard #> 1440 Steven Wirtel Steven Wirtel #> 1441 Colin Holba Colin Holba #> 1442 Jake McQuaide Jake McQuaide #> 1443 Greg Gaines Greg Gaines #> 1444 Sebastian Joseph-Day Sebastian Joseph-Day #> 1445 Brandon Wright Brandon Wright #> 1446 Johnny Hekker Johnny Hekker #> 1447 John Wolford John Wolford #> 1448 Devlin Hodges Devlin Hodges #> 1449 Blake Bortles Blake Bortles #> 1450 Bryce Perkins Bryce Perkins #> 1451 Jared Goff Jared Goff #> 1452 Cam Akers Cam Akers #> 1453 Raymond Calais Raymond Calais #> 1454 Xavier Jones Xavier Jones #> 1455 Darrell Henderson Darrell Henderson #> 1456 Malcolm Brown Malcolm Brown #> 1457 Taylor Rapp Taylor Rapp #> 1458 Jake Gervase Jake Gervase #> 1459 Terrell Burgess Terrell Burgess #> 1460 Rob Havenstein Rob Havenstein #> 1461 Chandler Brewer Chandler Brewer #> 1462 Tremayne Anchrum Tremayne Anchrum #> 1463 Andrew Whitworth Andrew Whitworth #> 1464 Bobby Evans Bobby Evans #> 1465 Gerald Everett Gerald Everett #> 1466 Brycen Hopkins Brycen Hopkins #> 1467 Tyler Higbee Tyler Higbee #> 1468 Kendall Blanton Kendall Blanton #> 1469 Johnny Mundt Johnny Mundt #> 1470 Robert Woods Robert Woods #> 1471 Van Jefferson Van Jefferson #> 1472 Trishton Jackson Trishton Jackson #> 1473 J.J. Koski J.J. Koski #> 1474 Cooper Kupp Cooper Kupp #> 1475 Josh Reynolds Josh Reynolds #> 1476 Nsimba Webster Nsimba Webster #> 1477 Mike Pouncey Mike Pouncey #> 1478 Cole Toner Cole Toner #> 1479 Tevaughn Campbell Tevaughn Campbell #> 1480 Brandon Facyson Brandon Facyson #> 1481 Michael Davis Michael Davis #> 1482 Casey Hayward Casey Hayward #> 1483 Chris Harris Chris Harris #> 1484 Nasir Adderley Nasir Adderley #> 1485 Jahleel Addae Jahleel Addae #> 1486 John Brannon John Brannon #> 1487 Donte Vaughn Donte Vaughn #> 1488 Derwin James Derwin James #> 1489 Jessie Lemonier Jessie Lemonier #> 1490 Joey Bosa Joey Bosa #> 1491 Melvin Ingram Melvin Ingram #> 1492 Isaac Rochell Isaac Rochell #> 1493 Joe Gaziano Joe Gaziano #> 1494 Uchenna Nwosu Uchenna Nwosu #> 1495 Jerry Tillery Jerry Tillery #> 1496 T.J. Smith T.J. Smith #> 1497 Justin Jones Justin Jones #> 1498 Cortez Broughton Cortez Broughton #> 1499 Dan Feeney Dan Feeney #> 1500 Scott Quessenberry Scott Quessenberry #> 1501 Nathan Gilliam Nathan Gilliam #> 1502 Ryan Groy Ryan Groy #> 1503 Trai Turner Trai Turner #> 1504 Forrest Lamp Forrest Lamp #> 1505 Ryan Hunter Ryan Hunter #> 1506 Michael Badgley Michael Badgley #> 1507 Drue Tranquill Drue Tranquill #> 1508 Malik Jefferson Malik Jefferson #> 1509 Kyzir White Kyzir White #> 1510 Kenneth Murray Kenneth Murray #> 1511 Nick Vigil Nick Vigil #> 1512 Denzel Perryman Denzel Perryman #> 1513 Cole Christiansen Cole Christiansen #> 1514 Emeke Egbule Emeke Egbule #> 1515 B.J. Bello B.J. Bello #> 1516 Cole Mazza Cole Mazza #> 1517 Linval Joseph Linval Joseph #> 1518 Damion Square Damion Square #> 1519 Breiden Fehoko Breiden Fehoko #> 1520 Lachlan Edwards Lachlan Edwards #> 1521 Ty Long Ty Long #> 1522 Tyrod Taylor Tyrod Taylor #> 1523 Easton Stick Easton Stick #> 1524 Justin Herbert Justin Herbert #> 1525 Joshua Kelley Joshua Kelley #> 1526 Austin Ekeler Austin Ekeler #> 1527 Darius Bradwell Darius Bradwell #> 1528 Troymaine Pope Troymaine Pope #> 1529 Kalen Ballage Kalen Ballage #> 1530 Gabe Nabers Gabe Nabers #> 1531 Justin Jackson Justin Jackson #> 1532 Alohi Gilman Alohi Gilman #> 1533 Jaylen Watkins Jaylen Watkins #> 1534 Rayshawn Jenkins Rayshawn Jenkins #> 1535 Sam Tevi Sam Tevi #> 1536 Trey Pipkins Trey Pipkins #> 1537 Storm Norton Storm Norton #> 1538 Bryan Bulaga Bryan Bulaga #> 1539 Tyree St. Louis Tyree St. Louis #> 1540 Hunter Henry Hunter Henry #> 1541 Donald Parham Donald Parham #> 1542 Virgil Green Virgil Green #> 1543 Matt Sokol Matt Sokol #> 1544 Stephen Anderson Stephen Anderson #> 1545 John Hurst John Hurst #> 1546 Tyron Johnson Tyron Johnson #> 1547 Jason Moore Jason Moore #> 1548 Keenan Allen Keenan Allen #> 1549 K.J. Hill K.J. Hill #> 1550 Jeff Cotton Jeff Cotton #> 1551 Joe Reed Joe Reed #> 1552 Jalen Guyton Jalen Guyton #> 1553 Mike Williams Mike Williams #> 1554 Erik Magnuson Erik Magnuson #> 1555 Rodney Hudson Rodney Hudson #> 1556 Andre James Andre James #> 1557 Keisean Nixon Keisean Nixon #> 1558 Amik Robertson Amik Robertson #> 1559 Lamarcus Joyner Lamarcus Joyner #> 1560 D.J. White D.J. White #> 1561 Daryl Worley Daryl Worley #> 1562 Damon Arnette Damon Arnette #> 1563 D.J. Killings D.J. Killings #> 1564 Trayvon Mullen Trayvon Mullen #> 1565 Isaiah Johnson Isaiah Johnson #> 1566 Nevin Lawson Nevin Lawson #> 1567 Kemah Siverand Kemah Siverand #> 1568 Javin White Javin White #> 1569 Dallin Leavitt Dallin Leavitt #> 1570 Erik Harris Erik Harris #> 1571 Carl Nassib Carl Nassib #> 1572 Jeremiah Valoaga Jeremiah Valoaga #> 1573 David Irving David Irving #> 1574 Takkarist McKinley Takkarist McKinley #> 1575 Chris Smith Chris Smith #> 1576 Clelin Ferrell Clelin Ferrell #> 1577 Arden Key Arden Key #> 1578 Maxx Crosby Maxx Crosby #> 1579 Gerri Green Gerri Green #> 1580 Datone Jones Datone Jones #> 1581 Maurice Hurst Maurice Hurst #> 1582 Johnathan Hankins Johnathan Hankins #> 1583 Kendal Vickers Kendal Vickers #> 1584 Maliek Collins Maliek Collins #> 1585 Alec Ingold Alec Ingold #> 1586 Denzelle Good Denzelle Good #> 1587 Gabe Jackson Gabe Jackson #> 1588 Richie Incognito Richie Incognito #> 1589 Lester Cotton Lester Cotton #> 1590 John Simpson John Simpson #> 1591 Dominik Eberle Dominik Eberle #> 1592 Daniel Carlson Daniel Carlson #> 1593 Vic Beasley Vic Beasley #> 1594 Nicholas Morrow Nicholas Morrow #> 1595 Nick Kwiatkoski Nick Kwiatkoski #> 1596 Tanner Muse Tanner Muse #> 1597 Raekwon McMillan Raekwon McMillan #> 1598 Cory Littleton Cory Littleton #> 1599 Kyle Wilber Kyle Wilber #> 1600 Ukeme Eligwe Ukeme Eligwe #> 1601 James Onwualu James Onwualu #> 1602 Trent Sieg Trent Sieg #> 1603 Niles Scott Niles Scott #> 1604 A.J. Cole A.J. Cole #> 1605 Derek Carr Derek Carr #> 1606 Kyle Sloter Kyle Sloter #> 1607 Nathan Peterman Nathan Peterman #> 1608 Marcus Mariota Marcus Mariota #> 1609 Devontae Booker Devontae Booker #> 1610 Josh Jacobs Josh Jacobs #> 1611 Jalen Richard Jalen Richard #> 1612 Theo Riddick Theo Riddick #> 1613 Jeff Heath Jeff Heath #> 1614 Rashaan Gaulden Rashaan Gaulden #> 1615 Johnathan Abram Johnathan Abram #> 1616 Brandon Parker Brandon Parker #> 1617 Kamaal Seymour Kamaal Seymour #> 1618 Trenton Brown Trenton Brown #> 1619 Jaryd Jones-Smith Jaryd Jones-Smith #> 1620 Kolton Miller Kolton Miller #> 1621 Sam Young Sam Young #> 1622 Nick Bowers Nick Bowers #> 1623 Nick O'Leary Nick O'Leary #> 1624 Darren Waller Darren Waller #> 1625 Jason Witten Jason Witten #> 1626 Derek Carrier Derek Carrier #> 1627 Foster Moreau Foster Moreau #> 1628 De'Mornay Pierson-El De'Mornay Pierson-El #> 1629 Robert Davis Robert Davis #> 1630 Henry Ruggs Henry Ruggs #> 1631 Trey Quinn Trey Quinn #> 1632 Tyrell Williams Tyrell Williams #> 1633 Zay Jones Zay Jones #> 1634 Jalin Marshall Jalin Marshall #> 1635 Hunter Renfrow Hunter Renfrow #> 1636 Marcell Ateman Marcell Ateman #> 1637 Bryan Edwards Bryan Edwards #> 1638 Nelson Agholor Nelson Agholor #> 1639 Keelan Doss Keelan Doss #> 1640 Cameron Tom Cameron Tom #> 1641 Tyler Gauthier Tyler Gauthier #> 1642 Michael Deiter Michael Deiter #> 1643 Ted Karras Ted Karras #> 1644 Jamal Perry Jamal Perry #> 1645 Byron Jones Byron Jones #> 1646 Akeem King Akeem King #> 1647 Noah Igbinoghene Noah Igbinoghene #> 1648 Nik Needham Nik Needham #> 1649 Xavien Howard Xavien Howard #> 1650 Bobby McCain Bobby McCain #> 1651 Brandon Jones Brandon Jones #> 1652 Brian Cole Brian Cole #> 1653 Kavon Frazier Kavon Frazier #> 1654 Javaris Davis Javaris Davis #> 1655 Nate Holley Nate Holley #> 1656 Tino Ellis Tino Ellis #> 1657 Zach Sieler Zach Sieler #> 1658 Nick Coe Nick Coe #> 1659 Tyshun Render Tyshun Render #> 1660 Christian Wilkins Christian Wilkins #> 1661 Emmanuel Ogbah Emmanuel Ogbah #> 1662 Jason Strowbridge Jason Strowbridge #> 1663 Jonathan Ledbetter Jonathan Ledbetter #> 1664 Durval Queiroz Neto Durval Queiroz Neto #> 1665 Benito Jones Benito Jones #> 1666 Ray Smith Ray Smith #> 1667 Chandler Cox Chandler Cox #> 1668 Adam Pankey Adam Pankey #> 1669 Ereck Flowers Ereck Flowers #> 1670 Solomon Kindley Solomon Kindley #> 1671 Jason Sanders Jason Sanders #> 1672 Andrew Van Ginkel Andrew Van Ginkel #> 1673 Shaq Lawson Shaq Lawson #> 1674 Vince Biegel Vince Biegel #> 1675 Kamu Grugier-Hill Kamu Grugier-Hill #> 1676 Calvin Munson Calvin Munson #> 1677 Kyle Van Noy Kyle Van Noy #> 1678 Sam Eguavoen Sam Eguavoen #> 1679 Kylan Johnson Kylan Johnson #> 1680 Jerome Baker Jerome Baker #> 1681 Elandon Roberts Elandon Roberts #> 1682 Donald Payne Donald Payne #> 1683 Rex Sunahara Rex Sunahara #> 1684 Blake Ferguson Blake Ferguson #> 1685 Raekwon Davis Raekwon Davis #> 1686 Davon Godchaux Davon Godchaux #> 1687 Matt Haack Matt Haack #> 1688 Jake Rudock Jake Rudock #> 1689 Tua Tagovailoa Tua Tagovailoa #> 1690 Reid Sinnett Reid Sinnett #> 1691 Ryan Fitzpatrick Ryan Fitzpatrick #> 1692 Patrick Laird Patrick Laird #> 1693 Salvon Ahmed Salvon Ahmed #> 1694 Matt Breida Matt Breida #> 1695 Myles Gaskin Myles Gaskin #> 1696 Malcolm Perry Malcolm Perry #> 1697 DeAndre Washington DeAndre Washington #> 1698 Jordan Scarlett Jordan Scarlett #> 1699 Lynn Bowden Lynn Bowden #> 1700 Clayton Fejedelem Clayton Fejedelem #> 1701 Eric Rowe Eric Rowe #> 1702 Robert Hunt Robert Hunt #> 1703 Jonathan Hubbard Jonathan Hubbard #> 1704 Julien Davenport Julien Davenport #> 1705 Austin Jackson Austin Jackson #> 1706 Jesse Davis Jesse Davis #> 1707 Durham Smythe Durham Smythe #> 1708 Adam Shaheen Adam Shaheen #> 1709 Chris Myarick Chris Myarick #> 1710 Mike Gesicki Mike Gesicki #> 1711 Albert Wilson Albert Wilson #> 1712 Kirk Merritt Kirk Merritt #> 1713 Mack Hollins Mack Hollins #> 1714 Jakeem Grant Jakeem Grant #> 1715 DeVante Parker DeVante Parker #> 1716 Allen Hurns Allen Hurns #> 1717 Andre Patton Andre Patton #> 1718 Isaiah Ford Isaiah Ford #> 1719 Preston Williams Preston Williams #> 1720 Garrett Bradbury Garrett Bradbury #> 1721 Brett Jones Brett Jones #> 1722 Cameron Dantzler Cameron Dantzler #> 1723 Mike Hughes Mike Hughes #> 1724 Harrison Hand Harrison Hand #> 1725 Jeff Gladney Jeff Gladney #> 1726 Holton Hill Holton Hill #> 1727 Dylan Mabin Dylan Mabin #> 1728 Marcus Sayles Marcus Sayles #> 1729 Chris Jones Chris Jones #> 1730 Cordrea Tankersley Cordrea Tankersley #> 1731 Tae Hayes Tae Hayes #> 1732 Kris Boyd Kris Boyd #> 1733 George Iloka George Iloka #> 1734 Anthony Harris Anthony Harris #> 1735 Curtis Riley Curtis Riley #> 1736 Myles Dorn Myles Dorn #> 1737 Josh Metellus Josh Metellus #> 1738 Luther Kirk Luther Kirk #> 1739 Ifeadi Odenigbo Ifeadi Odenigbo #> 1740 Danielle Hunter Danielle Hunter #> 1741 Jalyn Holmes Jalyn Holmes #> 1742 Eddie Yarbrough Eddie Yarbrough #> 1743 Abdullah Anderson Abdullah Anderson #> 1744 Kenny Willekes Kenny Willekes #> 1745 D.J. Wonnum D.J. Wonnum #> 1746 James Lynch James Lynch #> 1747 Hercules Mata'afa Hercules Mata'afa #> 1748 Jaleel Johnson Jaleel Johnson #> 1749 C.J. Ham C.J. Ham #> 1750 Zack Bailey Zack Bailey #> 1751 Dru Samia Dru Samia #> 1752 Dakota Dozier Dakota Dozier #> 1753 Ezra Cleveland Ezra Cleveland #> 1754 Kyle Hinton Kyle Hinton #> 1755 Dan Bailey Dan Bailey #> 1756 Taylor Bertolet Taylor Bertolet #> 1757 Greg Joseph Greg Joseph #> 1758 Cameron Smith Cameron Smith #> 1759 Hardy Nickerson Hardy Nickerson #> 1760 Eric Kendricks Eric Kendricks #> 1761 Blake Lynch Blake Lynch #> 1762 Ben Gedeon Ben Gedeon #> 1763 Eric Wilson Eric Wilson #> 1764 Ryan Connelly Ryan Connelly #> 1765 Anthony Barr Anthony Barr #> 1766 Jordan Brailford Jordan Brailford #> 1767 Todd Davis Todd Davis #> 1768 Troy Dye Troy Dye #> 1769 Austin Cutting Austin Cutting #> 1770 Andrew DePaola Andrew DePaola #> 1771 Shamar Stephen Shamar Stephen #> 1772 Michael Pierce Michael Pierce #> 1773 Armon Watts Armon Watts #> 1774 Britton Colquitt Britton Colquitt #> 1775 Jake Browning Jake Browning #> 1776 Kirk Cousins Kirk Cousins #> 1777 Nate Stanley Nate Stanley #> 1778 Sean Mannion Sean Mannion #> 1779 Ameer Abdullah Ameer Abdullah #> 1780 Jake Bargas Jake Bargas #> 1781 Mike Boone Mike Boone #> 1782 Dalvin Cook Dalvin Cook #> 1783 Alexander Mattison Alexander Mattison #> 1784 Harrison Smith Harrison Smith #> 1785 Rashod Hill Rashod Hill #> 1786 Riley Reiff Riley Reiff #> 1787 Brian O'Neill Brian O'Neill #> 1788 Olisaemeka Udoh Olisaemeka Udoh #> 1789 Blake Brandel Blake Brandel #> 1790 Brandon Dillon Brandon Dillon #> 1791 Kyle Rudolph Kyle Rudolph #> 1792 Irv Smith Irv Smith #> 1793 Hale Hentges Hale Hentges #> 1794 Tyler Conklin Tyler Conklin #> 1795 Chad Beebe Chad Beebe #> 1796 K.J. Osborn K.J. Osborn #> 1797 Adam Thielen Adam Thielen #> 1798 Olabisi Johnson Olabisi Johnson #> 1799 Dan Chisena Dan Chisena #> 1800 Justin Jefferson Justin Jefferson #> 1801 Corey Levin Corey Levin #> 1802 Dustin Woodard Dustin Woodard #> 1803 James Ferentz James Ferentz #> 1804 David Andrews David Andrews #> 1805 Marcus Martin Marcus Martin #> 1806 Justin Bethel Justin Bethel #> 1807 D'Angelo Ross D'Angelo Ross #> 1808 Stephon Gilmore Stephon Gilmore #> 1809 Michael Jackson Michael Jackson #> 1810 Jason McCourty Jason McCourty #> 1811 Jonathan Jones Jonathan Jones #> 1812 Joejuan Williams Joejuan Williams #> 1813 J.C. Jackson J.C. Jackson #> 1814 Dee Virgin Dee Virgin #> 1815 Kyle Dugger Kyle Dugger #> 1816 Myles Bryant Myles Bryant #> 1817 Devin McCourty Devin McCourty #> 1818 Nick Thurman Nick Thurman #> 1819 John Simon John Simon #> 1820 Deatrich Wise Deatrich Wise #> 1821 Chase Winovich Chase Winovich #> 1822 Tashawn Bower Tashawn Bower #> 1823 Bill Murray Bill Murray #> 1824 Adam Butler Adam Butler #> 1825 Lawrence Guy Lawrence Guy #> 1826 Michael Barnett Michael Barnett #> 1827 Akeem Spence Akeem Spence #> 1828 Byron Cowart Byron Cowart #> 1829 Dan Vitale Dan Vitale #> 1830 Jakob Johnson Jakob Johnson #> 1831 Shaquille Mason Shaquille Mason #> 1832 Ross Reynolds Ross Reynolds #> 1833 Michael Onwenu Michael Onwenu #> 1834 Jordan Roos Jordan Roos #> 1835 Najee Toran Najee Toran #> 1836 Nick Folk Nick Folk #> 1837 Justin Rohrwasser Justin Rohrwasser #> 1838 Roberto Aguayo Roberto Aguayo #> 1839 Terez Hall Terez Hall #> 1840 Anfernee Jennings Anfernee Jennings #> 1841 Brandon King Brandon King #> 1842 Cassh Maluia Cassh Maluia #> 1843 Shilique Calhoun Shilique Calhoun #> 1844 Josh Uche Josh Uche #> 1845 Ja'Whaun Bentley Ja'Whaun Bentley #> 1846 Dont'a Hightower Dont'a Hightower #> 1847 Brandon Copeland Brandon Copeland #> 1848 Joe Cardona Joe Cardona #> 1849 Carl Davis Carl Davis #> 1850 Beau Allen Beau Allen #> 1851 Jake Bailey Jake Bailey #> 1852 Cam Newton Cam Newton #> 1853 Brian Hoyer Brian Hoyer #> 1854 Jacob Dolegala Jacob Dolegala #> 1855 Jarrett Stidham Jarrett Stidham #> 1856 James White James White #> 1857 Sony Michel Sony Michel #> 1858 Rex Burkhead Rex Burkhead #> 1859 Damien Harris Damien Harris #> 1860 Brandon Bolden Brandon Bolden #> 1861 J.J. Taylor J.J. Taylor #> 1862 Patrick Chung Patrick Chung #> 1863 Cody Davis Cody Davis #> 1864 Adrian Phillips Adrian Phillips #> 1865 Terrence Brooks Terrence Brooks #> 1866 Justin Herron Justin Herron #> 1867 Yodny Cajuste Yodny Cajuste #> 1868 Korey Cunningham Korey Cunningham #> 1869 Jermaine Eluemunor Jermaine Eluemunor #> 1870 Joe Thuney Joe Thuney #> 1871 Marcus Cannon Marcus Cannon #> 1872 Caleb Benenoch Caleb Benenoch #> 1873 Isaiah Wynn Isaiah Wynn #> 1874 David Wells David Wells #> 1875 Dalton Keene Dalton Keene #> 1876 Matt LaCosse Matt LaCosse #> 1877 Devin Asiasi Devin Asiasi #> 1878 Ryan Izzo Ryan Izzo #> 1879 Jake Burt Jake Burt #> 1880 Rashod Berry Rashod Berry #> 1881 Quincy Adeboyejo Quincy Adeboyejo #> 1882 Damiere Byrd Damiere Byrd #> 1883 Jakobi Meyers Jakobi Meyers #> 1884 Isaiah Zuber Isaiah Zuber #> 1885 Julian Edelman Julian Edelman #> 1886 Devin Smith Devin Smith #> 1887 Devin Ross Devin Ross #> 1888 Gunner Olszewski Gunner Olszewski #> 1889 Kristian Wilkerson Kristian Wilkerson #> 1890 Donte Moncrief Donte Moncrief #> 1891 Matt Slater Matt Slater #> 1892 Marqise Lee Marqise Lee #> 1893 N'Keal Harry N'Keal Harry #> 1894 Will Clapp Will Clapp #> 1895 Erik McCoy Erik McCoy #> 1896 Patrick Robinson Patrick Robinson #> 1897 Janoris Jenkins Janoris Jenkins #> 1898 Grant Haley Grant Haley #> 1899 Marshon Lattimore Marshon Lattimore #> 1900 Justin Hardee Justin Hardee #> 1901 Ken Crawley Ken Crawley #> 1902 Johnson Bademosi Johnson Bademosi #> 1903 P.J. Williams P.J. Williams #> 1904 Marcus Williams Marcus Williams #> 1905 Keith Washington Keith Washington #> 1906 D.J. Swearinger D.J. Swearinger #> 1907 Anthony Lanier Anthony Lanier #> 1908 Will Clarke Will Clarke #> 1909 Trey Hendrickson Trey Hendrickson #> 1910 Noah Spence Noah Spence #> 1911 Cameron Jordan Cameron Jordan #> 1912 Marcus Davenport Marcus Davenport #> 1913 Carl Granderson Carl Granderson #> 1914 Marcus Willoughby Marcus Willoughby #> 1915 Malcolm Roach Malcolm Roach #> 1916 Shy Tuttle Shy Tuttle #> 1917 Jalen Dalton Jalen Dalton #> 1918 Ryan Glasgow Ryan Glasgow #> 1919 Anthony Zettel Anthony Zettel #> 1920 David Onyemata David Onyemata #> 1921 Christian Ringo Christian Ringo #> 1922 Sheldon Rankins Sheldon Rankins #> 1923 Malcom Brown Malcom Brown #> 1924 Michael Burton Michael Burton #> 1925 Andrus Peat Andrus Peat #> 1926 Derrick Kelly Derrick Kelly #> 1927 Cesar Ruiz Cesar Ruiz #> 1928 James Hurst James Hurst #> 1929 Nick Easton Nick Easton #> 1930 Blair Walsh Blair Walsh #> 1931 Wil Lutz Wil Lutz #> 1932 Chase Hansen Chase Hansen #> 1933 Demario Davis Demario Davis #> 1934 Zack Baun Zack Baun #> 1935 Alex Anzalone Alex Anzalone #> 1936 Craig Robertson Craig Robertson #> 1937 Kaden Elliss Kaden Elliss #> 1938 Kwon Alexander Kwon Alexander #> 1939 Andrew Dowell Andrew Dowell #> 1940 John Denney John Denney #> 1941 Zach Wood Zach Wood #> 1942 Blake Gillikin Blake Gillikin #> 1943 Thomas Morstead Thomas Morstead #> 1944 Jameis Winston Jameis Winston #> 1945 Drew Brees Drew Brees #> 1946 Taysom Hill Taysom Hill #> 1947 Trevor Siemian Trevor Siemian #> 1948 Ty Montgomery Ty Montgomery #> 1949 Tony Jones Tony Jones #> 1950 Alvin Kamara Alvin Kamara #> 1951 Darnell Holland Darnell Holland #> 1952 Latavius Murray Latavius Murray #> 1953 Dwayne Washington Dwayne Washington #> 1954 J.T. Gray J.T. Gray #> 1955 Malcolm Jenkins Malcolm Jenkins #> 1956 Chauncey Gardner-Johnson Chauncey Gardner-Johnson #> 1957 Ethan Greenidge Ethan Greenidge #> 1958 Calvin Throckmorton Calvin Throckmorton #> 1959 Ryan Ramczyk Ryan Ramczyk #> 1960 Terron Armstead Terron Armstead #> 1961 Adam Trautman Adam Trautman #> 1962 Josh Hill Josh Hill #> 1963 Ethan Wolf Ethan Wolf #> 1964 Cole Wick Cole Wick #> 1965 Jared Cook Jared Cook #> 1966 Garrett Griffin Garrett Griffin #> 1967 Jason Vander Laan Jason Vander Laan #> 1968 Michael Thomas Michael Thomas #> 1969 Bennie Fowler Bennie Fowler #> 1970 Tre'Quan Smith Tre'Quan Smith #> 1971 Deonte Harris Deonte Harris #> 1972 Malik Henry Malik Henry #> 1973 Lil'Jordan Humphrey Lil'Jordan Humphrey #> 1974 Austin Carr Austin Carr #> 1975 Tommylee Lewis Tommylee Lewis #> 1976 Juwan Johnson Juwan Johnson #> 1977 Emmanuel Sanders Emmanuel Sanders #> 1978 Marquez Callaway Marquez Callaway #> 1979 Jake Lampman Jake Lampman #> 1980 Nick Gates Nick Gates #> 1981 Spencer Pulley Spencer Pulley #> 1982 Jonotthan Harrison Jonotthan Harrison #> 1983 Isaac Yiadom Isaac Yiadom #> 1984 Sam Beal Sam Beal #> 1985 Ryan Lewis Ryan Lewis #> 1986 Quincy Wilson Quincy Wilson #> 1987 Darnay Holmes Darnay Holmes #> 1988 James Bradberry James Bradberry #> 1989 Jarren Williams Jarren Williams #> 1990 Adrian Colbert Adrian Colbert #> 1991 Julian Love Julian Love #> 1992 Madre Harper Madre Harper #> 1993 Logan Ryan Logan Ryan #> 1994 Xavier McKinney Xavier McKinney #> 1995 Breeland Speaks Breeland Speaks #> 1996 R.J. McIntosh R.J. McIntosh #> 1997 Niko Lalos Niko Lalos #> 1998 Dexter Lawrence Dexter Lawrence #> 1999 Jabaal Sheard Jabaal Sheard #> 2000 Leonard Williams Leonard Williams #> 2001 B.J. Hill B.J. Hill #> 2002 David Moa David Moa #> 2003 Elijhaa Penny Elijhaa Penny #> 2004 Chad Slade Chad Slade #> 2005 Will Hernandez Will Hernandez #> 2006 Kevin Zeitler Kevin Zeitler #> 2007 Shane Lemieux Shane Lemieux #> 2008 Kenny Wiggins Kenny Wiggins #> 2009 Graham Gano Graham Gano #> 2010 David Mayo David Mayo #> 2011 Cam Brown Cam Brown #> 2012 Lorenzo Carter Lorenzo Carter #> 2013 Trent Harris Trent Harris #> 2014 Tae Crowder Tae Crowder #> 2015 Carter Coughlin Carter Coughlin #> 2016 Oshane Ximines Oshane Ximines #> 2017 Devante Downs Devante Downs #> 2018 Blake Martinez Blake Martinez #> 2019 Jermaine Grace Jermaine Grace #> 2020 T.J. Brunson T.J. Brunson #> 2021 Kyler Fackrell Kyler Fackrell #> 2022 Carson Tinker Carson Tinker #> 2023 Casey Kreiter Casey Kreiter #> 2024 Austin Johnson Austin Johnson #> 2025 Dalvin Tomlinson Dalvin Tomlinson #> 2026 Ryan Santoso Ryan Santoso #> 2027 Riley Dixon Riley Dixon #> 2028 Daniel Jones Daniel Jones #> 2029 Colt McCoy Colt McCoy #> 2030 Joe Webb Joe Webb #> 2031 Clayton Thorson Clayton Thorson #> 2032 Alex Tanney Alex Tanney #> 2033 Sandro Platzgummer Sandro Platzgummer #> 2034 Dion Lewis Dion Lewis #> 2035 Wayne Gallman Wayne Gallman #> 2036 Taquan Mizzell Taquan Mizzell #> 2037 Jordan Chunn Jordan Chunn #> 2038 Rod Smith Rod Smith #> 2039 Saquon Barkley Saquon Barkley #> 2040 Alfred Morris Alfred Morris #> 2041 Jabrill Peppers Jabrill Peppers #> 2042 Nate Ebner Nate Ebner #> 2043 Montre Hartage Montre Hartage #> 2044 Matt Peart Matt Peart #> 2045 Jackson Barton Jackson Barton #> 2046 Nate Wozniak Nate Wozniak #> 2047 Andrew Thomas Andrew Thomas #> 2048 Cameron Fleming Cameron Fleming #> 2049 Kyle Murphy Kyle Murphy #> 2050 Nate Solder Nate Solder #> 2051 Evan Engram Evan Engram #> 2052 Kaden Smith Kaden Smith #> 2053 Rysen John Rysen John #> 2054 Levine Toilolo Levine Toilolo #> 2055 Da'Mari Scott Da'Mari Scott #> 2056 Golden Tate Golden Tate #> 2057 Johnny Holton Johnny Holton #> 2058 C.J. Board C.J. Board #> 2059 Austin Mack Austin Mack #> 2060 Darius Slayton Darius Slayton #> 2061 Alex Bachman Alex Bachman #> 2062 David Sills David Sills #> 2063 Dante Pettis Dante Pettis #> 2064 Cody Core Cody Core #> 2065 Sterling Shepard Sterling Shepard #> 2066 Corey Coleman Corey Coleman #> 2067 Connor McGovern Connor McGovern #> 2068 Leo Koloamatangi Leo Koloamatangi #> 2069 James Murray James Murray #> 2070 Kyron Brown Kyron Brown #> 2071 Brian Poole Brian Poole #> 2072 Corey Ballentine Corey Ballentine #> 2073 Arthur Maulet Arthur Maulet #> 2074 Blessuan Austin Blessuan Austin #> 2075 Matthias Farley Matthias Farley #> 2076 Zane Lewis Zane Lewis #> 2077 Bryce Hall Bryce Hall #> 2078 Marcus Maye Marcus Maye #> 2079 Javelin Guidry Javelin Guidry #> 2080 Lamar Jackson Lamar Jackson #> 2081 Bennett Jackson Bennett Jackson #> 2082 Saquan Hampton Saquan Hampton #> 2083 Elijah Campbell Elijah Campbell #> 2084 Kyle Phillips Kyle Phillips #> 2085 John Franklin-Myers John Franklin-Myers #> 2086 Jabari Zuniga Jabari Zuniga #> 2087 Bryce Huff Bryce Huff #> 2088 Henry Anderson Henry Anderson #> 2089 Folorunso Fatukasi Folorunso Fatukasi #> 2090 Trevon Coley Trevon Coley #> 2091 Tanzel Smart Tanzel Smart #> 2092 Nathan Shepherd Nathan Shepherd #> 2093 Josh Andrews Josh Andrews #> 2094 Pat Elflein Pat Elflein #> 2095 Greg Van Roten Greg Van Roten #> 2096 Sergio Castillo Sergio Castillo #> 2097 Chase McLaughlin Chase McLaughlin #> 2098 Sam Ficken Sam Ficken #> 2099 Alec Ogletree Alec Ogletree #> 2100 Brady Sheldon Brady Sheldon #> 2101 Paul Worrilow Paul Worrilow #> 2102 Patrick Onwuasor Patrick Onwuasor #> 2103 C.J. Mosley C.J. Mosley #> 2104 Neville Hewitt Neville Hewitt #> 2105 Blake Cashman Blake Cashman #> 2106 Tarell Basham Tarell Basham #> 2107 Noah Dawkins Noah Dawkins #> 2108 Jordan Jenkins Jordan Jenkins #> 2109 Frankie Luvu Frankie Luvu #> 2110 Harvey Langi Harvey Langi #> 2111 Bryce Hager Bryce Hager #> 2112 Sharif Finch Sharif Finch #> 2113 Thomas Hennessy Thomas Hennessy #> 2114 Quinnen Williams Quinnen Williams #> 2115 Braden Mann Braden Mann #> 2116 Brandon Silvers Brandon Silvers #> 2117 David Fales David Fales #> 2118 Mike White Mike White #> 2119 Joe Flacco Joe Flacco #> 2120 James Morgan James Morgan #> 2121 Sam Darnold Sam Darnold #> 2122 Ty Johnson Ty Johnson #> 2123 Pete Guerriero Pete Guerriero #> 2124 La'Mical Perine La'Mical Perine #> 2125 Jalin Moore Jalin Moore #> 2126 Frank Gore Frank Gore #> 2127 Josh Adams Josh Adams #> 2128 J.T. Hassell J.T. Hassell #> 2129 Ashtyn Davis Ashtyn Davis #> 2130 Bradley McDougald Bradley McDougald #> 2131 Cameron Clark Cameron Clark #> 2132 Alex Lewis Alex Lewis #> 2133 Conor McDermott Conor McDermott #> 2134 George Fant George Fant #> 2135 Mekhi Becton Mekhi Becton #> 2136 Chuma Edoga Chuma Edoga #> 2137 Ross Travis Ross Travis #> 2138 Christopher Herndon Christopher Herndon #> 2139 Trevon Wesco Trevon Wesco #> 2140 Connor Davis Connor Davis #> 2141 Ryan Griffin Ryan Griffin #> 2142 Jamison Crowder Jamison Crowder #> 2143 Braxton Berrios Braxton Berrios #> 2144 Josh Malone Josh Malone #> 2145 D.J. Montgomery D.J. Montgomery #> 2146 Josh Doctson Josh Doctson #> 2147 Jeff Smith Jeff Smith #> 2148 Denzel Mims Denzel Mims #> 2149 Jaleel Scott Jaleel Scott #> 2150 Lawrence Cager Lawrence Cager #> 2151 Chris Hogan Chris Hogan #> 2152 Vyncint Smith Vyncint Smith #> 2153 Daniel Brown Daniel Brown #> 2154 Breshad Perriman Breshad Perriman #> 2155 Luke Juriga Luke Juriga #> 2156 Jason Kelce Jason Kelce #> 2157 Ross Pierschbacher Ross Pierschbacher #> 2158 Darius Slay Darius Slay #> 2159 Kevon Seymour Kevon Seymour #> 2160 Nickell Robey-Coleman Nickell Robey-Coleman #> 2161 Cre'von LeBlanc Cre'von LeBlanc #> 2162 Craig James Craig James #> 2163 Avonte Maddox Avonte Maddox #> 2164 Michael Jacquet Michael Jacquet #> 2165 Lavert Hill Lavert Hill #> 2166 Rodney McLeod Rodney McLeod #> 2167 Shakial Taylor Shakial Taylor #> 2168 Elijah Riley Elijah Riley #> 2169 K'Von Wallace K'Von Wallace #> 2170 Grayland Arnold Grayland Arnold #> 2171 Jameson Houston Jameson Houston #> 2172 Josh Sweat Josh Sweat #> 2173 Brandon Graham Brandon Graham #> 2174 Vinny Curry Vinny Curry #> 2175 Matt Leo Matt Leo #> 2176 Joe Ostman Joe Ostman #> 2177 Derek Barnett Derek Barnett #> 2178 Raequan Williams Raequan Williams #> 2179 Fletcher Cox Fletcher Cox #> 2180 Javon Hargrave Javon Hargrave #> 2181 Hassan Ridgeway Hassan Ridgeway #> 2182 Malik Jackson Malik Jackson #> 2183 T.Y. McGill T.Y. McGill #> 2184 Treyvon Hester Treyvon Hester #> 2185 Isaac Seumalo Isaac Seumalo #> 2186 Brandon Brooks Brandon Brooks #> 2187 Nate Herbig Nate Herbig #> 2188 Jamon Brown Jamon Brown #> 2189 Matt Pryor Matt Pryor #> 2190 Iosua Opeta Iosua Opeta #> 2191 Jake Elliott Jake Elliott #> 2192 Genard Avery Genard Avery #> 2193 T.J. Edwards T.J. Edwards #> 2194 Shaun Bradley Shaun Bradley #> 2195 Jatavis Brown Jatavis Brown #> 2196 Duke Riley Duke Riley #> 2197 Rashad Smith Rashad Smith #> 2198 Alex Singleton Alex Singleton #> 2199 Davion Taylor Davion Taylor #> 2200 Nathan Gerry Nathan Gerry #> 2201 Joe Bachie Joe Bachie #> 2202 Rick Lovato Rick Lovato #> 2203 Cameron Johnston Cameron Johnston #> 2204 Arryn Siposs Arryn Siposs #> 2205 Nate Sudfeld Nate Sudfeld #> 2206 Jalen Hurts Jalen Hurts #> 2207 Carson Wentz Carson Wentz #> 2208 Nico Evans Nico Evans #> 2209 Jordan Howard Jordan Howard #> 2210 Elijah Holyfield Elijah Holyfield #> 2211 Miles Sanders Miles Sanders #> 2212 Adrian Killins Adrian Killins #> 2213 Boston Scott Boston Scott #> 2214 Corey Clement Corey Clement #> 2215 Jason Huntley Jason Huntley #> 2216 Marcus Epps Marcus Epps #> 2217 Rudy Ford Rudy Ford #> 2218 Jalen Mills Jalen Mills #> 2219 Blake Countess Blake Countess #> 2220 Lane Johnson Lane Johnson #> 2221 Jordan Mailata Jordan Mailata #> 2222 Brett Toth Brett Toth #> 2223 Jack Driscoll Jack Driscoll #> 2224 Andre Dillard Andre Dillard #> 2225 Jason Peters Jason Peters #> 2226 Zach Ertz Zach Ertz #> 2227 Joshua Perkins Joshua Perkins #> 2228 Tyree Jackson Tyree Jackson #> 2229 Jason Croom Jason Croom #> 2230 Dallas Goedert Dallas Goedert #> 2231 Caleb Wilson Caleb Wilson #> 2232 Hakeem Butler Hakeem Butler #> 2233 Richard Rodgers Richard Rodgers #> 2234 Marquise Goodwin Marquise Goodwin #> 2235 Greg Ward Greg Ward #> 2236 Deontay Burnett Deontay Burnett #> 2237 Travis Fulgham Travis Fulgham #> 2238 Jalen Reagor Jalen Reagor #> 2239 Marcus Green Marcus Green #> 2240 Quez Watkins Quez Watkins #> 2241 J.J. Arcega-Whiteside J.J. Arcega-Whiteside #> 2242 Alshon Jeffery Alshon Jeffery #> 2243 DeSean Jackson DeSean Jackson #> 2244 John Hightower John Hightower #> 2245 Maurkice Pouncey Maurkice Pouncey #> 2246 J.C. Hassenauer J.C. Hassenauer #> 2247 Justin Layne Justin Layne #> 2248 Trevor Williams Trevor Williams #> 2249 Cameron Sutton Cameron Sutton #> 2250 Joe Haden Joe Haden #> 2251 Mike Hilton Mike Hilton #> 2252 James Pierre James Pierre #> 2253 Stephen Denmark Stephen Denmark #> 2254 Steven Nelson Steven Nelson #> 2255 Antoine Brooks Antoine Brooks #> 2256 Sean Davis Sean Davis #> 2257 Marcus Allen Marcus Allen #> 2258 Chris Wormley Chris Wormley #> 2259 Cassius Marsh Cassius Marsh #> 2260 Henry Mondeaux Henry Mondeaux #> 2261 Isaiah Buggs Isaiah Buggs #> 2262 Tyson Alualu Tyson Alualu #> 2263 Stephon Tuitt Stephon Tuitt #> 2264 Calvin Taylor Calvin Taylor #> 2265 Cameron Heyward Cameron Heyward #> 2266 Carlos Davis Carlos Davis #> 2267 Demarcus Christmas Demarcus Christmas #> 2268 Derek Watt Derek Watt #> 2269 Kevin Dotson Kevin Dotson #> 2270 Danny Isidora Danny Isidora #> 2271 David DeCastro David DeCastro #> 2272 Chris Boswell Chris Boswell #> 2273 Olasunkanmi Adeniyi Olasunkanmi Adeniyi #> 2274 Robert Spillane Robert Spillane #> 2275 Vince Williams Vince Williams #> 2276 Bud Dupree Bud Dupree #> 2277 Tegray Scales Tegray Scales #> 2278 Devin Bush Devin Bush #> 2279 T.J. Watt T.J. Watt #> 2280 Avery Williamson Avery Williamson #> 2281 Christian Kuntz Christian Kuntz #> 2282 Alex Highsmith Alex Highsmith #> 2283 Ulysees Gilbert Ulysees Gilbert #> 2284 Jayrone Elliott Jayrone Elliott #> 2285 Kameron Canaday Kameron Canaday #> 2286 Jordan Berry Jordan Berry #> 2287 Corliss Waitman Corliss Waitman #> 2288 Joshua Dobbs Joshua Dobbs #> 2289 Ben Roethlisberger Ben Roethlisberger #> 2290 Mason Rudolph Mason Rudolph #> 2291 Dwayne Haskins Dwayne Haskins #> 2292 Jaylen Samuels Jaylen Samuels #> 2293 Anthony McFarland Anthony McFarland #> 2294 Benny Snell Benny Snell #> 2295 Trey Edmunds Trey Edmunds #> 2296 Wendell Smallwood Wendell Smallwood #> 2297 James Conner James Conner #> 2298 Jordan Dangerfield Jordan Dangerfield #> 2299 Terrell Edmunds Terrell Edmunds #> 2300 John Battle John Battle #> 2301 Minkah Fitzpatrick Minkah Fitzpatrick #> 2302 Aviante Collins Aviante Collins #> 2303 Zach Banner Zach Banner #> 2304 Anthony Coyle Anthony Coyle #> 2305 Jerald Hawkins Jerald Hawkins #> 2306 Jarron Jones Jarron Jones #> 2307 Matt Feiler Matt Feiler #> 2308 Chukwuma Okorafor Chukwuma Okorafor #> 2309 Alejandro Villanueva Alejandro Villanueva #> 2310 Brandon Walton Brandon Walton #> 2311 John Leglue John Leglue #> 2312 Eric Ebron Eric Ebron #> 2313 Vance McDonald Vance McDonald #> 2314 Kevin Rader Kevin Rader #> 2315 Zach Gentry Zach Gentry #> 2316 Dax Raymond Dax Raymond #> 2317 Charles Jones Charles Jones #> 2318 Chase Claypool Chase Claypool #> 2319 Diontae Johnson Diontae Johnson #> 2320 Anthony Johnson Anthony Johnson #> 2321 James Washington James Washington #> 2322 Cody White Cody White #> 2323 Ray-Ray McCloud Ray-Ray McCloud #> 2324 JuJu Smith-Schuster JuJu Smith-Schuster #> 2325 Ethan Pocic Ethan Pocic #> 2326 Brad Lundblade Brad Lundblade #> 2327 Jayson Stanley Jayson Stanley #> 2328 Ryan Neal Ryan Neal #> 2329 Shaquill Griffin Shaquill Griffin #> 2330 Quinton Dunbar Quinton Dunbar #> 2331 Jordan Miller Jordan Miller #> 2332 Neiko Thorpe Neiko Thorpe #> 2333 Tre Flowers Tre Flowers #> 2334 Marquise Blair Marquise Blair #> 2335 Gavin Heslop Gavin Heslop #> 2336 Quandre Diggs Quandre Diggs #> 2337 Ugochukwu Amadi Ugochukwu Amadi #> 2338 D.J. Reed D.J. Reed #> 2339 Damarious Randall Damarious Randall #> 2340 Linden Stephens Linden Stephens #> 2341 Darrell Taylor Darrell Taylor #> 2342 Alton Robinson Alton Robinson #> 2343 Branden Jackson Branden Jackson #> 2344 Jonathan Bullard Jonathan Bullard #> 2345 Rasheem Green Rasheem Green #> 2346 Carlos Dunlap Carlos Dunlap #> 2347 L.J. Collier L.J. Collier #> 2348 Benson Mayowa Benson Mayowa #> 2349 Damontre Moore Damontre Moore #> 2350 Cedrick Lattimore Cedrick Lattimore #> 2351 Jarran Reed Jarran Reed #> 2352 Nick Bellore Nick Bellore #> 2353 Mike Iupati Mike Iupati #> 2354 Damien Lewis Damien Lewis #> 2355 Chance Warmack Chance Warmack #> 2356 Phil Haynes Phil Haynes #> 2357 Kyle Fuller Kyle Fuller #> 2358 Jordan Simmons Jordan Simmons #> 2359 Alex Boone Alex Boone #> 2360 Jason Myers Jason Myers #> 2361 Ben Burr-Kirven Ben Burr-Kirven #> 2362 Jordyn Brooks Jordyn Brooks #> 2363 Cody Barton Cody Barton #> 2364 Shaquem Griffin Shaquem Griffin #> 2365 Ray-Ray Armstrong Ray-Ray Armstrong #> 2366 D'Andre Walker D'Andre Walker #> 2367 Bobby Wagner Bobby Wagner #> 2368 Tim Williams Tim Williams #> 2369 Bruce Irvin Bruce Irvin #> 2370 K.J. Wright K.J. Wright #> 2371 Tyler Ott Tyler Ott #> 2372 Bryan Mone Bryan Mone #> 2373 Poona Ford Poona Ford #> 2374 Michael Dickson Michael Dickson #> 2375 Alex McGough Alex McGough #> 2376 Geno Smith Geno Smith #> 2377 Danny Etling Danny Etling #> 2378 Russell Wilson Russell Wilson #> 2379 Bo Scarbrough Bo Scarbrough #> 2380 Rashaad Penny Rashaad Penny #> 2381 Alex Collins Alex Collins #> 2382 Carlos Hyde Carlos Hyde #> 2383 Patrick Carr Patrick Carr #> 2384 DeeJay Dallas DeeJay Dallas #> 2385 Travis Homer Travis Homer #> 2386 Chris Carson Chris Carson #> 2387 Jamal Adams Jamal Adams #> 2388 Delano Hill Delano Hill #> 2389 Jamarco Jones Jamarco Jones #> 2390 Chad Wheeler Chad Wheeler #> 2391 Cedric Ogbuehi Cedric Ogbuehi #> 2392 Duane Brown Duane Brown #> 2393 Tommy Champion Tommy Champion #> 2394 Brandon Shell Brandon Shell #> 2395 Wyatt Miller Wyatt Miller #> 2396 Greg Olsen Greg Olsen #> 2397 Tyler Mabry Tyler Mabry #> 2398 Luke Willson Luke Willson #> 2399 Colby Parkinson Colby Parkinson #> 2400 Will Dissly Will Dissly #> 2401 Jacob Hollister Jacob Hollister #> 2402 Tyler Lockett Tyler Lockett #> 2403 John Ursua John Ursua #> 2404 Aaron Fuller Aaron Fuller #> 2405 Freddie Swain Freddie Swain #> 2406 Penny Hart Penny Hart #> 2407 Darvin Kidsy Darvin Kidsy #> 2408 Lance Lenoir Lance Lenoir #> 2409 David Moore David Moore #> 2410 DK Metcalf DK Metcalf #> 2411 Phillip Dorsett Phillip Dorsett #> 2412 Cody Thompson Cody Thompson #> 2413 Josh Gordon Josh Gordon #> 2414 Aaron Neary Aaron Neary #> 2415 Ben Garland Ben Garland #> 2416 Weston Richburg Weston Richburg #> 2417 Jake Brendel Jake Brendel #> 2418 Spencer Long Spencer Long #> 2419 Hroniss Grasu Hroniss Grasu #> 2420 Tim Harris Tim Harris #> 2421 Richard Sherman Richard Sherman #> 2422 Ahkello Witherspoon Ahkello Witherspoon #> 2423 Emmanuel Moseley Emmanuel Moseley #> 2424 Ken Webster Ken Webster #> 2425 Jamar Taylor Jamar Taylor #> 2426 K'Waun Williams K'Waun Williams #> 2427 Jason Verrett Jason Verrett #> 2428 Adonis Alexander Adonis Alexander #> 2429 Dontae Johnson Dontae Johnson #> 2430 Jared Mayden Jared Mayden #> 2431 Obi Melifonwu Obi Melifonwu #> 2432 Tarvarius Moore Tarvarius Moore #> 2433 Briean Boddy-Calhoun Briean Boddy-Calhoun #> 2434 Jimmie Ward Jimmie Ward #> 2435 Jordan Willis Jordan Willis #> 2436 Arik Armstead Arik Armstead #> 2437 Kentavius Street Kentavius Street #> 2438 Solomon Thomas Solomon Thomas #> 2439 Ezekiel Ansah Ezekiel Ansah #> 2440 Alex Barrett Alex Barrett #> 2441 Nick Bosa Nick Bosa #> 2442 Dion Jordan Dion Jordan #> 2443 Ronald Blair Ronald Blair #> 2444 Kerry Hyder Kerry Hyder #> 2445 Dee Ford Dee Ford #> 2446 Daeshon Hall Daeshon Hall #> 2447 Josiah Coatney Josiah Coatney #> 2448 Javon Kinlaw Javon Kinlaw #> 2449 Darrion Daniels Darrion Daniels #> 2450 D.J. Jones D.J. Jones #> 2451 Kevin Givens Kevin Givens #> 2452 Kyle Juszczyk Kyle Juszczyk #> 2453 Laken Tomlinson Laken Tomlinson #> 2454 Tony Bergstrom Tony Bergstrom #> 2455 Daniel Brunskill Daniel Brunskill #> 2456 Isaiah Williams Isaiah Williams #> 2457 Robbie Gould Robbie Gould #> 2458 Mark Nzeocha Mark Nzeocha #> 2459 Kiko Alonso Kiko Alonso #> 2460 Fred Warner Fred Warner #> 2461 Jonas Griffith Jonas Griffith #> 2462 Joe Walker Joe Walker #> 2463 Azeez Al-Shaair Azeez Al-Shaair #> 2464 Dre Greenlaw Dre Greenlaw #> 2465 Taybor Pepper Taybor Pepper #> 2466 Kyle Nelson Kyle Nelson #> 2467 Drew Kaser Drew Kaser #> 2468 Mitch Wishnowsky Mitch Wishnowsky #> 2469 Josh Johnson Josh Johnson #> 2470 Nick Mullens Nick Mullens #> 2471 Jimmy Garoppolo Jimmy Garoppolo #> 2472 Josh Rosen Josh Rosen #> 2473 C.J. Beathard C.J. Beathard #> 2474 Josh Hokit Josh Hokit #> 2475 Jerick McKinnon Jerick McKinnon #> 2476 Tyler Gaffney Tyler Gaffney #> 2477 Jeffery Wilson Jeffery Wilson #> 2478 Raheem Mostert Raheem Mostert #> 2479 Austin Walter Austin Walter #> 2480 Tevin Coleman Tevin Coleman #> 2481 Jamycal Hasty Jamycal Hasty #> 2482 Marcell Harris Marcell Harris #> 2483 Demetrius Flannigan-Fowles Demetrius Flannigan-Fowles #> 2484 Chris Edwards Chris Edwards #> 2485 Jaquiski Tartt Jaquiski Tartt #> 2486 Kai Nacua Kai Nacua #> 2487 Johnathan Cyprien Johnathan Cyprien #> 2488 Trent Williams Trent Williams #> 2489 Corbin Kaufusi Corbin Kaufusi #> 2490 Justin Skule Justin Skule #> 2491 Mike McGlinchey Mike McGlinchey #> 2492 Shon Coleman Shon Coleman #> 2493 Cody Conway Cody Conway #> 2494 Tom Compton Tom Compton #> 2495 Colton McKivitz Colton McKivitz #> 2496 Dakoda Shepley Dakoda Shepley #> 2497 Daniel Helm Daniel Helm #> 2498 Ross Dwelley Ross Dwelley #> 2499 Chase Harrell Chase Harrell #> 2500 Jordan Reed Jordan Reed #> 2501 Charlie Woerner Charlie Woerner #> 2502 George Kittle George Kittle #> 2503 Trent Taylor Trent Taylor #> 2504 Jalen Hurd Jalen Hurd #> 2505 Shawn Poindexter Shawn Poindexter #> 2506 Kendrick Bourne Kendrick Bourne #> 2507 Jordan Matthews Jordan Matthews #> 2508 Deebo Samuel Deebo Samuel #> 2509 Jauan Jennings Jauan Jennings #> 2510 Matt Cole Matt Cole #> 2511 Travis Benjamin Travis Benjamin #> 2512 Kevin White Kevin White #> 2513 Austin Proehl Austin Proehl #> 2514 Richie James Richie James #> 2515 River Cracraft River Cracraft #> 2516 Brandon Aiyuk Brandon Aiyuk #> 2517 Chris Thompson Chris Thompson #> 2518 A.Q. Shipley A.Q. Shipley #> 2519 Ryan Jensen Ryan Jensen #> 2520 Sean Murphy-Bunting Sean Murphy-Bunting #> 2521 Ryan Smith Ryan Smith #> 2522 Mazzi Wilkins Mazzi Wilkins #> 2523 Jamel Dean Jamel Dean #> 2524 Carlton Davis Carlton Davis #> 2525 Ross Cockrell Ross Cockrell #> 2526 Javon Hagan Javon Hagan #> 2527 Herb Miller Herb Miller #> 2528 Mike Edwards Mike Edwards #> 2529 Antoine Winfield Antoine Winfield #> 2530 Pat O'Connor Pat O'Connor #> 2531 Benning Potoa'e Benning Potoa'e #> 2532 Ndamukong Suh Ndamukong Suh #> 2533 Jason Pierre-Paul Jason Pierre-Paul #> 2534 Quinton Bell Quinton Bell #> 2535 William Gholston William Gholston #> 2536 Jeremiah Ledbetter Jeremiah Ledbetter #> 2537 Kobe Smith Kobe Smith #> 2538 Khalil Davis Khalil Davis #> 2539 Rakeem Nunez-Roches Rakeem Nunez-Roches #> 2540 D'Cota Dixon D'Cota Dixon #> 2541 John Molchon John Molchon #> 2542 Aaron Stinnie Aaron Stinnie #> 2543 Ali Marpet Ali Marpet #> 2544 Nick Leverett Nick Leverett #> 2545 Earl Watford Earl Watford #> 2546 Ted Larsen Ted Larsen #> 2547 Alex Cappa Alex Cappa #> 2548 Ryan Succop Ryan Succop #> 2549 Jack Cichy Jack Cichy #> 2550 Kevin Minter Kevin Minter #> 2551 Deone Bucannon Deone Bucannon #> 2552 Anthony Nelson Anthony Nelson #> 2553 Shaquil Barrett Shaquil Barrett #> 2554 Cam Gill Cam Gill #> 2555 Devin White Devin White #> 2556 Lavonte David Lavonte David #> 2557 Garrison Sanborn Garrison Sanborn #> 2558 Zach Triner Zach Triner #> 2559 Steve McLendon Steve McLendon #> 2560 Vita Vea Vita Vea #> 2561 Bradley Pinion Bradley Pinion #> 2562 Hayden Hunt Hayden Hunt #> 2563 Matt Wile Matt Wile #> 2564 Ryan Griffin Ryan Griffin #> 2565 Drew Stanton Drew Stanton #> 2566 Blaine Gabbert Blaine Gabbert #> 2567 Tom Brady Tom Brady #> 2568 Ronald Jones Ronald Jones #> 2569 LeSean McCoy LeSean McCoy #> 2570 Ke'Shawn Vaughn Ke'Shawn Vaughn #> 2571 Aca'Cedric Ware Aca'Cedric Ware #> 2572 Leonard Fournette Leonard Fournette #> 2573 Kenjon Barner Kenjon Barner #> 2574 C.J. Prosise C.J. Prosise #> 2575 T.J. Logan T.J. Logan #> 2576 Jordan Whitehead Jordan Whitehead #> 2577 Andrew Adams Andrew Adams #> 2578 Justin Evans Justin Evans #> 2579 Donovan Smith Donovan Smith #> 2580 Josh Wells Josh Wells #> 2581 Brad Seaton Brad Seaton #> 2582 Tristan Wirfs Tristan Wirfs #> 2583 Joe Haeg Joe Haeg #> 2584 O.J. Howard O.J. Howard #> 2585 Tanner Hudson Tanner Hudson #> 2586 Antony Auclair Antony Auclair #> 2587 Cameron Brate Cameron Brate #> 2588 Rob Gronkowski Rob Gronkowski #> 2589 Codey McElroy Codey McElroy #> 2590 Jaydon Mickens Jaydon Mickens #> 2591 Cyril Grayson Cyril Grayson #> 2592 Chris Godwin Chris Godwin #> 2593 Josh Pearson Josh Pearson #> 2594 Antonio Brown Antonio Brown #> 2595 John Franklin John Franklin #> 2596 Travis Jonsen Travis Jonsen #> 2597 Tyler Johnson Tyler Johnson #> 2598 Mike Evans Mike Evans #> 2599 Scott Miller Scott Miller #> 2600 Justin Watson Justin Watson #> 2601 Ben Jones Ben Jones #> 2602 Daniel Munyer Daniel Munyer #> 2603 Aaron Brewer Aaron Brewer #> 2604 Joshua Kalu Joshua Kalu #> 2605 Desmond King Desmond King #> 2606 Breon Borders Breon Borders #> 2607 Malcolm Butler Malcolm Butler #> 2608 Kristian Fulton Kristian Fulton #> 2609 Chris Jackson Chris Jackson #> 2610 Chris Milton Chris Milton #> 2611 Tye Smith Tye Smith #> 2612 Kareem Orr Kareem Orr #> 2613 Adoree' Jackson Adoree' Jackson #> 2614 Amani Hooker Amani Hooker #> 2615 Maurice Smith Maurice Smith #> 2616 Kevin Byard Kevin Byard #> 2617 Jadeveon Clowney Jadeveon Clowney #> 2618 Wyatt Ray Wyatt Ray #> 2619 Nate Orchard Nate Orchard #> 2620 Jeffery Simmons Jeffery Simmons #> 2621 Teair Tart Teair Tart #> 2622 Daylon Mack Daylon Mack #> 2623 Jullian Taylor Jullian Taylor #> 2624 Jack Crawford Jack Crawford #> 2625 Larrell Murchison Larrell Murchison #> 2626 Matt Dickerson Matt Dickerson #> 2627 Khari Blasingame Khari Blasingame #> 2628 Rodger Saffold Rodger Saffold #> 2629 David Quessenberry David Quessenberry #> 2630 Nate Davis Nate Davis #> 2631 Jamil Douglas Jamil Douglas #> 2632 Giorgio Tavecchio Giorgio Tavecchio #> 2633 Tucker McCann Tucker McCann #> 2634 Sam Sloman Sam Sloman #> 2635 Stephen Gostkowski Stephen Gostkowski #> 2636 Derick Roberson Derick Roberson #> 2637 Nick Dzubnar Nick Dzubnar #> 2638 Will Compton Will Compton #> 2639 Harold Landry Harold Landry #> 2640 Daren Bates Daren Bates #> 2641 Davin Bellamy Davin Bellamy #> 2642 Tuzar Skipper Tuzar Skipper #> 2643 Rashaan Evans Rashaan Evans #> 2644 Brooks Reed Brooks Reed #> 2645 Jayon Brown Jayon Brown #> 2646 David Long David Long #> 2647 Matt Orzech Matt Orzech #> 2648 Beau Brinkley Beau Brinkley #> 2649 Matt Overton Matt Overton #> 2650 DaQuan Jones DaQuan Jones #> 2651 Miles Brown Miles Brown #> 2652 Brett Kern Brett Kern #> 2653 Trevor Daniel Trevor Daniel #> 2654 Ryan Tannehill Ryan Tannehill #> 2655 DeShone Kizer DeShone Kizer #> 2656 Logan Woodside Logan Woodside #> 2657 Darrynton Evans Darrynton Evans #> 2658 Jeremy McNichols Jeremy McNichols #> 2659 Derrick Henry Derrick Henry #> 2660 D'Onta Foreman D'Onta Foreman #> 2661 Senorise Perry Senorise Perry #> 2662 Kenny Vaccaro Kenny Vaccaro #> 2663 Dane Cruikshank Dane Cruikshank #> 2664 Isaiah Wilson Isaiah Wilson #> 2665 Taylor Lewan Taylor Lewan #> 2666 Marshall Newhouse Marshall Newhouse #> 2667 Brandon Kemp Brandon Kemp #> 2668 Dennis Kelly Dennis Kelly #> 2669 Paul Adams Paul Adams #> 2670 Ty Sambrailo Ty Sambrailo #> 2671 Anthony McKinney Anthony McKinney #> 2672 MyCole Pruitt MyCole Pruitt #> 2673 Parker Hesse Parker Hesse #> 2674 Geoff Swaim Geoff Swaim #> 2675 Anthony Firkser Anthony Firkser #> 2676 Jared Pinkney Jared Pinkney #> 2677 Jonnu Smith Jonnu Smith #> 2678 Tommy Hudson Tommy Hudson #> 2679 Corey Davis Corey Davis #> 2680 Cameron Batson Cameron Batson #> 2681 Rashard Davis Rashard Davis #> 2682 Chester Rogers Chester Rogers #> 2683 A.J. Brown A.J. Brown #> 2684 Marcus Johnson Marcus Johnson #> 2685 Nick Westbrook-Ikhine Nick Westbrook-Ikhine #> 2686 Adam Humphries Adam Humphries #> 2687 Kalif Raymond Kalif Raymond #> 2688 Cody Hollister Cody Hollister #> 2689 Chase Roullier Chase Roullier #> 2690 Keith Ismael Keith Ismael #> 2691 Ronald Darby Ronald Darby #> 2692 Fabian Moreau Fabian Moreau #> 2693 Aaron Colvin Aaron Colvin #> 2694 Greg Stroman Greg Stroman #> 2695 Simeon Thomas Simeon Thomas #> 2696 Torry McTyer Torry McTyer #> 2697 Danny Johnson Danny Johnson #> 2698 Jimmy Moreland Jimmy Moreland #> 2699 Kendall Fuller Kendall Fuller #> 2700 Kamren Curl Kamren Curl #> 2701 Jordan Brown Jordan Brown #> 2702 Jeremy Reaves Jeremy Reaves #> 2703 Troy Apke Troy Apke #> 2704 Cole Luke Cole Luke #> 2705 Ryan Anderson Ryan Anderson #> 2706 James Smith-Williams James Smith-Williams #> 2707 Montez Sweat Montez Sweat #> 2708 Casey Toohill Casey Toohill #> 2709 Daniel Wise Daniel Wise #> 2710 Ryan Bee Ryan Bee #> 2711 Chase Young Chase Young #> 2712 Caleb Brantley Caleb Brantley #> 2713 Ryan Kerrigan Ryan Kerrigan #> 2714 Jalen Jelks Jalen Jelks #> 2715 Matt Ioannidis Matt Ioannidis #> 2716 David Bada David Bada #> 2717 Daron Payne Daron Payne #> 2718 Tim Settle Tim Settle #> 2719 Devaroe Lawrence Devaroe Lawrence #> 2720 Jonathan Allen Jonathan Allen #> 2721 Michael Liedtke Michael Liedtke #> 2722 Wes Schweitzer Wes Schweitzer #> 2723 Wes Martin Wes Martin #> 2724 Brandon Scherff Brandon Scherff #> 2725 Joshua Garnett Joshua Garnett #> 2726 Dustin Hopkins Dustin Hopkins #> 2727 Kaare Vedvik Kaare Vedvik #> 2728 Jon Bostic Jon Bostic #> 2729 Josh Harvey-Clemons Josh Harvey-Clemons #> 2730 Jared Norris Jared Norris #> 2731 Reuben Foster Reuben Foster #> 2732 Jordan Kunaszyk Jordan Kunaszyk #> 2733 Khaleke Hudson Khaleke Hudson #> 2734 Justin Phillips Justin Phillips #> 2735 Cole Holcomb Cole Holcomb #> 2736 Mychal Kendricks Mychal Kendricks #> 2737 Thomas Davis Thomas Davis #> 2738 Kevin Pierre-Louis Kevin Pierre-Louis #> 2739 Nick Sundberg Nick Sundberg #> 2740 Tress Way Tress Way #> 2741 Taylor Heinicke Taylor Heinicke #> 2742 Kyle Allen Kyle Allen #> 2743 Steven Montez Steven Montez #> 2744 Alex Smith Alex Smith #> 2745 Lamar Miller Lamar Miller #> 2746 Bryce Love Bryce Love #> 2747 J.D. McKissic J.D. McKissic #> 2748 Jonathan Williams Jonathan Williams #> 2749 Peyton Barber Peyton Barber #> 2750 Antonio Gibson Antonio Gibson #> 2751 Landon Collins Landon Collins #> 2752 Deshazor Everett Deshazor Everett #> 2753 Rick Leonard Rick Leonard #> 2754 Geron Christian Geron Christian #> 2755 Saahdiq Charles Saahdiq Charles #> 2756 David Steinmetz David Steinmetz #> 2757 David Sharpe David Sharpe #> 2758 Morgan Moses Morgan Moses #> 2759 Cornelius Lucas Cornelius Lucas #> 2760 Timon Parris Timon Parris #> 2761 Marcus Baugh Marcus Baugh #> 2762 Thaddeus Moss Thaddeus Moss #> 2763 Jeremy Sprinkle Jeremy Sprinkle #> 2764 Logan Thomas Logan Thomas #> 2765 Dylan Cantrell Dylan Cantrell #> 2766 Temarrick Hemingway Temarrick Hemingway #> 2767 Tyrone Swoopes Tyrone Swoopes #> 2768 Antonio Gandy-Golden Antonio Gandy-Golden #> 2769 Jordan Veasy Jordan Veasy #> 2770 Terry McLaurin Terry McLaurin #> 2771 Cam Sims Cam Sims #> 2772 Tony Brown Tony Brown #> 2773 Kelvin Harmon Kelvin Harmon #> 2774 Emanuel Hall Emanuel Hall #> 2775 Dontrelle Inman Dontrelle Inman #> 2776 Robert Foster Robert Foster #> 2777 Isaiah Wright Isaiah Wright #> 2778 Steven Sims Steven Sims #> 2779 Jeff Badet Jeff Badet #> 2780 Trevor Davis Trevor Davis #> 2781 Demetrius Rhaney Demetrius Rhaney #> 2782 Kyle Friend Kyle Friend #> 2783 Ryan Kalil Ryan Kalil #> 2784 Cornelius Edison Cornelius Edison #> 2785 Justin Britt Justin Britt #> 2786 Casey Dunn Casey Dunn #> 2787 Toa Lobendahn Toa Lobendahn #> 2788 Bunchy Stallings Bunchy Stallings #> 2789 Jake Ohnesorge Jake Ohnesorge #> 2790 Vitas Hrynkiewicz Vitas Hrynkiewicz #> 2791 Gino Gradkowski Gino Gradkowski #> 2792 Nate Trewyn Nate Trewyn #> 2793 James Stone James Stone #> 2794 Nico Falah Nico Falah #> 2795 T.J. Johnson T.J. Johnson #> 2796 Cole Madison Cole Madison #> 2797 Andrew East Andrew East #> 2798 Chandler Miller Chandler Miller #> 2799 John Sullivan John Sullivan #> 2800 Wesley Johnson Wesley Johnson #> 2801 Lucas Gravelle Lucas Gravelle #> 2802 Travis Swanson Travis Swanson #> 2803 Tony Adams Tony Adams #> 2804 Kirk Barron Kirk Barron #> 2805 Dillon Day Dillon Day #> 2806 Skyler Phillips Skyler Phillips #> 2807 Deyshawn Bond Deyshawn Bond #> 2808 John Keenoy John Keenoy #> 2809 Keegan Render Keegan Render #> 2810 Ethan Cooper Ethan Cooper #> 2811 Tanner Volson Tanner Volson #> 2812 Brian Schwenke Brian Schwenke #> 2813 J.P. Quinn J.P. Quinn #> 2814 Parker Collins Parker Collins #> 2815 Tejan Koroma Tejan Koroma #> 2816 Mike Matthews Mike Matthews #> 2817 Luke Bowanko Luke Bowanko #> 2818 James O'Hagan James O'Hagan #> 2819 Austin Davis Austin Davis #> 2820 Max Unger Max Unger #> 2821 Marquez White Marquez White #> 2822 Davon House Davon House #> 2823 Dominique Hatfield Dominique Hatfield #> 2824 Marcus Cooper Marcus Cooper #> 2825 Prince Charles Iworah Prince Charles Iworah #> 2826 Kalan Reed Kalan Reed #> 2827 Josh Robinson Josh Robinson #> 2828 David Amerson David Amerson #> 2829 Derrick Jones Derrick Jones #> 2830 Marcus Sherels Marcus Sherels #> 2831 Dezmen Southward Dezmen Southward #> 2832 Malik Reaves Malik Reaves #> 2833 Coty Sensabaugh Coty Sensabaugh #> 2834 Leon McFadden Leon McFadden #> 2835 Vontae Davis Vontae Davis #> 2836 Antwon Blake Antwon Blake #> 2837 Clifton Duck Clifton Duck #> 2838 Alex Carter Alex Carter #> 2839 Bradford Lemmons Bradford Lemmons #> 2840 Dexter McDonald Dexter McDonald #> 2841 Ronald Zamort Ronald Zamort #> 2842 Chris Lewis-Harris Chris Lewis-Harris #> 2843 Donatello Brown Donatello Brown #> 2844 Trey Johnson Trey Johnson #> 2845 Mark Myers Mark Myers #> 2846 DeShawn Shead DeShawn Shead #> 2847 Bryce Canady Bryce Canady #> 2848 Xavier Coleman Xavier Coleman #> 2849 Juante Baldwin Juante Baldwin #> 2850 Brent Grimes Brent Grimes #> 2851 Taurean Nixon Taurean Nixon #> 2852 Travell Dixon Travell Dixon #> 2853 Tony Lippett Tony Lippett #> 2854 Bryce Jones Bryce Jones #> 2855 Orlando Scandrick Orlando Scandrick #> 2856 Tenny Adewusi Tenny Adewusi #> 2857 Demontre Hurst Demontre Hurst #> 2858 Channing Stribling Channing Stribling #> 2859 Makinton Dorleant Makinton Dorleant #> 2860 Nydair Rouse Nydair Rouse #> 2861 Ryan Pulley Ryan Pulley #> 2862 Adairius Barnes Adairius Barnes #> 2863 Christian Campbell Christian Campbell #> 2864 Kenneth Acker Kenneth Acker #> 2865 Marcus Williams Marcus Williams #> 2866 Jaylen Hill Jaylen Hill #> 2867 Morris Claiborne Morris Claiborne #> 2868 Reese Fleming Reese Fleming #> 2869 Joshua Simmons Joshua Simmons #> 2870 Elijah Battle Elijah Battle #> 2871 Byron Maxwell Byron Maxwell #> 2872 Jeremiah McKinnon Jeremiah McKinnon #> 2873 Joshua Holsey Joshua Holsey #> 2874 Tevin Mitchel Tevin Mitchel #> 2875 Tarvarus McFadden Tarvarus McFadden #> 2876 DaShaun Amos DaShaun Amos #> 2877 Terence Newman Terence Newman #> 2878 CJ Smith CJ Smith #> 2879 Dakari Monroe Dakari Monroe #> 2880 Treston Decoud Treston Decoud #> 2881 Davante Davis Davante Davis #> 2882 David Rivers David Rivers #> 2883 Sterling Moore Sterling Moore #> 2884 Trevon Mathis Trevon Mathis #> 2885 Taveze Calhoun Taveze Calhoun #> 2886 Keith Baxter Keith Baxter #> 2887 Quincy Redmon Quincy Redmon #> 2888 Kenneth Durden Kenneth Durden #> 2889 Jalen Myrick Jalen Myrick #> 2890 Step Durham Step Durham #> 2891 Howard Wilson Howard Wilson #> 2892 Lenzy Pipkins Lenzy Pipkins #> 2893 Jeremy Boykins Jeremy Boykins #> 2894 Javien Elliott Javien Elliott #> 2895 Lashard Durr Lashard Durr #> 2896 Anthony Cioffi Anthony Cioffi #> 2897 Sammy Seamster Sammy Seamster #> 2898 Mercy Maston Mercy Maston #> 2899 Jhavonte Dean Jhavonte Dean #> 2900 B.W. Webb B.W. Webb #> 2901 Demetri Goodson Demetri Goodson #> 2902 Brandon Boykin Brandon Boykin #> 2903 D'Andre Payne D'Andre Payne #> 2904 Kayvon Webster Kayvon Webster #> 2905 William Gay William Gay #> 2906 Mike Jones Mike Jones #> 2907 Doran Grant Doran Grant #> 2908 Dexter McDougle Dexter McDougle #> 2909 C.J. Reavis C.J. Reavis #> 2910 Leonard Johnson Leonard Johnson #> 2911 Michael Hunter Michael Hunter #> 2912 Ranthony Texada Ranthony Texada #> 2913 Shareece Wright Shareece Wright #> 2914 Denzel Rice Denzel Rice #> 2915 Elie Bouka Elie Bouka #> 2916 Josh Thornton Josh Thornton #> 2917 Aqib Talib Aqib Talib #> 2918 Rob Daniel Rob Daniel #> 2919 Adam Jones Adam Jones #> 2920 Jalen Collins Jalen Collins #> 2921 Jermaine Kelly Jermaine Kelly #> 2922 Marcus Burley Marcus Burley #> 2923 Tyler Patmon Tyler Patmon #> 2924 Craig Mager Craig Mager #> 2925 Jermaine Ponder Jermaine Ponder #> 2926 Captain Munnerlyn Captain Munnerlyn #> 2927 Rashard Fant Rashard Fant #> 2928 B.J. Clay B.J. Clay #> 2929 Trovon Reed Trovon Reed #> 2930 De'Vante Harris De'Vante Harris #> 2931 Jeff Richards Jeff Richards #> 2932 Derrick Baity Derrick Baity #> 2933 Ryan Carter Ryan Carter #> 2934 Harlan Miller Harlan Miller #> 2935 Cyrus Jones Cyrus Jones #> 2936 Bene' Benwikere Bene' Benwikere #> 2937 Robert Nelson Robert Nelson #> 2938 Javien Hamilton Javien Hamilton #> 2939 Leon Hall Leon Hall #> 2940 Johnthan Banks Johnthan Banks #> 2941 Deatrick Nichols Deatrick Nichols #> 2942 Stanley Jean-Baptiste Stanley Jean-Baptiste #> 2943 Dominique Rodgers-Cromartie Dominique Rodgers-Cromartie #> 2944 Ashton Lampkin Ashton Lampkin #> 2945 Quinten Rollins Quinten Rollins #> 2946 Antwuan Davis Antwuan Davis #> 2947 Rashard Causey Rashard Causey #> 2948 Lorenzo Doss Lorenzo Doss #> 2949 Trey Caldwell Trey Caldwell #> 2950 Jackson Porter Jackson Porter #> 2951 Marcus Rios Marcus Rios #> 2952 D'Montre Wade D'Montre Wade #> 2953 Curtis Mikell Curtis Mikell #> 2954 Dashaun Phillips Dashaun Phillips #> 2955 Ladarius Gunter Ladarius Gunter #> 2956 Michael Jordan Michael Jordan #> 2957 Sam Shields Sam Shields #> 2958 Jonathan Moxey Jonathan Moxey #> 2959 Darius Hillary Darius Hillary #> 2960 Horace Richardson Horace Richardson #> 2961 Jarell Carter Jarell Carter #> 2962 Keith Reaser Keith Reaser #> 2963 Amari Coleman Amari Coleman #> 2964 Alterraun Verner Alterraun Verner #> 2965 Christian Boutte Christian Boutte #> 2966 Rodney Randle Jr. Rodney Randle Jr. #> 2967 Andrew Soroh Andrew Soroh #> 2968 Arrion Springs Arrion Springs #> 2969 Dee Delaney Dee Delaney #> 2970 Jocquez Kalili Jocquez Kalili #> 2971 Jalen Harvey Jalen Harvey #> 2972 Tyler Sigler Tyler Sigler #> 2973 Henre' Toliver Henre' Toliver #> 2974 Isaiah Langley Isaiah Langley #> 2975 Marcus Edmond Marcus Edmond #> 2976 Deion Harris Deion Harris #> 2977 Jamalcolm Liggins Jamalcolm Liggins #> 2978 Jarvis Jenkins Jarvis Jenkins #> 2979 Connor Flagel Connor Flagel #> 2980 Alex Jenkins Alex Jenkins #> 2981 Jojo Wicker Jojo Wicker #> 2982 Jake Ceresna Jake Ceresna #> 2983 Marcell Dareus Marcell Dareus #> 2984 Tyrone Holmes Tyrone Holmes #> 2985 Chris Long Chris Long #> 2986 Yurik Bethune Yurik Bethune #> 2987 Blaine Woodson Blaine Woodson #> 2988 Kendall Langford Kendall Langford #> 2989 Michael Johnson Michael Johnson #> 2990 Mychealon Thomas Mychealon Thomas #> 2991 Frostee Rucker Frostee Rucker #> 2992 Adam Reth Adam Reth #> 2993 Mackendy Cheridor Mackendy Cheridor #> 2994 Alec James Alec James #> 2995 Anthony Johnson Anthony Johnson #> 2996 Kendall Reyes Kendall Reyes #> 2997 William Hayes William Hayes #> 2998 Charles Tapper Charles Tapper #> 2999 Ziggy Hood Ziggy Hood #> 3000 Ryan Delaire Ryan Delaire #> 3001 George Johnson George Johnson #> 3002 Andrew Trumbetti Andrew Trumbetti #> 3003 Ryan Russell Ryan Russell #> 3004 Zach Moore Zach Moore #> 3005 Jerel Worthy Jerel Worthy #> 3006 Tomasi Laulile Tomasi Laulile #> 3007 Nordly Capi Nordly Capi #> 3008 Carroll Phillips Carroll Phillips #> 3009 Anree Saint-Amour Anree Saint-Amour #> 3010 Leterrius Walton Leterrius Walton #> 3011 Ondre Pipkins Ondre Pipkins #> 3012 Cornellius Carradine Cornellius Carradine #> 3013 Marcus Smith Marcus Smith #> 3014 Geneo Grissom Geneo Grissom #> 3015 Kony Ealy Kony Ealy #> 3016 Francis Kallon Francis Kallon #> 3017 Dee Liner Dee Liner #> 3018 Kiante Anderson Kiante Anderson #> 3019 Simeyon Robinson Simeyon Robinson #> 3020 Julius Peppers Julius Peppers #> 3021 Pasoni Tasini Pasoni Tasini #> 3022 Casey Sayles Casey Sayles #> 3023 Mitchell Loewen Mitchell Loewen #> 3024 Hau'oli Kikaha Hau'oli Kikaha #> 3025 Jamell Garcia-Williams Jamell Garcia-Williams #> 3026 Destiny Vaeao Destiny Vaeao #> 3027 Kevin Wilkins Kevin Wilkins #> 3028 Derrick Shelby Derrick Shelby #> 3029 Peli Anau Peli Anau #> 3030 Jonathan Woodard Jonathan Woodard #> 3031 Izaah Lunsford Izaah Lunsford #> 3032 Sterling Bailey Sterling Bailey #> 3033 Andrew Ankrah Andrew Ankrah #> 3034 Kasim Edebali Kasim Edebali #> 3035 Elijah Qualls Elijah Qualls #> 3036 Chris McCain Chris McCain #> 3037 Eric Cotton Eric Cotton #> 3038 Jacquies Smith Jacquies Smith #> 3039 Cameron Wake Cameron Wake #> 3040 Winston Craig Winston Craig #> 3041 Ryan Davis Ryan Davis #> 3042 Ade Aruna Ade Aruna #> 3043 Darius Jackson Darius Jackson #> 3044 Myquon Stout Myquon Stout #> 3045 Wes Horton Wes Horton #> 3046 Mat Boesen Mat Boesen #> 3047 Dare Odeyingbo Dare Odeyingbo #> 3048 Durrant Miles Durrant Miles #> 3049 Shakir Soto Shakir Soto #> 3050 Karter Schult Karter Schult #> 3051 Dante Sawyer Dante Sawyer #> 3052 Immanuel Turner Immanuel Turner #> 3053 Keionta Davis Keionta Davis #> 3054 Lenny Jones Lenny Jones #> 3055 Owen Obasuyi Owen Obasuyi #> 3056 Michael Bennett Michael Bennett #> 3057 Jonathan Bonner Jonathan Bonner #> 3058 Terrence Fede Terrence Fede #> 3059 Clinton McDonald Clinton McDonald #> 3060 Garrett Sickels Garrett Sickels #> 3061 Muhammad Wilkerson Muhammad Wilkerson #> 3062 Brandon Banks Brandon Banks #> 3063 Chuck Harris Chuck Harris #> 3064 Eric Lee Eric Lee #> 3065 Josh Forrest Josh Forrest #> 3066 Jarrell Owens Jarrell Owens #> 3067 Anthony Winbush Anthony Winbush #> 3068 Mitch Unrein Mitch Unrein #> 3069 Ronald Ollie Ronald Ollie #> 3070 Armonty Bryant Armonty Bryant #> 3071 Pat Afriyie Pat Afriyie #> 3072 Albert Havili Albert Havili #> 3073 Avery Moss Avery Moss #> 3074 Myles Humphrey Myles Humphrey #> 3075 David King David King #> 3076 Chad Thomas Chad Thomas #> 3077 Kerry Wynn Kerry Wynn #> 3078 Cam Johnson Cam Johnson #> 3079 Whitney Richardson Whitney Richardson #> 3080 Stacy Keely Stacy Keely #> 3081 Evan Perrizo Evan Perrizo #> 3082 Fadol Brown Fadol Brown #> 3083 Brian Robison Brian Robison #> 3084 Claudy Mathieu Claudy Mathieu #> 3085 Mathieu Betts Mathieu Betts #> 3086 Antonio Simmons Antonio Simmons #> 3087 Khairi Clark Khairi Clark #> 3088 Anthony Moten Anthony Moten #> 3089 Richard Jarvis Richard Jarvis #> 3090 Justin Alexandre Justin Alexandre #> 3091 Kingsley Opara Kingsley Opara #> 3092 Ricky Walker Ricky Walker #> 3093 Johnathan Calvin Johnathan Calvin #> 3094 Jay Bromley Jay Bromley #> 3095 Stefan Charles Stefan Charles #> 3096 Zay Henderson Zay Henderson #> 3097 Tom Johnson Tom Johnson #> 3098 Josh Banks Josh Banks #> 3099 Lewis Neal Lewis Neal #> 3100 Josh Fatu Josh Fatu #> 3101 Cavon Walker Cavon Walker #> 3102 Earl Mitchell Earl Mitchell #> 3103 Joey Mbu Joey Mbu #> 3104 Kalani Vakameilalo Kalani Vakameilalo #> 3105 Sealver Siliga Sealver Siliga #> 3106 Davonte Lambert Davonte Lambert #> 3107 Ricky Jean-Francois Ricky Jean-Francois #> 3108 Haloti Ngata Haloti Ngata #> 3109 Parker Cothren Parker Cothren #> 3110 Michael Bennett Michael Bennett #> 3111 Garrison Smith Garrison Smith #> 3112 Kapron Lewis-Moore Kapron Lewis-Moore #> 3113 Nigel Williams Nigel Williams #> 3114 Nazair Jones Nazair Jones #> 3115 Toby Johnson Toby Johnson #> 3116 Kyle Williams Kyle Williams #> 3117 Jamie Meder Jamie Meder #> 3118 Julius Warmsley Julius Warmsley #> 3119 Jeremy Faulk Jeremy Faulk #> 3120 Chris Jones Chris Jones #> 3121 Boogie Roberts Boogie Roberts #> 3122 Olsen Pierre Olsen Pierre #> 3123 McKay Murphy McKay Murphy #> 3124 Tyrunn Walker Tyrunn Walker #> 3125 Nathan Bazata Nathan Bazata #> 3126 Lord Hyeamang Lord Hyeamang #> 3127 Ethan Westbrooks Ethan Westbrooks #> 3128 Rickey Hatley Rickey Hatley #> 3129 Sterling Shippy Sterling Shippy #> 3130 Jamiyus Pittman Jamiyus Pittman #> 3131 Darius Philon Darius Philon #> 3132 Du'vonta Lampkin Du'vonta Lampkin #> 3133 Tito Odenigbo Tito Odenigbo #> 3134 Lavon Hooks Lavon Hooks #> 3135 Tracy Sprinkle Tracy Sprinkle #> 3136 A.J. Francis A.J. Francis #> 3137 Dequinton Osborne Dequinton Osborne #> 3138 Kristjan Sokoli Kristjan Sokoli #> 3139 Johnny Maxey Johnny Maxey #> 3140 Aziz Shittu Aziz Shittu #> 3141 Ahtyba Rubin Ahtyba Rubin #> 3142 Marcus Hardison Marcus Hardison #> 3143 Adolphus Washington Adolphus Washington #> 3144 Greg Gilmore Greg Gilmore #> 3145 Jon Cunningham Jon Cunningham #> 3146 Ra'Shede Hageman Ra'Shede Hageman #> 3147 Cedric Thornton Cedric Thornton #> 3148 Ricky Ali'fua Ricky Ali'fua #> 3149 Eddy Wilson Eddy Wilson #> 3150 Caushaud Lyons Caushaud Lyons #> 3151 Terrell McClain Terrell McClain #> 3152 Xavier Cooper Xavier Cooper #> 3153 Reggie Howard Reggie Howard #> 3154 Robert Thomas Robert Thomas #> 3155 Kaleb Eulls Kaleb Eulls #> 3156 Will Sutton Will Sutton #> 3157 T.J. Barnes T.J. Barnes #> 3158 Gerald McCoy Gerald McCoy #> 3159 Steven Richardson Steven Richardson #> 3160 Fredrick Jones Fredrick Jones #> 3161 Cory Thomas Cory Thomas #> 3162 Kyle Coleman Kyle Coleman #> 3163 Ricky Ortiz Ricky Ortiz #> 3164 Shane Smith Shane Smith #> 3165 Joe Kerridge Joe Kerridge #> 3166 Glenn Gronkowski Glenn Gronkowski #> 3167 Algernon Brown Algernon Brown #> 3168 Khalid Hill Khalid Hill #> 3169 Jay Prosch Jay Prosch #> 3170 Sam Rogers Sam Rogers #> 3171 Jalston Fowler Jalston Fowler #> 3172 Derrick Coleman Derrick Coleman #> 3173 James Develin James Develin #> 3174 George Aston George Aston #> 3175 Alan Cross Alan Cross #> 3176 Henry Poggi Henry Poggi #> 3177 Zach Line Zach Line #> 3178 Austin Johnson Austin Johnson #> 3179 Aaron Ripkowski Aaron Ripkowski #> 3180 Dimitri Flowers Dimitri Flowers #> 3181 Roosevelt Nix Roosevelt Nix #> 3182 Patrick DiMarco Patrick DiMarco #> 3183 Elijah Wellman Elijah Wellman #> 3184 Malcolm Johnson Malcolm Johnson #> 3185 Daniel Marx Daniel Marx #> 3186 Luke McNitt Luke McNitt #> 3187 Taniela Tupou Taniela Tupou #> 3188 Andre Hal Andre Hal #> 3189 Keith Tandy Keith Tandy #> 3190 David Jones David Jones #> 3191 Charlie Miller Charlie Miller #> 3192 Chris Conte Chris Conte #> 3193 Jojo Tillery Jojo Tillery #> 3194 Tim Scott Tim Scott #> 3195 Terrell Williams Terrell Williams #> 3196 Jack Tocho Jack Tocho #> 3197 Dymonte Thomas Dymonte Thomas #> 3198 Joshua Moon Joshua Moon #> 3199 Jonathon Mincy Jonathon Mincy #> 3200 Marwin Evans Marwin Evans #> 3201 Nat Berhe Nat Berhe #> 3202 Jermaine Whitehead Jermaine Whitehead #> 3203 Kendrick Lewis Kendrick Lewis #> 3204 Dominick Sanders Dominick Sanders #> 3205 Isaiah Johnson Isaiah Johnson #> 3206 Colin Jones Colin Jones #> 3207 Jeremy Clark Jeremy Clark #> 3208 Abraham Wallace Abraham Wallace #> 3209 Corey Moore Corey Moore #> 3210 Kurt Coleman Kurt Coleman #> 3211 Marqueston Huff Marqueston Huff #> 3212 Corey Graham Corey Graham #> 3213 Earl Thomas Earl Thomas #> 3214 Will Blackmon Will Blackmon #> 3215 Mike Adams Mike Adams #> 3216 Zedrick Woods Zedrick Woods #> 3217 Micah Hannemann Micah Hannemann #> 3218 Lukas Denis Lukas Denis #> 3219 Darian Stewart Darian Stewart #> 3220 Brynden Trawick Brynden Trawick #> 3221 Derrick Kindred Derrick Kindred #> 3222 Fish Smithson Fish Smithson #> 3223 Rontez Miles Rontez Miles #> 3224 Lorenzo Jerome Lorenzo Jerome #> 3225 Quin Blanding Quin Blanding #> 3226 Steven Terrell Steven Terrell #> 3227 Antoine Bethea Antoine Bethea #> 3228 Marcus Cromartie Marcus Cromartie #> 3229 Don Carey Don Carey #> 3230 Glover Quin Glover Quin #> 3231 Tray Matthews Tray Matthews #> 3232 Isaiah Johnson Isaiah Johnson #> 3233 Eric Weddle Eric Weddle #> 3234 Santos Ramirez Santos Ramirez #> 3235 Reggie Nelson Reggie Nelson #> 3236 Michael Mitchell Michael Mitchell #> 3237 Jordan Moore Jordan Moore #> 3238 Jordan Sterns Jordan Sterns #> 3239 Tyrice Beverette Tyrice Beverette #> 3240 Reshad Jones Reshad Jones #> 3241 Micah Abernathy Micah Abernathy #> 3242 Austin Exford Austin Exford #> 3243 Kamrin Moore Kamrin Moore #> 3244 Robert Blanton Robert Blanton #> 3245 Kameron Kelly Kameron Kelly #> 3246 Doyin Jibowu Doyin Jibowu #> 3247 Jamar Summers Jamar Summers #> 3248 Ron Parker Ron Parker #> 3249 Kenny Ladler Kenny Ladler #> 3250 Leon McQuay III Leon McQuay III #> 3251 Johnathan Alston Johnathan Alston #> 3252 Afolabi Laguda Afolabi Laguda #> 3253 Austin Droogsma Austin Droogsma #> 3254 Jordan Agasiva Jordan Agasiva #> 3255 Adam Gettis Adam Gettis #> 3256 Chris Schleuger Chris Schleuger #> 3257 Brandon Thomas Brandon Thomas #> 3258 JP Flynn JP Flynn #> 3259 Jason King Jason King #> 3260 Garrett Brumfield Garrett Brumfield #> 3261 Cameron Lee Cameron Lee #> 3262 Mike Person Mike Person #> 3263 Ryan Anderson Ryan Anderson #> 3264 Nate Theaker Nate Theaker #> 3265 Alex Balducci Alex Balducci #> 3266 Leonard Wester Leonard Wester #> 3267 Cody Wichmann Cody Wichmann #> 3268 Josh LeRibeus Josh LeRibeus #> 3269 Nico Siragusa Nico Siragusa #> 3270 Kofi Amichia Kofi Amichia #> 3271 Ronald Leary Ronald Leary #> 3272 Taylor Hearn Taylor Hearn #> 3273 Josh Allen Josh Allen #> 3274 Greg Pyke Greg Pyke #> 3275 Jermon Bushrod Jermon Bushrod #> 3276 Ramon Foster Ramon Foster #> 3277 Avery Gennesy Avery Gennesy #> 3278 Jerald Foster Jerald Foster #> 3279 Zane Beadles Zane Beadles #> 3280 Blake Blackmar Blake Blackmar #> 3281 Tyler Catalina Tyler Catalina #> 3282 Menelik Watson Menelik Watson #> 3283 Beau Nunn Beau Nunn #> 3284 Cole Croston Cole Croston #> 3285 Josh James Josh James #> 3286 Byron Bell Byron Bell #> 3287 JJ Dielman JJ Dielman #> 3288 Brendan Mahon Brendan Mahon #> 3289 Evan Smith Evan Smith #> 3290 Clint Boling Clint Boling #> 3291 Amini Silatolu Amini Silatolu #> 3292 Cameron Hunt Cameron Hunt #> 3293 Damien Mama Damien Mama #> 3294 Kaleb Johnson Kaleb Johnson #> 3295 Connor Hilland Connor Hilland #> 3296 Vladimir Ducasse Vladimir Ducasse #> 3297 Rishard Cook Rishard Cook #> 3298 Andrew Tiller Andrew Tiller #> 3299 Jonathan Cooper Jonathan Cooper #> 3300 Larry Williams Larry Williams #> 3301 Dorian Johnson Dorian Johnson #> 3302 Chris Brown Chris Brown #> 3303 Ryan Crozier Ryan Crozier #> 3304 Andy Levitre Andy Levitre #> 3305 Matt Slauson Matt Slauson #> 3306 Jeremiah Sirles Jeremiah Sirles #> 3307 Denver Kirkland Denver Kirkland #> 3308 Oni Omoile Oni Omoile #> 3309 Kyle Long Kyle Long #> 3310 Ian Silberman Ian Silberman #> 3311 Jordan McCray Jordan McCray #> 3312 Micah St. Andrew Micah St. Andrew #> 3313 Christian Westerman Christian Westerman #> 3314 Spencer Drango Spencer Drango #> 3315 Kadeem Edwards Kadeem Edwards #> 3316 Brandon Fusco Brandon Fusco #> 3317 Fisayo Awolaja Fisayo Awolaja #> 3318 Isaac Asiata Isaac Asiata #> 3319 Darius James Darius James #> 3320 Kevin Pamphile Kevin Pamphile #> 3321 Tariq Cole Tariq Cole #> 3322 Josh Kline Josh Kline #> 3323 Maurquice Shakir Maurquice Shakir #> 3324 Landon Turner Landon Turner #> 3325 John Montelus John Montelus #> 3326 Darrell Greene Darrell Greene #> 3327 Zac Kerin Zac Kerin #> 3328 Fred Lauina Fred Lauina #> 3329 Givens Price Givens Price #> 3330 Aaron Evans Aaron Evans #> 3331 Martez Ivey Martez Ivey #> 3332 Larry Warford Larry Warford #> 3333 Malcolm Bunche Malcolm Bunche #> 3334 Dejon Allen Dejon Allen #> 3335 Jordan Morgan Jordan Morgan #> 3336 Zack Golditch Zack Golditch #> 3337 Darrell Williams Darrell Williams #> 3338 Ruben Holcomb Ruben Holcomb #> 3339 Demetrius Knox Demetrius Knox #> 3340 Tyler Jones Tyler Jones #> 3341 Kyle Kalis Kyle Kalis #> 3342 Arie Kouandjio Arie Kouandjio #> 3343 Matt Tobin Matt Tobin #> 3344 Joseph Cheek Joseph Cheek #> 3345 Kitt O'Brien Kitt O'Brien #> 3346 Austin Pasztor Austin Pasztor #> 3347 Joe Lowery Joe Lowery #> 3348 Mason Gentry Mason Gentry #> 3349 T.J. Lang T.J. Lang #> 3350 Patrick Vahe Patrick Vahe #> 3351 Abdul Beecham Abdul Beecham #> 3352 Marshal Yanda Marshal Yanda #> 3353 Salesi Uhatafe Salesi Uhatafe #> 3354 Erick Wren Erick Wren #> 3355 Cedrick Lang Cedrick Lang #> 3356 John Greco John Greco #> 3357 Leon Johnson Leon Johnson #> 3358 Josh Walker Josh Walker #> 3359 Josh Sitton Josh Sitton #> 3360 Shawn Lauvao Shawn Lauvao #> 3361 Don Barclay Don Barclay #> 3362 Brandon Greene Brandon Greene #> 3363 John Jerry John Jerry #> 3364 Will Pericak Will Pericak #> 3365 Kareem Are Kareem Are #> 3366 Will House Will House #> 3367 Kyle Bosch Kyle Bosch #> 3368 Jeremy Vujnovich Jeremy Vujnovich #> 3369 Hugh Thornton Hugh Thornton #> 3370 Jeff Allen Jeff Allen #> 3371 Nick Callender Nick Callender #> 3372 Dustin Stanton Dustin Stanton #> 3373 Chris Gonzalez Chris Gonzalez #> 3374 Larry Allen Jr. Larry Allen Jr. #> 3375 Chris Scott Chris Scott #> 3376 Josiah Tauaefa Josiah Tauaefa #> 3377 Scooby Wright Scooby Wright #> 3378 Andrew Motuapuaka Andrew Motuapuaka #> 3379 Bam Bradley Bam Bradley #> 3380 Kyle Queiro Kyle Queiro #> 3381 Jameer Thurman Jameer Thurman #> 3382 DeMarquis Gates DeMarquis Gates #> 3383 Jerrol Garcia-Williams Jerrol Garcia-Williams #> 3384 Naashon Hughes Naashon Hughes #> 3385 Alvin Jones Alvin Jones #> 3386 Zaire Anderson Zaire Anderson #> 3387 Chris Worley Chris Worley #> 3388 Marcus Porter Marcus Porter #> 3389 Tre' Crawford Tre' Crawford #> 3390 Otha Peters Otha Peters #> 3391 Brandon Bell Brandon Bell #> 3392 Raymond Davison Raymond Davison #> 3393 Drew Lewis Drew Lewis #> 3394 Ahmad Thomas Ahmad Thomas #> 3395 Carl Bradford Carl Bradford #> 3396 Gary Johnson Gary Johnson #> 3397 Adam Bighill Adam Bighill #> 3398 Junior Joseph Junior Joseph #> 3399 Darnell Sankey Darnell Sankey #> 3400 Jeff Allison Jeff Allison #> 3401 Riley Bullough Riley Bullough #> 3402 Te'von Coney Te'von Coney #> 3403 Nyles Morgan Nyles Morgan #> 3404 Tre Lamar Tre Lamar #> 3405 Kendell Beckwith Kendell Beckwith #> 3406 Airius Moore Airius Moore #> 3407 Marquis Flowers Marquis Flowers #> 3408 Connor Strachan Connor Strachan #> 3409 Matt Galambos Matt Galambos #> 3410 Anthony Wint Anthony Wint #> 3411 Dedrick Young Dedrick Young #> 3412 Nigel Harris Nigel Harris #> 3413 BJ Blunt BJ Blunt #> 3414 Trevor Bates Trevor Bates #> 3415 Jonathan Celestin Jonathan Celestin #> 3416 Tre Watson Tre Watson #> 3417 Joe Dineen Jr. Joe Dineen Jr. #> 3418 Elijah Norris Elijah Norris #> 3419 Emmanuel Beal Emmanuel Beal #> 3420 Antonio Morrison Antonio Morrison #> 3421 Kentrell Brothers Kentrell Brothers #> 3422 Keishawn Bierria Keishawn Bierria #> 3423 Keith Kelsey Keith Kelsey #> 3424 Sebastian Janikowski Sebastian Janikowski #> 3425 Nick Rose Nick Rose #> 3426 Phil Dawson Phil Dawson #> 3427 Travis Coons Travis Coons #> 3428 David Marvin David Marvin #> 3429 Cole Hedlund Cole Hedlund #> 3430 Caleb Sturgis Caleb Sturgis #> 3431 Marshall Koehn Marshall Koehn #> 3432 Adam Vinatieri Adam Vinatieri #> 3433 Chandler Catanzaro Chandler Catanzaro #> 3434 Connor Barth Connor Barth #> 3435 Matt Bryant Matt Bryant #> 3436 Nick Novak Nick Novak #> 3437 Mark Herzlich Mark Herzlich #> 3438 Jeremiah George Jeremiah George #> 3439 Cameron Lynch Cameron Lynch #> 3440 Brock Coyle Brock Coyle #> 3441 Bruce Carter Bruce Carter #> 3442 Lamin Barrow Lamin Barrow #> 3443 Mason Foster Mason Foster #> 3444 Frank Zombo Frank Zombo #> 3445 Wesley Woodyard Wesley Woodyard #> 3446 Chris Frey Chris Frey #> 3447 Ramik Wilson Ramik Wilson #> 3448 Sam Barrington Sam Barrington #> 3449 Nathan Stupar Nathan Stupar #> 3450 Brian Peters Brian Peters #> 3451 Juwan Foggie Juwan Foggie #> 3452 Thurston Armbrister Thurston Armbrister #> 3453 Josh Martin Josh Martin #> 3454 Emmanuel Lamur Emmanuel Lamur #> 3455 Reggie Hunter Reggie Hunter #> 3456 Ramon Humber Ramon Humber #> 3457 Erik Walden Erik Walden #> 3458 Zach Brown Zach Brown #> 3459 Korey Toomer Korey Toomer #> 3460 Jonathan Freeny Jonathan Freeny #> 3461 Preston Brown Preston Brown #> 3462 David Bass David Bass #> 3463 Josh Smith Josh Smith #> 3464 Lorenzo Alexander Lorenzo Alexander #> 3465 Josh Keyes Josh Keyes #> 3466 Terence Garvin Terence Garvin #> 3467 Arthur Moats Arthur Moats #> 3468 Telvin Smith Telvin Smith #> 3469 Albert McClellan Albert McClellan #> 3470 Dominique Easley Dominique Easley #> 3471 Ahmad Brooks Ahmad Brooks #> 3472 Ben Jacobs Ben Jacobs #> 3473 Quart'e Sapp Quart'e Sapp #> 3474 Eric Pinkins Eric Pinkins #> 3475 Mike Hull Mike Hull #> 3476 Shane Ray Shane Ray #> 3477 Derrick Morgan Derrick Morgan #> 3478 Brandon Marshall Brandon Marshall #> 3479 Nate Palmer Nate Palmer #> 3480 Dekoda Watson Dekoda Watson #> 3481 Vincent Rey Vincent Rey #> 3482 Mike Needham Mike Needham #> 3483 James Hearns James Hearns #> 3484 Corey Nelson Corey Nelson #> 3485 Andre Branch Andre Branch #> 3486 Hayes Pullard Hayes Pullard #> 3487 Lorenzo Mauldin Lorenzo Mauldin #> 3488 Vontaze Burfict Vontaze Burfict #> 3489 Connor Barwin Connor Barwin #> 3490 Zach Vigil Zach Vigil #> 3491 Jake Ryan Jake Ryan #> 3492 Derrick Johnson Derrick Johnson #> 3493 Maurice Alexander Maurice Alexander #> 3494 Terrell Suggs Terrell Suggs #> 3495 Martrell Spaight Martrell Spaight #> 3496 Carlos Thompson Carlos Thompson #> 3497 John Timu John Timu #> 3498 Nick Perry Nick Perry #> 3499 Ro'derrick Hoskins Ro'derrick Hoskins #> 3500 Elijah Zeise Elijah Zeise #> 3501 Kelvin Sheppard Kelvin Sheppard #> 3502 Clay Matthews Clay Matthews #> 3503 Mark McLaurin Mark McLaurin #> 3504 Gerald Hodges Gerald Hodges #> 3505 Ben Heeney Ben Heeney #> 3506 D.J. Alexander D.J. Alexander #> 3507 Jordan Williams Jordan Williams #> 3508 Brett Taylor Brett Taylor #> 3509 Chase Middleton Chase Middleton #> 3510 Jonathan Anderson Jonathan Anderson #> 3511 Obum Gwacham Obum Gwacham #> 3512 Brian Orakpo Brian Orakpo #> 3513 Ketner Kupp Ketner Kupp #> 3514 Eli Harold Eli Harold #> 3515 Sam Acho Sam Acho #> 3516 Deiontrez Mount Deiontrez Mount #> 3517 Matt Longacre Matt Longacre #> 3518 Akeem Ayers Akeem Ayers #> 3519 Ryan Shazier Ryan Shazier #> 3520 Jon Condo Jon Condo #> 3521 Scott Daly Scott Daly #> 3522 Kyle Vasey Kyle Vasey #> 3523 Mike Windt Mike Windt #> 3524 Zak DeOssie Zak DeOssie #> 3525 Kevin McDermott Kevin McDermott #> 3526 Tanner Carew Tanner Carew #> 3527 Drew Ferris Drew Ferris #> 3528 Drew Scott Drew Scott #> 3529 John Wirtel John Wirtel #> 3530 Wes Farnsworth Wes Farnsworth #> 3531 Jeff Overbaugh Jeff Overbaugh #> 3532 Vincent Valentine Vincent Valentine #> 3533 Ira Savage-Lewis Ira Savage-Lewis #> 3534 Deon Simon Deon Simon #> 3535 Joshua Frazier Joshua Frazier #> 3536 Phil Taylor Phil Taylor #> 3537 Gerald Willis Gerald Willis #> 3538 Mike Hughes Jr. Mike Hughes Jr. #> 3539 Conor Sheehy Conor Sheehy #> 3540 Bryant Jones Bryant Jones #> 3541 Daryle Banfield Daryle Banfield #> 3542 Johnny Dwight Johnny Dwight #> 3543 Chris Okoye Chris Okoye #> 3544 Jegs Jegede Jegs Jegede #> 3545 Mike Ramsay Mike Ramsay #> 3546 Dylan Bradley Dylan Bradley #> 3547 Stevie Tu'ikolovatu Stevie Tu'ikolovatu #> 3548 Javier Edwards Javier Edwards #> 3549 Lyndon Johnson Lyndon Johnson #> 3550 Christian Lacouture Christian Lacouture #> 3551 Jay-Tee Tiuli Jay-Tee Tiuli #> 3552 Austin Maloata Austin Maloata #> 3553 Chunky Clements Chunky Clements #> 3554 Omarius Bryant Omarius Bryant #> 3555 Tyrell Chavis Tyrell Chavis #> 3556 Brandon Mebane Brandon Mebane #> 3557 Bijhon Jackson Bijhon Jackson #> 3558 Kyle Love Kyle Love #> 3559 Curtis Cothran Curtis Cothran #> 3560 Trevon Sanders Trevon Sanders #> 3561 Bennie Logan Bennie Logan #> 3562 Kendrick Norton Kendrick Norton #> 3563 Robert Nkemdiche Robert Nkemdiche #> 3564 Dylan Donahue Dylan Donahue #> 3565 Cayson Collins Cayson Collins #> 3566 Jeff Knox Jeff Knox #> 3567 Sutton Smith Sutton Smith #> 3568 Tobenna Okeke Tobenna Okeke #> 3569 Steve Longa Steve Longa #> 3570 Blair Brown Blair Brown #> 3571 James Cowser James Cowser #> 3572 Kahzin Daniels Kahzin Daniels #> 3573 Christian Sam Christian Sam #> 3574 Markus Jones Markus Jones #> 3575 Chris Peace Chris Peace #> 3576 Cassanova McKinzy Cassanova McKinzy #> 3577 Manase Hungalu Manase Hungalu #> 3578 Ufomba Kamalu Ufomba Kamalu #> 3579 Gimel President Gimel President #> 3580 Silas Stewart Silas Stewart #> 3581 Malik Carney Malik Carney #> 3582 Xavier Woodson-Luster Xavier Woodson-Luster #> 3583 Chad Meredith Chad Meredith #> 3584 Bryson Albright Bryson Albright #> 3585 Frank Ginda Frank Ginda #> 3586 Tre'Von Johnson Tre'Von Johnson #> 3587 Marcus Rush Marcus Rush #> 3588 Josh Carraway Josh Carraway #> 3589 Jeremy Cash Jeremy Cash #> 3590 Keshun Freeman Keshun Freeman #> 3591 Jeff Holland Jeff Holland #> 3592 Dante Booker Dante Booker #> 3593 Curtis Akins Curtis Akins #> 3594 Brian Womac Brian Womac #> 3595 Latroy Lewis Latroy Lewis #> 3596 Matthew Oplinger Matthew Oplinger #> 3597 Richie Brown Richie Brown #> 3598 Matthew Thomas Matthew Thomas #> 3599 J'terius Jones J'terius Jones #> 3600 Ejuan Price Ejuan Price #> 3601 Chris Odom Chris Odom #> 3602 E.J. Ejiya E.J. Ejiya #> 3603 Willie Harvey Willie Harvey #> 3604 Deon King Deon King #> 3605 Kennan Gilchrist Kennan Gilchrist #> 3606 Sterling Sheffield Sterling Sheffield #> 3607 Colton Jumper Colton Jumper #> 3608 Jesse Aniebonam Jesse Aniebonam #> 3609 Jamey Mosley Jamey Mosley #> 3610 Joey Alfieri Joey Alfieri #> 3611 Garret Dooley Garret Dooley #> 3612 Jaboree Williams Jaboree Williams #> 3613 Bryson Allen-Williams Bryson Allen-Williams #> 3614 Koa Farmer Koa Farmer #> 3615 Brandon Chubb Brandon Chubb #> 3616 Landis Durham Landis Durham #> 3617 Danny Ezechukwu Danny Ezechukwu #> 3618 Josh Corcoran Josh Corcoran #> 3619 Michael Onuoha Michael Onuoha #> 3620 Gabe Martin Gabe Martin #> 3621 Aaron Wallace Aaron Wallace #> 3622 Vontae Diggs Vontae Diggs #> 3623 D'Juan Hines D'Juan Hines #> 3624 Anthony Stubbs Anthony Stubbs #> 3625 Kyle Wilson Kyle Wilson #> 3626 Hunter Dimick Hunter Dimick #> 3627 Greer Martini Greer Martini #> 3628 Warren Long Warren Long #> 3629 David Kenney David Kenney #> 3630 Azeem Victor Azeem Victor #> 3631 Sione Teuhema Sione Teuhema #> 3632 Freddie Bishop Freddie Bishop #> 3633 Dadi Nicolas Dadi Nicolas #> 3634 Asantay Brown Asantay Brown #> 3635 Antwione Williams Antwione Williams #> 3636 Nick Usher Nick Usher #> 3637 Terrill Hanks Terrill Hanks #> 3638 Farrington Huguenin Farrington Huguenin #> 3639 Davis Tull Davis Tull #> 3640 Reshard Cliett Reshard Cliett #> 3641 Quentin Poling Quentin Poling #> 3642 Chase Allen Chase Allen #> 3643 Deshaun Davis Deshaun Davis #> 3644 Marquel Lee Marquel Lee #> 3645 Vosean Joseph Vosean Joseph #> 3646 Corey Thompson Corey Thompson #> 3647 Jerod Fernandez Jerod Fernandez #> 3648 Pete Robertson Pete Robertson #> 3649 Eric Nzeocha Eric Nzeocha #> 3650 Vontarrius Dora Vontarrius Dora #> 3651 Chris Landrum Chris Landrum #> 3652 Keion Adams Keion Adams #> 3653 Alex Bazzie Alex Bazzie #> 3654 Tony Washington Tony Washington #> 3655 Nicholas Grigsby Nicholas Grigsby #> 3656 Jason Hall Jason Hall #> 3657 Jacob Pugh Jacob Pugh #> 3658 Joel Lanning Joel Lanning #> 3659 Antonio Garcia Antonio Garcia #> 3660 Kyle Meadows Kyle Meadows #> 3661 Austin Fleer Austin Fleer #> 3662 Roubbens Joseph Roubbens Joseph #> 3663 Dino Boyd Dino Boyd #> 3664 Dillon Gordon Dillon Gordon #> 3665 Brandon Smith Brandon Smith #> 3666 Mo Porter Mo Porter #> 3667 Donnell Greene Donnell Greene #> 3668 Chris Durant Chris Durant #> 3669 Jake Campos Jake Campos #> 3670 Williams Poehls Williams Poehls #> 3671 John Kling John Kling #> 3672 Justin Senior Justin Senior #> 3673 Brant Weiss Brant Weiss #> 3674 Travis Vornkahl Travis Vornkahl #> 3675 Jylan Ware Jylan Ware #> 3676 Cole Boozer Cole Boozer #> 3677 Toby Weathersby Toby Weathersby #> 3678 Tyler Marz Tyler Marz #> 3679 Blaine Clausell Blaine Clausell #> 3680 Matt Diaz Matt Diaz #> 3681 Quinterrius Eatmon Quinterrius Eatmon #> 3682 Ryker Mathews Ryker Mathews #> 3683 Randin Crecelius Randin Crecelius #> 3684 Zach Sterup Zach Sterup #> 3685 Tommy Doles Tommy Doles #> 3686 Riley Mayfield Riley Mayfield #> 3687 Vinston Painter Vinston Painter #> 3688 Andreas Knappe Andreas Knappe #> 3689 Laurence Gibson Laurence Gibson #> 3690 A.T. Hall A.T. Hall #> 3691 Justin Evans Justin Evans #> 3692 Brian Wallace Brian Wallace #> 3693 Brock Ruble Brock Ruble #> 3694 Jamar McGloster Jamar McGloster #> 3695 Brian Fineanganofo Brian Fineanganofo #> 3696 Adam Bisnowaty Adam Bisnowaty #> 3697 Damian Prince Damian Prince #> 3698 Kent Perkins Kent Perkins #> 3699 Andrew Lauderdale Andrew Lauderdale #> 3700 Kendall Calhoun Kendall Calhoun #> 3701 Juwann Bushell-Beatty Juwann Bushell-Beatty #> 3702 Cole Gardner Cole Gardner #> 3703 Bentley Spain Bentley Spain #> 3704 Jared Machorro Jared Machorro #> 3705 Brett Boyko Brett Boyko #> 3706 George Asafo-Adjei George Asafo-Adjei #> 3707 Kyle Murphy Kyle Murphy #> 3708 Christian DiLauro Christian DiLauro #> 3709 Larson Graham Larson Graham #> 3710 Derrick Puni Derrick Puni #> 3711 Blake Camper Blake Camper #> 3712 Chidi Okeke Chidi Okeke #> 3713 Steven Moore Steven Moore #> 3714 Jaelin Robinson Jaelin Robinson #> 3715 Zachary Crabtree Zachary Crabtree #> 3716 Marquez Tucker Marquez Tucker #> 3717 Tyler Roemer Tyler Roemer #> 3718 Lukayus McNeil Lukayus McNeil #> 3719 Pace Murphy Pace Murphy #> 3720 Desmond Harrison Desmond Harrison #> 3721 Dieugot Joseph Dieugot Joseph #> 3722 Gerhard De Beer Gerhard De Beer #> 3723 Rees Odhiambo Rees Odhiambo #> 3724 Norman Price Norman Price #> 3725 Marcus Applefield Marcus Applefield #> 3726 Jerry Ugokwe Jerry Ugokwe #> 3727 Brian Mihalik Brian Mihalik #> 3728 Brandon Hitner Brandon Hitner #> 3729 Brock Miller Brock Miller #> 3730 Austin Barnard Austin Barnard #> 3731 Shane Lechler Shane Lechler #> 3732 Shane Tripucka Shane Tripucka #> 3733 Sam Irwin-Hill Sam Irwin-Hill #> 3734 Colton Schmidt Colton Schmidt #> 3735 Justin Vogel Justin Vogel #> 3736 Donnie Jones Donnie Jones #> 3737 Tyler Newsome Tyler Newsome #> 3738 Jon Ryan Jon Ryan #> 3739 Kasey Redfern Kasey Redfern #> 3740 Cory Carter Cory Carter #> 3741 Marquette King Marquette King #> 3742 Ryan Quigley Ryan Quigley #> 3743 Matt Darr Matt Darr #> 3744 Matt Bosher Matt Bosher #> 3745 Colby Wadman Colby Wadman #> 3746 Ian Berryman Ian Berryman #> 3747 Jeff Locke Jeff Locke #> 3748 Manny Wilkins Manny Wilkins #> 3749 Cardale Jones Cardale Jones #> 3750 Connor Jessop Connor Jessop #> 3751 Austin Davis Austin Davis #> 3752 Brock Osweiler Brock Osweiler #> 3753 Bryce Petty Bryce Petty #> 3754 Landry Jones Landry Jones #> 3755 Quinton Flowers Quinton Flowers #> 3756 Luis Perez Luis Perez #> 3757 Nic Shimonek Nic Shimonek #> 3758 Sam Bradford Sam Bradford #> 3759 J.T. Barrett J.T. Barrett #> 3760 Brogan Roback Brogan Roback #> 3761 Matthew McGloin Matthew McGloin #> 3762 Nick Fitzgerald Nick Fitzgerald #> 3763 Paxton Lynch Paxton Lynch #> 3764 Tanner Lee Tanner Lee #> 3765 Zach Conque Zach Conque #> 3766 Tony Romo Tony Romo #> 3767 Trevone Boykin Trevone Boykin #> 3768 Chad Kanoff Chad Kanoff #> 3769 Tom Savage Tom Savage #> 3770 Derek Anderson Derek Anderson #> 3771 Eli Manning Eli Manning #> 3772 Austin Allen Austin Allen #> 3773 Christian Hackenberg Christian Hackenberg #> 3774 Luke Falk Luke Falk #> 3775 Vincent Testaverde Vincent Testaverde #> 3776 Jack Heneghan Jack Heneghan #> 3777 Connor Cook Connor Cook #> 3778 Chase Litton Chase Litton #> 3779 Lamar Jordan Lamar Jordan #> 3780 Cody Kessler Cody Kessler #> 3781 Mark Sanchez Mark Sanchez #> 3782 E.J. Manuel E.J. Manuel #> 3783 Brandon Weeden Brandon Weeden #> 3784 Matt Simms Matt Simms #> 3785 Peter Pujals Peter Pujals #> 3786 Carson Palmer Carson Palmer #> 3787 Joe Callahan Joe Callahan #> 3788 Drew Anderson Drew Anderson #> 3789 Andrew Luck Andrew Luck #> 3790 Brad Kaaya Brad Kaaya #> 3791 Matt Cassel Matt Cassel #> 3792 Josh Woodrum Josh Woodrum #> 3793 Wilton Speight Wilton Speight #> 3794 Garrett Grayson Garrett Grayson #> 3795 Branden Oliver Branden Oliver #> 3796 Brandon Wilds Brandon Wilds #> 3797 Alex Barnes Alex Barnes #> 3798 Devante Mays Devante Mays #> 3799 Mack Brown Mack Brown #> 3800 Jon Hilliman Jon Hilliman #> 3801 Zach Zenner Zach Zenner #> 3802 Matt Asiata Matt Asiata #> 3803 Thomas Rawls Thomas Rawls #> 3804 Chris Warren III Chris Warren III #> 3805 James Butler James Butler #> 3806 Russell Hansbrough Russell Hansbrough #> 3807 Justin Stockton Justin Stockton #> 3808 Valentine Holmes Valentine Holmes #> 3809 Lawrence Thomas Lawrence Thomas #> 3810 DeMarco Murray DeMarco Murray #> 3811 Keith Ford Keith Ford #> 3812 Charles Sims Charles Sims #> 3813 Fozzy Whittaker Fozzy Whittaker #> 3814 Fitzgerald Toussaint Fitzgerald Toussaint #> 3815 Andre Ellington Andre Ellington #> 3816 Jordan Ellis Jordan Ellis #> 3817 Lenard Tillery Lenard Tillery #> 3818 Jamaal Charles Jamaal Charles #> 3819 Ralph Webb Ralph Webb #> 3820 Devontae Jackson Devontae Jackson #> 3821 Rob Kelley Rob Kelley #> 3822 Travaris Cadet Travaris Cadet #> 3823 Nick Brossette Nick Brossette #> 3824 Mark Thompson Mark Thompson #> 3825 Trey Williams Trey Williams #> 3826 Charcandrick West Charcandrick West #> 3827 Josh Ferguson Josh Ferguson #> 3828 Jay Ajayi Jay Ajayi #> 3829 Justin Crawford Justin Crawford #> 3830 Tra Carson Tra Carson #> 3831 Marshawn Lynch Marshawn Lynch #> 3832 David Williams David Williams #> 3833 Benny Cunningham Benny Cunningham #> 3834 Javorius Allen Javorius Allen #> 3835 Isaiah Crowell Isaiah Crowell #> 3836 Darius Victor Darius Victor #> 3837 Dontae Strickland Dontae Strickland #> 3838 Lorenzo Taliaferro Lorenzo Taliaferro #> 3839 Devine Redding Devine Redding #> 3840 Ja'quan Gardner Ja'quan Gardner #> 3841 A.J. Ouellette A.J. Ouellette #> 3842 Matt Forte Matt Forte #> 3843 Roc Thomas Roc Thomas #> 3844 C.J. Anderson C.J. Anderson #> 3845 Chris Ivory Chris Ivory #> 3846 Kenneth Farrow Kenneth Farrow #> 3847 Kobe McCrary Kobe McCrary #> 3848 Robert Turbin Robert Turbin #> 3849 Larry Rose Larry Rose #> 3850 Taj McGowan Taj McGowan #> 3851 Josh Caldwell Josh Caldwell #> 3852 Jeremy Hill Jeremy Hill #> 3853 Justin Davis Justin Davis #> 3854 Matt Dayes Matt Dayes #> 3855 Shaun Draughn Shaun Draughn #> 3856 Malik Williams Malik Williams #> 3857 Leshun Daniels Jr. Leshun Daniels Jr. #> 3858 Aaron Green Aaron Green #> 3859 Jonathan Stewart Jonathan Stewart #> 3860 Terrell Watson Terrell Watson #> 3861 Donnel Pumphrey Donnel Pumphrey #> 3862 Jalen Simmons Jalen Simmons #> 3863 Chris Johnson Chris Johnson #> 3864 Kerwynn Williams Kerwynn Williams #> 3865 Cameron Artis-Payne Cameron Artis-Payne #> 3866 Sherman Badie Sherman Badie #> 3867 David Cobb David Cobb #> 3868 George Atkinson George Atkinson #> 3869 Terrence Magee Terrence Magee #> 3870 Lavon Coleman Lavon Coleman #> 3871 William Stanback William Stanback #> 3872 Darren Sproles Darren Sproles #> 3873 Jhurell Pressley Jhurell Pressley #> 3874 Terry Swanson Terry Swanson #> 3875 Kapri Bibbs Kapri Bibbs #> 3876 Tim Hightower Tim Hightower #> 3877 Bilal Powell Bilal Powell #> 3878 Jeremy Langford Jeremy Langford #> 3879 Terrance West Terrance West #> 3880 Corey Grant Corey Grant #> 3881 De'Lance Turner De'Lance Turner #> 3882 Trayone Gray Trayone Gray #> 3883 Martez Carter Martez Carter #> 3884 Shane Vereen Shane Vereen #> 3885 Alfred Blue Alfred Blue #> 3886 David Fluellen David Fluellen #> 3887 Matt Jones Matt Jones #> 3888 Akrum Wadley Akrum Wadley #> 3889 James Summers James Summers #> 3890 Robert Martin Robert Martin #> 3891 Mike Gillislee Mike Gillislee #> 3892 Karan Higdon Jr. Karan Higdon Jr. #> 3893 Derrius Guice Derrius Guice #> 3894 Joe Banyard Joe Banyard #> 3895 Byron Marshall Byron Marshall #> 3896 Detrez Newsome Detrez Newsome #> 3897 Marcus Marshall Marcus Marshall #> 3898 Ronnie Hillman Ronnie Hillman #> 3899 De'Veon Smith De'Veon Smith #> 3900 Tre Madden Tre Madden #> 3901 Daniel Lasco Daniel Lasco #> 3902 Adam Choice Adam Choice #> 3903 Ryan Mathews Ryan Mathews #> 3904 LeGarrette Blount LeGarrette Blount #> 3905 Darrin Hall Darrin Hall #> 3906 Bronson Hill Bronson Hill #> 3907 Akeem Hunt Akeem Hunt #> 3908 Jacquizz Rodgers Jacquizz Rodgers #> 3909 Joel Bouagnon Joel Bouagnon #> 3910 Joe Williams Joe Williams #> 3911 De'Angelo Henderson De'Angelo Henderson #> 3912 Rodney Anderson Rodney Anderson #> 3913 Matthew Colburn II Matthew Colburn II #> 3914 Christine Michael Christine Michael #> 3915 Elijah Hood Elijah Hood #> 3916 Gerald Holmes Gerald Holmes #> 3917 Brandon Radcliff Brandon Radcliff #> 3918 Stevan Ridley Stevan Ridley #> 3919 Ervin Phillips Ervin Phillips #> 3920 Tim Cook Tim Cook #> 3921 Travon McMillian Travon McMillian #> 3922 Xavier Turner Xavier Turner #> 3923 Knile Davis Knile Davis #> 3924 Chris Ezeala Chris Ezeala #> 3925 Wes Hills Wes Hills #> 3926 Marcus Murphy Marcus Murphy #> 3927 Ray Lawry Ray Lawry #> 3928 Jarveon Williams Jarveon Williams #> 3929 Shaun Wilson Shaun Wilson #> 3930 C.J. Spiller C.J. Spiller #> 3931 Danny Woodhead Danny Woodhead #> 3932 Darren McFadden Darren McFadden #> 3933 Jarvion Franklin Jarvion Franklin #> 3934 Mark Walton Mark Walton #> 3935 Eddie Lacy Eddie Lacy #> 3936 Marcus Martin Marcus Martin #> 3937 Kenneth Dixon Kenneth Dixon #> 3938 J.D. Moore J.D. Moore #> 3939 Doug Martin Doug Martin #> 3940 Secdrick Cooper Secdrick Cooper #> 3941 Corrion Ballard Corrion Ballard #> 3942 Chris Johnson Chris Johnson #> 3943 Joshua Liddell Joshua Liddell #> 3944 Ramon Richards Ramon Richards #> 3945 Antone Exum Antone Exum #> 3946 Isaiah Wharton Isaiah Wharton #> 3947 Derron Smith Derron Smith #> 3948 Trae Elston Trae Elston #> 3949 Tony Jefferson Tony Jefferson #> 3950 Ha Ha Clinton-Dix Ha Ha Clinton-Dix #> 3951 Damian Parms Damian Parms #> 3952 Malik Golden Malik Golden #> 3953 Tigie Sankoh Tigie Sankoh #> 3954 Jeron Johnson Jeron Johnson #> 3955 Jacob Thieneman Jacob Thieneman #> 3956 Jameill Showers Jameill Showers #> 3957 Robenson Therezie Robenson Therezie #> 3958 Kelcie McCray Kelcie McCray #> 3959 Su'a Cravens Su'a Cravens #> 3960 Damon Webb Damon Webb #> 3961 Adarius Pickett Adarius Pickett #> 3962 Shalom Luani Shalom Luani #> 3963 Barry Church Barry Church #> 3964 A.J. Howard A.J. Howard #> 3965 Kemal Ishmael Kemal Ishmael #> 3966 Tyvis Powell Tyvis Powell #> 3967 Chris Maragos Chris Maragos #> 3968 Parker Baldwin Parker Baldwin #> 3969 Jojo McIntosh Jojo McIntosh #> 3970 AJ Hendy AJ Hendy #> 3971 Harold Jones-Quartey Harold Jones-Quartey #> 3972 Ironhead Gallon Ironhead Gallon #> 3973 Deiondre' Hall Deiondre' Hall #> 3974 Rafael Bush Rafael Bush #> 3975 Walt Aikens Walt Aikens #> 3976 Dexter McCoil Dexter McCoil #> 3977 Brandon Bryant Brandon Bryant #> 3978 Montae Nicholson Montae Nicholson #> 3979 TJ Mutcherson TJ Mutcherson #> 3980 Malik Gant Malik Gant #> 3981 Nick Orr Nick Orr #> 3982 Eric Reid Eric Reid #> 3983 Ladarius Wiley Ladarius Wiley #> 3984 Kurtis Drummond Kurtis Drummond #> 3985 Dravon Askew-Henry Dravon Askew-Henry #> 3986 Shamarko Thomas Shamarko Thomas #> 3987 Morgan Burnett Morgan Burnett #> 3988 Ronald Martin Ronald Martin #> 3989 Tre Sullivan Tre Sullivan #> 3990 Demetrious Cox Demetrious Cox #> 3991 Tyree Robinson Tyree Robinson #> 3992 Quincy Mauger Quincy Mauger #> 3993 Justin Currie Justin Currie #> 3994 Kacy Rodgers II Kacy Rodgers II #> 3995 Mike Tyson Mike Tyson #> 3996 Tyree Kinnel Tyree Kinnel #> 3997 Eddie Pleasant Eddie Pleasant #> 3998 Cody Brown Cody Brown #> 3999 Kam Chancellor Kam Chancellor #> 4000 Jason Thompson Jason Thompson #> 4001 Clayton Geathers Clayton Geathers #> 4002 Rickey Jefferson Rickey Jefferson #> 4003 Eric Berry Eric Berry #> 4004 Damarius Travis Damarius Travis #> 4005 Marcelis Branch Marcelis Branch #> 4006 Da'Norris Searcy Da'Norris Searcy #> 4007 Raysean Pringle Raysean Pringle #> 4008 Tyson Graham Tyson Graham #> 4009 T.J. McDonald T.J. McDonald #> 4010 Orion Stewart Orion Stewart #> 4011 Jake Fisher Jake Fisher #> 4012 Ulrick John Ulrick John #> 4013 Cyrus Kouandjio Cyrus Kouandjio #> 4014 Chris Clark Chris Clark #> 4015 Matt Kalil Matt Kalil #> 4016 Ben Ijalana Ben Ijalana #> 4017 De'Ondre Wesley De'Ondre Wesley #> 4018 T.J. Clemmings T.J. Clemmings #> 4019 Seantrel Henderson Seantrel Henderson #> 4020 Derek Newton Derek Newton #> 4021 Joe Barksdale Joe Barksdale #> 4022 Jermey Parnell Jermey Parnell #> 4023 LaAdrian Waddle LaAdrian Waddle #> 4024 Jeremiah Poutasi Jeremiah Poutasi #> 4025 Taylor Hart Taylor Hart #> 4026 Andrew Donnal Andrew Donnal #> 4027 Ryan Schraeder Ryan Schraeder #> 4028 Austin Howard Austin Howard #> 4029 Cordy Glenn Cordy Glenn #> 4030 Darrell Williams Darrell Williams #> 4031 Donald Penn Donald Penn #> 4032 Greg Robinson Greg Robinson #> 4033 Nick Becton Nick Becton #> 4034 Michael Ola Michael Ola #> 4035 Corey Robinson Corey Robinson #> 4036 Isaiah Battle Isaiah Battle #> 4037 Garry Gilliam Garry Gilliam #> 4038 Tyreek Burwell Tyreek Burwell #> 4039 Matt McCants Matt McCants #> 4040 Joe Staley Joe Staley #> 4041 Charles Scarff Charles Scarff #> 4042 Drew Belcher Drew Belcher #> 4043 Brian Parker Brian Parker #> 4044 Stephen Baggett Stephen Baggett #> 4045 Garrett Dickerson Garrett Dickerson #> 4046 David Johnson David Johnson #> 4047 Ryan Malleck Ryan Malleck #> 4048 Clayton Wilson Clayton Wilson #> 4049 Michael Roberts Michael Roberts #> 4050 Tyree Mayfield Tyree Mayfield #> 4051 Ben Johnson Ben Johnson #> 4052 Cole Herdman Cole Herdman #> 4053 Gary Barnidge Gary Barnidge #> 4054 Antonio Gates Antonio Gates #> 4055 Thomas Duarte Thomas Duarte #> 4056 Matt Lengel Matt Lengel #> 4057 E.J. Bibbs E.J. Bibbs #> 4058 Vernon Davis Vernon Davis #> 4059 David Morgan David Morgan #> 4060 Coby Fleener Coby Fleener #> 4061 Rhett Ellison Rhett Ellison #> 4062 Gabe Holmes Gabe Holmes #> 4063 Billy Brown Billy Brown #> 4064 Brent Celek Brent Celek #> 4065 Blake Mack Blake Mack #> 4066 Troy Mangen Troy Mangen #> 4067 Rico Gathers Rico Gathers #> 4068 Bucky Hodges Bucky Hodges #> 4069 Neal Sterling Neal Sterling #> 4070 Cam Serigne Cam Serigne #> 4071 Rashaun Allen Rashaun Allen #> 4072 Austin Traylor Austin Traylor #> 4073 Jeff Heuerman Jeff Heuerman #> 4074 Anthony Manzo-Lewis Anthony Manzo-Lewis #> 4075 Tim Semisch Tim Semisch #> 4076 Erik Swoope Erik Swoope #> 4077 Rory Anderson Rory Anderson #> 4078 Braedon Bowman Braedon Bowman #> 4079 Micky Crum Micky Crum #> 4080 Nick Truesdell Nick Truesdell #> 4081 Dion Sims Dion Sims #> 4082 Matt Weiser Matt Weiser #> 4083 Ed Dickson Ed Dickson #> 4084 Will Tye Will Tye #> 4085 Jevoni Robinson Jevoni Robinson #> 4086 Charles Clay Charles Clay #> 4087 Scott Simonson Scott Simonson #> 4088 Michael Hoomanawanui Michael Hoomanawanui #> 4089 Niles Paul Niles Paul #> 4090 Alex Gray Alex Gray #> 4091 Vince Mayle Vince Mayle #> 4092 Ryan Yurachek Ryan Yurachek #> 4093 Pharoah McKever Pharoah McKever #> 4094 Christian Scotland-Williamson Christian Scotland-Williamson #> 4095 Martellus Bennett Martellus Bennett #> 4096 Ellis Richardson Ellis Richardson #> 4097 Garrett Hudson Garrett Hudson #> 4098 AD Denham AD Denham #> 4099 Sean McGrath Sean McGrath #> 4100 Tyler Hoppes Tyler Hoppes #> 4101 Josiah Price Josiah Price #> 4102 Donnie Ernsberger Donnie Ernsberger #> 4103 Romello Brooker Romello Brooker #> 4104 Ben Koyack Ben Koyack #> 4105 Austin Seferian-Jenkins Austin Seferian-Jenkins #> 4106 Ryan Smith Ryan Smith #> 4107 Benjamin Watson Benjamin Watson #> 4108 Garrett Celek Garrett Celek #> 4109 Troy Niklas Troy Niklas #> 4110 Emanuel Byrd Emanuel Byrd #> 4111 MarQueis Gray MarQueis Gray #> 4112 Michael Colubiale Michael Colubiale #> 4113 Ben Braunecker Ben Braunecker #> 4114 Gavin Escobar Gavin Escobar #> 4115 Delanie Walker Delanie Walker #> 4116 Brandon Barnes Brandon Barnes #> 4117 Orson Charles Orson Charles #> 4118 Deandre Goolsby Deandre Goolsby #> 4119 John Phillips John Phillips #> 4120 Colin Jeter Colin Jeter #> 4121 Wes Saxton Wes Saxton #> 4122 Jerome Cunningham Jerome Cunningham #> 4123 Jace Amaro Jace Amaro #> 4124 AJ Derby AJ Derby #> 4125 Henry Krieger-Coble Henry Krieger-Coble #> 4126 Bradley Sowell Bradley Sowell #> 4127 Moritz Böhringer Moritz Böhringer #> 4128 David Grinnage David Grinnage #> 4129 Gannon Sinclair Gannon Sinclair #> 4130 Ryan Hewitt Ryan Hewitt #> 4131 Zach Miller Zach Miller #> 4132 Logan Paulsen Logan Paulsen #> 4133 Nick Deluca Nick Deluca #> 4134 Cole Hunt Cole Hunt #> 4135 Je'Ron Hamm Je'Ron Hamm #> 4136 Keenan Brown Keenan Brown #> 4137 Ryan O'Malley Ryan O'Malley #> 4138 C.J. Conrad C.J. Conrad #> 4139 Carson Meier Carson Meier #> 4140 Dwayne Allen Dwayne Allen #> 4141 Timothy Wright Timothy Wright #> 4142 Julius Thomas Julius Thomas #> 4143 Alex Ellis Alex Ellis #> 4144 Jason Reese Jason Reese #> 4145 Kyle Carter Kyle Carter #> 4146 Austin Roberts Austin Roberts #> 4147 Alec Bloom Alec Bloom #> 4148 Keith Towbridge Keith Towbridge #> 4149 Jake McGee Jake McGee #> 4150 Scott Orndoff Scott Orndoff #> 4151 Jermaine Gresham Jermaine Gresham #> 4152 Ladarius Green Ladarius Green #> 4153 Trevor Wood Trevor Wood #> 4154 Lance Kendricks Lance Kendricks #> 4155 James Looney James Looney #> 4156 Bryce Williams Bryce Williams #> 4157 Hakeem Valles Hakeem Valles #> 4158 Clive Walford Clive Walford #> 4159 Paul Butler Paul Butler #> 4160 Charone Peake Charone Peake #> 4161 Riley McCarron Riley McCarron #> 4162 Carlton Agudosi Carlton Agudosi #> 4163 Teo Redding Teo Redding #> 4164 Leonte Carroo Leonte Carroo #> 4165 Jordy Nelson Jordy Nelson #> 4166 Sammie Coates Sammie Coates #> birth_date height weight college #> 1 1996-03-28 6-5 292 Michigan #> 2 1996-02-08 6-3 305 Georgia #> 3 1998-01-18 5-11 190 Washington #> 4 1989-06-06 6-0 204 Nebraska #> 5 1995-07-16 5-11 185 Arizona #> 6 1994-03-22 5-11 185 Oklahoma State #> 7 1984-04-16 5-11 185 South Carolina #> 8 1988-10-31 5-10 186 Southeastern Louisiana #> 9 1990-07-11 6-1 203 Louisiana State #> 10 1989-10-26 6-2 190 Alabama #> 11 1997-10-06 6-0 191 Baylor #> 12 1996-04-15 5-10 195 Southern Mississippi #> 13 1998-07-18 5-11 190 Washington State #> 14 1993-03-10 5-10 192 Fresno State #> 15 1990-02-26 5-10 207 Southern Methodist #> 16 1997-03-14 6-4 256 Penn State #> 17 1996-05-05 6-3 284 Temple #> 18 1990-01-17 6-3 341 Oklahoma #> 19 1991-02-17 6-6 290 Stanford #> 20 1992-03-07 6-2 317 Stanford #> 21 1992-11-14 6-4 318 Auburn #> 22 1998-08-23 6-5 335 Utah #> 23 1997-08-20 6-4 281 Boston College #> 24 1992-09-21 6-6 341 Oklahoma #> 25 1996-06-14 6-3 320 Arizona #> 26 1994-08-11 5-11 200 Louisiana Tech #> 27 1989-04-08 6-5 310 North Carolina State #> 28 1996-02-20 6-3 310 Mississippi State #> 29 1995-03-28 6-4 284 Oregon State #> 30 1990-08-15 6-5 311 Syracuse #> 31 1995-08-21 6-6 304 Syracuse #> 32 1991-11-09 6-4 309 Florida #> 33 1982-03-02 5-10 190 Ohio State #> 34 1995-05-07 6-0 202 Arizona State #> 35 1989-11-21 6-1 185 Nebraska #> 36 1994-08-09 6-0 232 Sioux Falls #> 37 1991-06-24 6-3 256 Southern California #> 38 1992-07-28 6-3 245 Clemson #> 39 1996-06-09 6-2 214 Washington #> 40 1994-10-11 6-3 260 Utah #> 41 1992-06-27 6-1 236 Texas #> 42 1994-09-22 6-1 235 Temple #> 43 1994-12-16 6-1 228 Boise State #> 44 1991-03-13 6-3 260 Missouri #> 45 1994-04-12 6-1 215 Miami #> 46 1993-07-01 6-4 232 Minnesota #> 47 1990-02-27 6-5 265 Syracuse #> 48 1996-04-22 6-2 250 Kansas State #> 49 1994-06-09 6-3 254 San Jose State #> 50 1993-05-03 6-2 235 Florida State #> 51 1998-08-11 6-3 245 California #> 52 1998-07-26 6-3 225 Clemson #> 53 1990-07-05 6-5 232 San Diego State #> 54 1988-06-08 6-3 335 Kentucky #> 55 1998-08-27 6-2 308 Louisiana State #> 56 1984-11-27 6-3 325 Michigan State #> 57 1982-08-11 6-1 185 Pittsburgh #> 58 1997-08-07 5-10 207 Oklahoma #> 59 1995-01-06 6-3 215 South Dakota #> 60 1993-06-15 6-3 226 UCLA #> 61 1994-01-26 6-1 211 Alabama #> 62 1996-04-13 5-9 210 Fordham #> 63 1994-09-26 5-7 174 California #> 64 1999-04-13 5-10 210 Arizona State #> 65 1993-11-22 6-0 205 Arizona State #> 66 1997-09-30 6-0 202 Central Michigan #> 67 1992-03-27 6-1 200 Southern California #> 68 1997-02-11 6-1 196 Alabama #> 69 1996-01-10 5-10 195 Washington #> 70 1997-06-22 6-7 310 Houston #> 71 1989-06-08 6-3 308 Southern Methodist #> 72 1996-01-04 6-5 314 Morgan State #> 73 1993-04-19 6-5 315 Cincinnati #> 74 1988-02-15 6-6 330 Florida #> 75 1993-12-28 6-5 307 Florida #> 76 1994-11-22 6-3 256 Washington #> 77 1996-02-10 6-6 248 California #> 78 1993-01-29 6-3 245 Princeton #> 79 1996-11-08 6-3 245 Mississippi State #> 80 1994-04-12 6-4 252 Minnesota #> 81 1995-03-15 6-6 220 Wisconsin-Platteville #> 82 1995-05-12 6-3 217 Marian, Ind. #> 83 1996-10-09 6-1 199 Fresno State #> 84 1994-06-22 6-2 204 Southern California #> 85 1990-01-08 6-3 205 Clemson #> 86 1996-11-18 5-9 190 Massachusetts #> 87 1992-06-06 6-1 212 Clemson #> 88 1995-06-02 6-0 212 Boise State #> 89 1997-12-09 5-9 175 Hawaii #> 90 1996-05-23 5-10 185 Wyoming #> 91 1983-08-31 6-3 218 Pittsburgh #> 92 1996-11-18 5-11 200 Texas A&amp;M #> 93 1996-02-25 6-1 219 Vanderbilt #> 94 1985-11-19 6-4 311 California #> 95 1996-02-25 6-3 300 Tulsa #> 96 1992-05-31 6-3 317 Central Florida #> 97 1997-04-06 6-3 185 Colorado #> 98 1991-10-10 5-11 205 Michigan State #> 99 1991-10-14 6-0 198 Florida Atlantic #> 100 1998-09-23 6-2 190 Clemson #> 101 1996-09-30 6-0 210 Colorado #> 102 1998-10-31 5-10 190 Wyoming #> 103 1996-05-30 5-10 212 Ohio State #> 104 1991-12-18 5-9 186 Purdue #> 105 1989-12-05 6-1 190 Connecticut #> 106 1997-05-19 6-0 205 Minnesota #> 107 1997-08-25 6-2 210 California #> 108 1995-07-26 6-1 216 Florida #> 109 1990-09-16 6-3 263 Buffalo #> 110 1994-08-03 6-3 255 Florida #> 111 1996-07-25 6-2 285 UCLA #> 112 1989-03-25 6-3 288 Miami #> 113 1994-07-22 6-1 305 South Florida #> 114 1996-08-01 6-4 309 Syracuse #> 115 1993-04-28 6-0 305 Clemson #> 116 1995-11-22 6-5 285 Charleston, W. Va. #> 117 1992-09-03 6-2 309 Fresno State #> 118 1998-05-11 6-3 279 Auburn #> 119 1992-04-08 6-0 240 San Jose State #> 120 1989-03-22 6-5 321 Alabama #> 121 1993-10-02 6-5 322 Western Michigan #> 122 1997-11-17 6-4 290 Temple #> 123 1997-02-28 6-4 307 Boston College #> 124 1994-08-03 5-10 195 Georgia Southern #> 125 1994-12-12 6-0 170 South Carolina #> 126 1990-11-03 6-1 240 Virginia #> 127 1997-08-28 6-3 219 Fresno State #> 128 1994-11-04 6-1 227 Louisiana State #> 129 1994-03-09 6-1 243 Utah #> 130 1995-03-06 6-3 250 Missouri #> 131 1996-10-02 6-3 225 LIU Post #> 132 1992-02-23 6-3 245 Newberry #> 133 1995-08-02 6-2 215 Yale #> 134 1989-04-27 6-1 224 Auburn #> 135 1996-12-05 5-9 199 Syracuse #> 136 1985-05-17 6-4 217 Boston College #> 137 1995-07-17 6-4 215 Virginia #> 138 1981-06-25 6-6 245 Virginia #> 139 1994-12-06 5-9 179 Oregon #> 140 1994-08-03 6-1 224 Georgia #> 141 1995-09-11 5-9 195 Southern Mississippi #> 142 1995-11-09 6-1 219 Wyoming #> 143 1996-09-08 6-1 232 Pittsburgh #> 144 1993-06-05 5-11 190 San Diego State #> 145 1995-03-15 6-3 215 Clemson #> 146 1991-02-14 6-0 212 Georgia Southern #> 147 1996-05-10 6-4 305 Wesley #> 148 1992-02-11 6-5 309 Texas A&amp;M #> 149 1991-07-18 6-7 328 Boston College #> 150 1995-02-22 6-6 306 Washington #> 151 1988-07-17 6-5 253 Tennessee #> 152 1993-08-24 6-4 245 South Carolina #> 153 1995-10-10 6-4 250 Yale #> 154 1994-12-20 6-1 190 Alabama #> 155 1997-07-23 5-8 193 Virginia #> 156 1998-05-29 5-7 173 Wake Forest #> 157 1998-07-01 6-0 187 Albany, N.Y. #> 158 1989-02-08 6-3 220 Alabama #> 159 1997-12-19 5-8 180 Tennessee State #> 160 1996-06-08 6-1 181 Northern Illinois #> 161 1996-01-22 6-0 184 Louisiana State #> 162 1995-06-14 6-2 215 Mississippi #> 163 1995-09-12 5-8 189 Florida #> 164 1995-06-15 6-0 192 Cincinnati #> 165 1992-04-23 6-4 310 Toledo #> 166 1997-08-13 6-4 308 California #> 167 1993-02-17 6-3 313 Duke #> 168 1998-03-23 6-4 315 Missouri #> 169 1993-01-09 6-0 197 Washington #> 170 1990-09-08 6-1 192 Lindenwood #> 171 1994-03-14 5-9 185 Temple #> 172 1988-07-26 6-2 210 Colorado #> 173 1998-03-31 5-9 170 Northern Arizona #> 174 1997-02-27 6-1 210 Southern California #> 175 1996-07-08 6-0 197 Alabama #> 176 1994-11-30 5-11 178 Alabama #> 177 1995-01-21 5-11 200 Illinois State #> 178 1997-07-10 6-4 197 Kentucky #> 179 1997-12-14 5-11 187 Tennessee #> 180 1996-09-05 6-0 192 North Texas #> 181 1994-02-11 6-4 215 Clemson #> 182 1997-04-21 6-1 210 Texas #> 183 1994-05-11 6-5 287 Illinois #> 184 1997-06-12 6-3 275 Mississippi State #> 185 1995-03-31 6-2 246 Maryland #> 186 1990-02-24 6-5 285 Cincinnati #> 187 1997-11-17 6-3 300 Texas A&amp;M #> 188 1997-11-04 6-2 290 North Carolina #> 189 1996-02-05 6-2 302 Mississippi State #> 190 1996-12-04 6-3 305 Texas Tech #> 191 1986-09-01 6-8 300 Miami #> 192 1995-10-22 6-2 322 Kent State #> 193 1990-09-10 6-1 246 Wake Forest #> 194 1994-05-27 6-3 311 Maine #> 195 1988-12-08 5-10 200 Clemson #> 196 1996-10-29 6-4 310 Oklahoma #> 197 1997-03-29 6-2 293 Elon #> 198 1998-02-20 6-4 325 Michigan #> 199 1992-12-30 6-6 310 Cincinnati #> 200 1991-03-13 6-5 342 Alabama #> 201 1997-01-29 6-5 345 Mississippi State #> 202 1994-11-24 6-5 317 Alabama #> 203 1989-11-21 6-1 183 Texas #> 204 1996-05-18 6-3 240 Texas A&amp;M #> 205 1998-05-24 6-3 239 Iowa #> 206 1988-12-17 6-3 265 Mississippi State #> 207 1999-08-13 6-1 227 Louisiana State #> 208 1993-08-26 6-6 250 Southeast Missouri #> 209 1995-12-14 6-5 275 Louisiana Tech #> 210 1995-05-23 6-3 240 Houston #> 211 1998-03-05 6-3 245 Ohio State #> 212 1994-12-02 6-2 239 Illinois #> 213 1990-01-03 6-0 232 Northern Iowa #> 214 1992-08-15 6-3 261 Grand Valley State #> 215 1995-07-23 6-2 230 North Dakota State #> 216 1992-12-09 6-3 250 Georgia #> 217 1986-04-26 6-4 233 Tennessee #> 218 1989-02-21 6-1 336 Missouri Southern #> 219 1990-12-27 6-2 350 Louisiana Tech #> 220 1995-02-14 6-1 205 Florida #> 221 1982-08-13 6-1 222 Nebraska #> 222 1998-02-03 6-1 205 Utah #> 223 1997-01-07 6-2 212 Louisville #> 224 1990-02-12 6-2 213 Baylor #> 225 1995-08-23 6-0 202 Penn State #> 226 1989-12-21 5-9 215 Alabama #> 227 1996-09-04 6-0 220 Brigham Young #> 228 1995-04-13 6-1 238 Rutgers #> 229 1998-12-17 5-10 214 Ohio State #> 230 1997-11-14 5-10 200 Oklahoma State #> 231 1993-01-21 5-11 215 Stanford #> 232 1987-03-27 5-11 207 Tennessee State #> 233 1995-04-19 6-0 205 Virginia Tech #> 234 1995-04-19 6-6 311 North Carolina #> 235 1990-12-24 6-5 316 Louisiana Tech #> 236 1987-01-25 6-4 330 Alabama #> 237 1994-03-18 6-6 315 Notre Dame #> 238 1996-05-02 6-8 345 Oklahoma #> 239 1991-09-10 6-6 320 Eastern Washington #> 240 1996-09-20 6-5 250 Oregon #> 241 1995-09-06 6-5 255 Oklahoma #> 242 1997-03-11 6-4 236 Georgia #> 243 1992-04-22 6-6 263 Texas-El Paso #> 244 1993-02-17 6-4 270 Delaware #> 245 1992-09-22 6-4 261 Southern California #> 246 1996-10-12 6-4 220 Notre Dame #> 247 1997-10-22 6-4 206 Texas Tech #> 248 1988-11-04 6-2 220 Oklahoma State #> 249 1993-06-16 6-1 200 Cincinnati #> 250 1996-09-21 6-0 193 Southern Methodist #> 251 1991-10-16 6-0 195 Alabama #> 252 1997-06-04 5-9 170 Oklahoma #> 253 1996-08-09 6-2 202 Clemson #> 254 1997-07-01 6-2 190 Tennessee-Martin #> 255 1993-01-05 5-8 176 Oregon #> 256 1997-01-15 6-4 199 Ohio State #> 257 1997-09-12 5-11 210 Texas #> 258 1992-10-17 5-11 205 Ball State #> 259 1992-04-21 6-6 305 Missouri #> 260 1997-02-14 6-4 300 Penn State #> 261 1988-01-11 6-6 320 Memphis #> 262 1995-01-16 5-11 192 Louisiana State #> 263 1987-12-15 6-0 200 Coastal Carolina #> 264 1994-05-21 5-11 184 Texas #> 265 1992-09-24 5-11 194 Pittsburgh #> 266 1996-11-29 5-11 185 Pittsburgh #> 267 1997-04-13 5-9 185 Buffalo #> 268 1992-02-23 5-10 185 Missouri #> 269 1995-06-12 6-0 179 Alabama #> 270 1994-08-04 6-0 205 Jacksonville State #> 271 1996-07-27 5-11 192 Weber State #> 272 1995-11-06 5-10 190 Miami #> 273 1990-12-31 6-0 197 Iowa #> 274 1997-04-04 6-6 253 North Carolina A&amp;T #> 275 1988-08-13 6-2 254 Texas Christian #> 276 1990-12-22 6-6 259 Stanford #> 277 1998-09-15 6-5 280 Iowa #> 278 1994-01-22 6-3 255 South Florida #> 279 1987-09-06 6-3 260 Troy #> 280 1994-06-25 6-3 270 Florida #> 281 1989-12-20 6-2 318 Utah #> 282 1993-03-31 6-4 291 Maryland #> 283 1996-01-25 6-3 307 Stanford #> 284 1993-09-16 6-3 294 Florida Atlantic #> 285 1995-12-05 6-4 291 Alabama-Birmingham #> 286 1994-06-14 6-4 330 Louisiana Tech #> 287 1992-10-23 6-3 292 Ferris State #> 288 1997-12-12 6-1 287 Houston #> 289 1992-02-10 6-4 323 Miami #> 290 1991-07-10 6-4 320 Kent State #> 291 1994-10-05 6-6 318 Iowa #> 292 1997-02-14 5-10 185 Georgia Southern #> 293 1996-07-31 6-2 205 Washington #> 294 1998-05-02 6-5 250 Virginia Tech #> 295 1997-04-20 6-0 240 North Carolina #> 296 1996-10-09 6-2 230 Illinois #> 297 1994-10-18 6-1 232 Ohio State #> 298 1995-10-27 6-2 245 Samford #> 299 1998-06-25 6-0 237 Texas A&amp;M #> 300 1991-07-30 6-1 240 Iowa State #> 301 1992-12-22 6-1 235 Temple #> 302 1990-07-18 6-3 235 West Alabama #> 303 1994-07-28 6-0 223 Boston College #> 304 1994-03-24 6-2 235 Louisiana State #> 305 1996-09-13 6-0 208 New Mexico #> 306 1990-09-08 6-2 234 Southern California #> 307 1998-07-30 6-2 222 Georgia #> 308 1995-01-22 6-5 225 California #> 309 1996-05-21 6-5 237 Wyoming #> 310 1997-12-15 5-10 215 Utah #> 311 1993-10-02 6-1 223 Alabama #> 312 1992-03-15 5-8 206 Florida State #> 313 1988-07-26 6-0 195 Eastern Washington #> 314 1991-05-15 5-9 196 No College #> 315 1997-10-22 5-11 210 North Carolina #> 316 1997-09-03 5-7 203 Florida Atlantic #> 317 1991-04-25 6-0 191 Oregon State #> 318 1992-07-25 6-1 208 James Madison #> 319 1996-11-19 6-0 205 Appalachian State #> 320 1997-03-04 6-8 327 Washington #> 321 1996-12-28 6-3 329 Oklahoma #> 322 1994-04-26 6-5 320 Temple #> 323 1992-08-31 6-6 330 Oklahoma #> 324 1993-11-04 6-5 316 Oklahoma State #> 325 1985-10-27 6-8 330 Texas State #> 326 1996-11-14 6-4 254 Mississippi #> 327 1992-10-15 6-6 250 Rutgers #> 328 1996-03-24 6-5 264 Miami, O. #> 329 1997-08-20 6-1 255 Toledo #> 330 1987-11-21 6-6 265 Marshall #> 331 1995-07-01 6-5 251 Boston College #> 332 1992-05-13 6-3 225 Auburn #> 333 1995-04-09 5-8 173 Georgia #> 334 1992-02-17 6-4 209 Wisconsin-Whitewater #> 335 1993-11-29 6-0 191 Maryland #> 336 1990-04-03 5-11 179 Pittsburg State #> 337 1994-12-18 6-1 193 Wyoming #> 338 1992-04-22 6-1 202 Oklahoma #> 339 1989-04-26 5-8 174 Southern Methodist #> 340 1988-01-09 5-11 195 Citadel #> 341 1999-04-01 6-3 213 Central Florida #> 342 1998-10-21 6-4 209 Oregon State #> 343 1989-10-12 6-3 300 Boise State #> 344 1991-07-08 6-4 325 Utah State #> 345 1997-01-31 6-4 310 Baylor #> 346 1995-11-08 5-10 180 Louisiana State #> 347 1994-08-29 6-2 209 West Virginia #> 348 1990-01-01 6-2 213 Montana #> 349 1998-01-19 5-11 194 Notre Dame #> 350 1994-10-09 5-10 185 Miami #> 351 1998-06-04 6-2 184 Florida International #> 352 1995-12-15 5-11 201 Wisconsin #> 353 1995-08-09 6-1 203 Ohio State #> 354 1999-01-08 6-2 202 West Virginia #> 355 1997-08-05 5-11 211 Mississippi #> 356 1996-04-27 5-10 205 Temple #> 357 1992-06-25 6-1 205 North Carolina #> 358 1995-04-25 6-3 190 Baylor #> 359 1998-02-26 6-3 212 Southern Illinois #> 360 1996-03-21 6-5 258 Baylor #> 361 1993-12-16 6-2 235 Mississippi #> 362 1995-04-06 6-3 265 Purdue #> 363 1996-06-16 6-3 244 Alabama #> 364 1994-03-19 6-5 265 Vanderbilt #> 365 1998-02-26 6-5 264 Penn State #> 366 1998-04-23 6-5 250 Florida State #> 367 1995-09-21 6-4 260 Vanderbilt #> 368 1992-04-13 6-6 265 No College #> 369 1992-12-20 6-3 315 Mississippi #> 370 1990-08-29 6-2 334 Delaware #> 371 1998-04-15 6-5 318 Auburn #> 372 1997-10-13 6-4 300 Michigan State #> 373 1994-10-07 6-2 296 South Florida #> 374 1989-02-02 6-3 315 Purdue #> 375 1996-10-18 6-1 333 Baylor #> 376 1994-05-17 6-2 255 West Georgia #> 377 1997-03-25 6-6 315 Boston College #> 378 1993-08-12 6-3 315 Louisville #> 379 1996-10-07 6-4 325 Auburn #> 380 1996-08-07 6-6 324 South Carolina #> 381 1992-07-22 6-4 320 Minn. State-Mankato #> 382 1990-11-15 6-6 301 Michigan #> 383 1996-04-10 5-11 213 Virginia Tech #> 384 1998-02-07 6-2 230 Virginia #> 385 1991-04-20 6-3 238 Boston College #> 386 1990-04-02 6-2 241 Temple #> 387 1990-09-02 6-1 230 Wagner #> 388 1994-04-21 6-0 230 Washington #> 389 1990-09-21 6-0 230 Florida Atlantic #> 390 1995-01-14 6-0 225 Maryland #> 391 1996-08-08 6-1 232 Baylor #> 392 1997-06-17 6-0 224 Wisconsin #> 393 1997-12-27 6-3 252 Tennessee #> 394 1986-01-20 6-2 235 Notre Dame #> 395 1992-07-06 5-11 200 Tennessee #> 396 1997-04-07 6-5 190 South Carolina #> 397 1992-11-10 6-2 215 Louisville #> 398 1995-02-26 5-11 212 Temple #> 399 1995-04-03 6-1 220 West Virginia #> 400 1996-12-15 6-5 235 Mississippi State #> 401 1996-01-04 6-0 215 Louisville #> 402 1994-07-23 5-11 185 Virginia State #> 403 1996-02-28 5-11 210 Minnesota #> 404 1996-06-07 5-11 205 Stanford #> 405 1993-02-19 5-9 221 South Carolina #> 406 1996-02-02 6-3 210 Temple #> 407 1993-08-04 6-0 212 North Carolina State #> 408 1994-01-25 6-5 320 Grambling #> 409 1997-11-04 6-5 310 Mississippi #> 410 1994-08-18 6-5 325 Western Michigan #> 411 1988-10-07 6-5 310 Oklahoma State #> 412 1997-03-17 6-7 325 Dartmouth #> 413 1996-06-06 6-3 260 Indiana #> 414 1993-12-15 6-4 255 Temple #> 415 1996-11-28 6-5 242 Louisiana State #> 416 1996-10-16 6-3 240 Western Michigan #> 417 1992-04-10 6-6 255 Canisius #> 418 1994-02-01 6-2 219 Michigan #> 419 1994-03-20 5-11 191 West Virginia #> 420 1996-12-15 6-3 207 Arkansas State #> 421 1993-03-25 6-2 215 Concordia, Minn #> 422 1995-03-07 5-11 207 South Carolina #> 423 1995-08-23 6-0 196 James Madison #> 424 1993-05-09 6-3 190 Temple #> 425 1996-08-11 5-11 195 Ohio State #> 426 1996-08-24 6-3 205 Temple #> 427 1997-04-14 5-11 215 Maryland #> 428 1993-12-26 6-3 210 Temple #> 429 1993-07-06 5-11 190 Massachusetts #> 430 1992-07-11 6-3 309 Kansas State #> 431 1996-08-13 6-2 311 Notre Dame #> 432 1989-04-26 5-9 185 Chattanooga #> 433 1996-10-08 5-8 183 Kansas State #> 434 1992-10-22 6-0 205 Illinois State #> 435 1995-12-10 5-11 185 Central Michigan #> 436 1992-02-16 5-11 194 Virginia Tech #> 437 1999-04-19 6-0 195 Utah #> 438 1995-05-01 6-0 197 Miami #> 439 1994-12-25 5-9 168 Wisconsin #> 440 1995-03-19 6-0 194 Dubuque #> 441 1997-12-11 5-11 190 Georgia Southern #> 442 1995-12-31 6-0 191 Florida #> 443 1990-08-07 6-1 212 Wyoming #> 444 1993-08-14 6-0 200 Miami #> 445 1994-10-27 5-11 207 Midwestern State #> 446 1993-04-13 6-0 202 William &amp; Mary #> 447 1996-10-03 6-1 240 Buffalo #> 448 1990-05-18 6-4 257 North Carolina #> 449 1995-02-12 6-3 279 Michigan #> 450 1994-01-25 6-3 280 Florida State #> 451 1993-07-23 6-5 294 Texas-El Paso #> 452 1997-03-02 6-4 295 Missouri #> 453 1991-05-05 6-7 300 Virginia #> 454 1989-11-16 6-4 352 Regina, Can. #> 455 1997-08-05 6-5 280 Western Illinois #> 456 1997-09-13 6-3 305 Iowa #> 457 1996-06-10 6-4 300 Yale #> 458 1994-06-02 6-5 325 Texas A&amp;M #> 459 1996-09-12 6-5 315 Tennessee State #> 460 1995-09-08 6-5 314 Notre Dame #> 461 1989-09-09 6-4 317 California, Pa. #> 462 1996-01-30 6-5 300 Colorado #> 463 1991-11-12 5-8 160 Tulane #> 464 1995-09-13 5-11 178 Florida #> 465 1997-04-08 6-0 230 Georgia #> 466 1997-06-13 6-4 268 Tulsa #> 467 1995-10-12 6-1 226 Western Kentucky #> 468 1990-10-04 6-5 235 Louisiana State #> 469 1993-06-27 6-1 254 Stanford #> 470 1990-03-24 6-0 239 Kentucky #> 471 1996-07-01 6-1 236 Maryland #> 472 1991-02-22 6-3 269 Buffalo #> 473 1993-07-03 6-1 236 Oklahoma #> 474 1991-01-26 6-1 241 Notre Dame #> 475 1988-02-11 6-3 228 Utah State #> 476 1989-07-11 6-3 327 Georgia #> 477 1996-09-14 6-3 313 Delaware #> 478 1994-01-06 6-3 320 Florida State #> 479 1992-08-11 6-7 352 Tennessee #> 480 1991-02-22 6-4 212 Miami #> 481 1994-08-20 6-2 215 North Carolina #> 482 1989-01-20 6-6 243 Arizona #> 483 1991-12-27 6-6 223 Tennessee #> 484 1995-12-27 6-2 237 Oregon State #> 485 1996-05-17 5-11 208 Oregon State #> 486 1995-07-26 5-6 191 North Carolina A&amp;T #> 487 1997-06-07 5-10 222 Iowa State #> 488 1991-11-23 5-10 224 Louisiana State #> 489 1993-12-10 6-0 202 Alabama #> 490 1987-12-19 5-11 203 Northwestern #> 491 1993-08-02 6-1 190 Penn State #> 492 1994-11-06 6-5 326 Old Dominion #> 493 1994-05-17 6-6 301 Indiana #> 494 1991-10-09 6-3 305 Boise State #> 495 1989-08-01 6-6 325 Mississippi #> 496 1997-03-12 6-7 320 Louisiana State #> 497 1994-04-09 6-7 235 Grand Canyon #> 498 1993-08-28 6-3 240 Pittsburgh #> 499 1999-03-10 6-6 258 Notre Dame #> 500 1997-02-27 6-3 237 Princeton #> 501 1986-11-24 6-7 265 Miami #> 502 1991-07-29 6-7 230 Wisconsin-Milwaukee #> 503 1985-04-12 5-11 180 Ohio State #> 504 1993-04-10 5-8 190 Sacramento State #> 505 1995-02-07 6-3 210 Pittsburgh #> 506 1996-07-21 6-1 200 Georgia #> 507 1994-09-11 6-2 221 Georgia #> 508 1995-11-22 5-11 185 Georgia #> 509 1994-09-15 6-1 189 South Florida #> 510 1997-10-29 5-11 172 Tulane #> 511 1987-09-16 5-10 215 East Carolina #> 512 1997-06-25 6-4 218 Colgate #> 513 1994-10-09 5-11 199 Memphis #> 514 1993-08-24 6-2 220 Penn State #> 515 1991-03-17 6-2 238 Tennessee #> 516 1992-07-06 6-3 316 Texas #> 517 1991-10-26 6-4 318 Kansas State #> 518 1994-10-11 6-4 312 Ohio State #> 519 1992-07-25 6-0 190 Michigan State #> 520 1996-07-21 6-0 195 Tulane #> 521 1993-11-29 6-0 180 New Mexico State #> 522 1993-11-12 5-10 192 Clemson #> 523 1995-07-13 6-0 198 Alabama #> 524 1995-06-26 5-10 190 Western Michigan #> 525 1992-10-27 6-0 196 Houston #> 526 1996-02-02 5-10 185 Utah State #> 527 1993-09-18 6-0 203 Southern Utah #> 528 1999-06-04 5-9 186 Miami #> 529 1994-07-27 5-10 200 Houston #> 530 1997-02-26 6-1 200 Wake Forest #> 531 1995-06-29 6-2 265 Auburn #> 532 1996-02-11 6-3 284 Nebraska #> 533 1995-06-29 6-5 265 Ohio State #> 534 1998-04-28 6-4 265 Notre Dame #> 535 1998-02-06 6-4 280 Oklahoma #> 536 1992-01-18 6-2 309 Northern Iowa #> 537 1989-05-05 6-0 310 Iowa #> 538 1988-03-28 6-1 300 Georgia #> 539 1987-07-14 6-8 295 Southern Methodist #> 540 1997-01-03 6-3 320 Tennessee #> 541 1991-08-07 6-4 330 West Virginia #> 542 1997-12-08 6-5 300 Kansas #> 543 1995-01-18 6-5 320 UCLA #> 544 1994-10-26 6-3 320 None #> 545 1997-02-12 6-5 315 Texas A&amp;M #> 546 1998-01-25 6-6 315 Ohio State #> 547 1991-01-01 6-4 310 UCLA #> 548 1996-11-15 5-9 214 Oklahoma #> 549 1989-12-16 5-9 210 Texas A&amp;M #> 550 1997-09-21 6-2 215 Appalachian State #> 551 1996-05-21 6-2 245 North Carolina State #> 552 1989-08-24 6-1 235 Auburn #> 553 1997-03-07 6-1 240 Purdue #> 554 1996-04-22 6-2 248 Southeast Missouri #> 555 1997-09-24 6-3 220 Maryland #> 556 1995-01-27 6-3 242 Oklahoma #> 557 1996-07-08 6-2 250 Wyoming #> 558 1984-07-10 6-5 250 Rutgers #> 559 1996-08-19 6-3 240 Indiana #> 560 1994-05-02 6-3 345 Colorado #> 561 1994-07-01 6-3 347 Clemson #> 562 1995-10-23 6-5 315 Arizona State #> 563 1993-10-16 6-2 305 Rice #> 564 1985-07-16 6-1 211 Cincinnati #> 565 1996-11-06 6-4 225 Vanderbilt #> 566 1996-12-10 6-4 216 Louisiana State #> 567 1994-12-26 6-4 207 North Carolina State #> 568 1992-10-20 6-3 218 Stanford #> 569 1992-09-05 6-2 209 Arkansas #> 570 1997-10-18 5-8 206 Texas A&amp;M #> 571 1997-01-07 6-3 234 Florida State #> 572 1995-09-16 5-11 240 Oklahoma #> 573 1996-07-24 6-1 220 Oklahoma #> 574 1991-11-22 5-9 205 North Carolina #> 575 1991-05-13 6-0 210 Georgia #> 576 1994-12-12 5-11 205 Ohio State #> 577 1995-08-15 6-0 205 Hawaii #> 578 1997-07-29 6-7 305 Ohio State #> 579 1997-11-17 6-4 305 Alabama #> 580 1994-08-21 6-5 310 Florida State #> 581 1997-06-05 6-7 326 Florida #> 582 1996-09-22 6-6 335 Louisiana Tech #> 583 1995-09-05 6-3 248 Nebraska #> 584 1993-11-04 6-5 252 Buffalo #> 585 1993-01-14 6-6 260 Auburn #> 586 1996-04-16 6-4 259 Washington #> 587 1996-11-07 6-4 245 South Florida #> 588 1988-07-31 6-4 210 Georgia #> 589 1996-09-07 6-0 205 Nebraska #> 590 1997-02-03 6-5 228 Florida State #> 591 1996-07-26 6-5 225 Wake Forest #> 592 1999-01-18 6-4 210 Clemson #> 593 1992-11-06 6-0 195 Wisconsin #> 594 1994-11-15 6-2 203 Pittsburgh #> 595 1994-08-16 6-1 189 Southern Mississippi #> 596 1995-12-10 6-2 207 Stanford #> 597 1995-11-27 5-11 194 Washington #> 598 1991-02-12 6-4 307 Cornell #> 599 1997-07-08 6-3 307 Mississippi #> 600 1998-11-13 6-1 302 Washington #> 601 1993-07-13 6-4 303 Harvard #> 602 1993-12-08 6-2 205 Nevada-Las Vegas #> 603 1997-12-03 6-2 184 Louisiana State #> 604 1992-05-17 5-11 190 Oregon #> 605 1993-10-21 6-3 215 Utah #> 606 1997-04-28 5-11 191 Ohio State #> 607 1998-06-09 6-1 185 Oklahoma State #> 608 1995-09-26 6-2 205 Portland State #> 609 1995-09-16 5-11 205 North Carolina #> 610 1992-08-05 6-0 185 Wake Forest #> 611 1996-03-11 5-10 205 Ferris State #> 612 1998-09-20 6-3 203 Louisiana State #> 613 1995-01-20 6-0 204 Colorado #> 614 1987-09-09 6-1 210 Rice #> 615 1996-11-06 6-0 196 Miami #> 616 1994-09-22 6-5 265 Houston #> 617 1997-02-08 6-5 260 Southern California #> 618 1996-12-20 6-4 275 Miami #> 619 1998-08-03 6-3 265 Boise State #> 620 1995-07-09 6-4 240 Akron #> 621 1995-12-29 6-4 272 Texas A&amp;M #> 622 1996-08-23 6-3 240 Sacramento State #> 623 1990-10-07 6-2 262 Miami #> 624 1988-07-06 6-3 280 Iowa #> 625 1997-11-23 6-4 315 Missouri #> 626 1990-11-29 6-3 294 Missouri #> 627 1994-01-05 6-3 311 Oklahoma State #> 628 1995-01-22 6-3 301 Florida #> 629 1994-07-01 6-1 294 Notre Dame #> 630 1994-06-03 6-3 305 North Carolina-Charlotte #> 631 1994-09-07 6-2 245 Nevada-Las Vegas #> 632 1993-05-23 6-1 238 Nebraska #> 633 1991-10-11 6-4 320 Nevada #> 634 1995-01-20 6-7 310 Ohio State #> 635 1994-11-21 6-4 315 Virginia Tech #> 636 1995-06-23 6-5 331 Appalachian State #> 637 1996-09-04 6-3 311 Texas Christian #> 638 1994-09-08 5-10 165 Kansas State #> 639 1992-02-19 6-0 190 Auburn #> 640 1998-02-14 6-1 240 Alabama #> 641 1989-07-05 6-0 225 Southern California #> 642 1996-02-08 6-2 229 Kansas State #> 643 1999-04-01 6-4 233 Louisiana State #> 644 1995-04-01 6-4 259 Louisville #> 645 1995-06-08 6-1 238 Brigham Young #> 646 1993-05-29 6-1 242 Clemson #> 647 1996-08-14 6-1 224 Chattanooga #> 648 1990-05-16 6-4 248 Central Florida #> 649 1995-03-06 6-1 328 Baylor #> 650 1997-07-04 6-1 207 Arkansas-Pine Bluff #> 651 1995-03-17 6-2 222 Richmond #> 652 1988-02-17 6-1 215 Houston #> 653 1995-04-14 6-1 215 Oklahoma #> 654 1996-10-04 5-10 205 Tennessee #> 655 1996-09-15 6-0 225 Michigan State #> 656 1995-12-27 5-11 225 Georgia #> 657 1996-02-27 5-10 208 South Florida #> 658 1995-08-06 5-11 216 Toledo #> 659 1996-12-25 6-0 210 Middle Tennessee #> 660 1994-09-20 6-2 215 Grambling #> 661 1996-09-05 6-1 205 Liberty #> 662 1997-04-18 6-3 214 Alabama #> 663 1993-09-08 5-10 200 West Virginia #> 664 1999-05-17 6-5 320 Alabama #> 665 1991-04-23 6-4 295 Alabama-Birmingham #> 666 1996-01-11 6-5 310 Northwestern #> 667 1996-10-07 6-6 320 Southern Mississippi #> 668 1992-06-05 6-5 310 Appalachian State #> 669 1994-08-28 6-5 307 Maryland #> 670 1997-04-29 6-9 294 South Carolina State #> 671 1997-01-18 6-5 305 Southeast Missouri #> 672 1994-08-17 6-6 308 Michigan State #> 673 1998-04-23 6-5 240 Florida Atlantic #> 674 1994-10-29 6-4 254 Stanford #> 675 1996-12-12 6-4 240 Princeton #> 676 1996-07-10 6-4 246 Miami #> 677 1996-02-01 6-4 239 Central Florida #> 678 1997-03-04 6-4 250 South Carolina #> 679 1994-02-01 5-7 153 Akron #> 680 1995-03-02 5-11 203 Western Kentucky #> 681 1994-10-17 6-4 207 Texas Tech #> 682 1994-11-04 5-8 185 North Carolina #> 683 1992-11-05 5-11 198 Louisiana State #> 684 1995-01-03 6-2 205 Prairie View #> 685 1992-11-28 5-11 196 Louisiana State #> 686 1993-04-10 5-10 190 Washington #> 687 1999-02-19 6-2 208 Michigan #> 688 1994-10-07 6-1 198 Colorado State #> 689 1996-11-24 6-1 166 Eastern Illinois #> 690 1996-12-11 6-1 195 Louisiana-Lafayette #> 691 1993-02-11 6-2 303 Boise State #> 692 1997-11-20 6-3 320 Wisconsin #> 693 1991-03-18 6-4 320 Wisconsin #> 694 1993-05-19 6-6 300 Harvard #> 695 1990-08-31 6-3 315 Wake Forest #> 696 1994-05-26 6-1 193 Virginia #> 697 1997-06-02 5-11 190 North Texas #> 698 1998-09-20 6-2 207 Alabama #> 699 1993-12-15 5-11 196 Purdue #> 700 1986-05-19 6-0 210 Grand Valley State #> 701 1994-07-12 6-2 205 Kansas State #> 702 1995-05-24 6-0 202 Colorado #> 703 1990-02-04 6-3 190 California, Pa. #> 704 1995-08-31 5-10 195 Michigan #> 705 1995-07-23 6-1 177 Louisiana State #> 706 1997-11-05 6-1 200 Alabama #> 707 1995-07-26 5-11 202 Louisiana Tech #> 708 1995-12-14 6-1 210 Oklahoma #> 709 1993-09-22 6-2 213 Boise State #> 710 1997-04-14 6-1 197 Tulsa #> 711 1989-09-25 6-4 265 Missouri #> 712 1997-07-03 6-3 269 James Madison #> 713 1992-04-28 6-3 265 Boise State #> 714 1998-10-17 6-3 265 Utah #> 715 1992-11-23 6-5 255 Nebraska #> 716 1997-06-10 6-4 255 Kansas #> 717 1989-11-22 6-4 290 Boise State #> 718 1990-08-18 6-3 346 Memphis #> 719 1994-06-08 6-3 325 UCLA #> 720 1998-03-25 6-3 308 Central Florida #> 721 1993-01-03 6-1 318 Southern California #> 722 1993-07-27 6-2 315 Louisiana-Lafayette #> 723 1996-08-09 6-4 320 Missouri #> 724 1997-01-17 6-2 302 Oklahoma #> 725 1989-04-17 6-1 240 North Texas #> 726 1990-11-20 6-4 315 Notre Dame #> 727 1997-11-03 6-5 308 Penn State #> 728 1997-05-12 6-5 298 Texas #> 729 1987-12-27 6-0 191 Missouri Western #> 730 1993-07-05 6-0 222 Akron #> 731 1996-02-08 6-4 256 Boise State #> 732 1995-06-14 6-2 245 Notre Dame #> 733 1995-08-28 6-3 245 Nebraska #> 734 1991-05-06 6-1 232 South Carolina State #> 735 1995-04-08 6-1 235 Utah #> 736 1996-01-01 6-4 235 Kansas #> 737 1986-07-22 6-2 245 Penn State #> 738 1998-01-18 6-3 260 North Texas #> 739 1981-03-13 6-5 256 California #> 740 1994-11-26 6-5 243 Northwestern #> 741 1989-07-21 6-0 205 Carson-Newman #> 742 1993-11-21 6-3 225 Central Michigan #> 743 1987-10-29 6-2 220 Texas Christian #> 744 1996-11-24 6-3 210 James Madison #> 745 1993-07-29 6-2 238 Mississippi State #> 746 1991-07-01 6-4 230 Southern Methodist #> 747 1997-04-30 6-0 209 Memphis #> 748 1998-06-14 6-0 215 South Carolina #> 749 1997-11-27 6-3 240 Texas Christian #> 750 1995-07-22 6-0 228 Ohio State #> 751 1995-02-21 6-0 204 Texas A&amp;M #> 752 1997-04-01 6-5 314 Indiana #> 753 1995-09-02 6-4 308 Virginia #> 754 1994-09-08 6-6 305 Wagner #> 755 1997-04-29 6-6 313 North Carolina #> 756 1998-07-27 6-7 301 No College #> 757 1997-02-06 6-5 305 Clemson #> 758 1992-08-23 6-5 313 Florida State #> 759 1990-12-12 6-5 320 Southern California #> 760 1996-05-02 6-5 310 Richmond #> 761 1993-07-26 6-4 320 Louisiana State #> 762 1997-06-04 6-6 310 Texas Tech #> 763 1994-07-16 6-5 260 Oklahoma State #> 764 1996-07-11 6-5 242 Stanford #> 765 1991-08-07 6-6 252 Oklahoma #> 766 1997-12-28 6-5 246 Michigan #> 767 1994-06-11 6-4 240 Louisville #> 768 1996-01-30 6-2 200 Illinois #> 769 1996-01-28 6-3 205 Oklahoma State #> 770 1995-11-20 6-5 188 Boise State #> 771 1996-01-06 6-2 225 Ohio State #> 772 1994-06-17 6-1 211 Alabama #> 773 1996-03-04 6-1 200 Colorado State #> 774 1999-04-08 6-2 189 Oklahoma #> 775 1997-03-25 6-4 200 Mississippi State #> 776 1995-12-23 6-0 192 Toledo #> 777 1998-05-21 6-3 191 Rhode Island #> 778 1997-11-22 6-4 315 Louisiana State #> 779 1995-02-13 6-3 300 Texas Christian #> 780 1991-06-23 6-3 315 Florida #> 781 1991-10-23 5-9 188 Rice #> 782 1997-10-28 6-0 175 Oklahoma #> 783 1993-01-15 6-2 190 Pittsburg State #> 784 1998-08-12 5-10 190 Wake Forest #> 785 1997-09-12 6-1 200 Iowa #> 786 1994-06-30 6-0 185 Temple #> 787 1988-04-10 5-10 185 Alabama #> 788 1995-11-24 6-2 199 Louisiana State #> 789 1991-08-16 6-0 191 Central Florida #> 790 1995-10-13 5-10 198 Florida #> 791 1994-07-29 6-1 194 Arizona #> 792 1997-02-12 5-10 202 Texas #> 793 1996-01-26 6-2 188 Stanford #> 794 1993-11-19 6-2 202 Boston College #> 795 1991-08-11 6-2 290 Illinois State #> 796 1994-09-30 6-4 280 Florida State #> 797 1996-08-04 6-5 295 Lindenwood #> 798 1996-06-24 6-4 275 North Carolina State #> 799 1996-08-16 6-4 280 Colorado State-Pueblo #> 800 1997-01-05 6-3 281 Ohio State #> 801 1992-12-29 6-1 292 Clemson #> 802 1988-11-21 6-2 328 North Carolina #> 803 1992-09-24 6-2 295 Florida State #> 804 1996-03-19 6-1 299 Chattanooga #> 805 1993-07-23 6-1 305 Oregon State #> 806 1991-12-14 6-3 312 Maryland #> 807 1997-09-25 6-3 300 Arkansas #> 808 1989-12-05 6-1 305 Southern California #> 809 1999-03-27 6-3 307 Fresno State #> 810 1995-09-18 6-6 300 Texas Christian #> 811 1995-07-13 6-5 312 Kansas State #> 812 1992-07-19 6-6 310 Michigan #> 813 1991-07-25 6-3 201 Temple #> 814 1989-05-23 5-11 160 Millsaps #> 815 1989-10-27 6-2 230 Alabama #> 816 1992-12-10 6-3 255 Miami #> 817 1996-08-05 6-2 235 Nevada #> 818 1989-03-26 6-3 250 Texas A&amp;M #> 819 1996-08-21 6-3 235 Wake Forest #> 820 1997-07-09 6-3 242 Georgia #> 821 1993-01-17 6-3 252 Georgia Tech #> 822 1989-09-04 6-2 241 Florida State #> 823 1994-12-25 6-1 236 Iowa #> 824 1994-02-21 6-0 231 Northwestern #> 825 1996-05-20 6-2 240 Colorado State #> 826 1996-07-11 6-5 246 North Dakota State #> 827 1991-12-24 6-2 255 Tennessee #> 828 1994-01-10 6-0 240 Villanova #> 829 1997-05-28 6-2 235 Northern Colorado #> 830 1991-04-20 6-3 328 Wyoming #> 831 1990-02-27 6-1 211 Appalachian State #> 832 1996-11-10 6-4 228 Missouri #> 833 1993-04-23 6-4 235 Louisiana Tech #> 834 1996-07-09 6-2 200 Boise State #> 835 1997-12-22 5-11 225 Missouri #> 836 1996-11-28 5-9 188 Western Michigan #> 837 1994-07-24 5-8 190 Colorado #> 838 1996-08-16 6-0 235 Old Dominion #> 839 1993-04-13 6-1 215 Wisconsin #> 840 1996-02-24 6-0 238 Oregon #> 841 1994-03-17 5-10 200 Stony Brook #> 842 1996-02-13 6-0 207 Florida State #> 843 1995-10-18 6-6 323 Arizona State #> 844 1995-02-10 6-6 329 Massachusetts #> 845 1985-10-11 6-9 315 Southern Mississippi #> 846 1996-03-25 6-5 300 Texas #> 847 1992-05-27 6-5 300 Utah #> 848 1992-06-03 6-6 312 Tennessee #> 849 1997-03-06 6-5 315 Utah #> 850 1995-02-17 6-6 248 Wisconsin #> 851 1997-11-20 6-4 249 Iowa #> 852 1995-07-11 6-6 250 Michigan #> 853 1998-04-25 6-5 255 Missouri #> 854 1993-03-06 6-6 261 Ohio State #> 855 1995-05-14 6-4 244 Wyoming #> 856 1996-05-15 6-3 255 Texas #> 857 1995-01-31 6-5 258 Clemson #> 858 1995-10-10 6-4 216 Southern Methodist #> 859 1993-12-01 6-1 196 Mississippi State #> 860 1999-04-24 6-1 192 Alabama #> 861 1995-03-10 6-1 206 Penn State #> 862 1993-11-23 6-4 212 Utah #> 863 1997-02-19 6-0 195 Wake Forest #> 864 1997-01-16 6-0 180 East Central #> 865 1997-09-20 6-2 205 Florida #> 866 1999-07-08 5-9 176 Penn State #> 867 1992-03-19 5-8 170 McNeese State #> 868 1994-02-11 6-5 310 Kentucky #> 869 1996-05-17 6-5 311 Arkansas #> 870 1992-06-30 6-3 308 North Carolina #> 871 1996-02-09 6-2 203 Penn State #> 872 1999-02-02 6-1 200 Ohio State #> 873 1990-11-26 5-11 182 Marshall #> 874 1993-01-23 5-10 189 East Carolina #> 875 1988-08-20 6-0 188 Belhaven #> 876 1990-09-10 6-0 190 Washington #> 877 1993-05-03 5-10 185 North Carolina A&amp;T #> 878 1995-08-04 6-0 196 Southeast Missouri #> 879 1993-03-27 5-11 190 Tennessee #> 880 1998-04-25 6-4 205 Norfolk State #> 881 1993-05-10 6-2 222 Southern Utah #> 882 1996-04-20 5-11 192 Houston #> 883 1998-07-07 6-0 210 Notre Dame #> 884 1995-02-01 6-1 210 Louisiana-Lafayette #> 885 1995-12-15 5-11 195 Mississippi #> 886 1997-12-27 6-5 241 Notre Dame #> 887 1993-06-18 6-6 300 Michigan State #> 888 1996-12-30 6-3 285 Ohio State #> 889 1996-11-12 6-6 261 Clemson #> 890 1995-06-17 6-4 263 Notre Dame #> 891 1995-11-14 6-3 297 Alabama #> 892 1994-07-09 6-4 305 Louisiana State #> 893 1993-08-16 6-2 265 Arkansas #> 894 1996-03-24 6-2 280 Indiana #> 895 1987-12-22 6-3 273 Southern California #> 896 1992-12-21 6-3 320 Georgia #> 897 1997-06-27 6-3 305 Clemson #> 898 1997-05-31 6-2 333 Utah #> 899 1993-08-20 6-2 345 Washington #> 900 1996-08-05 6-4 285 Texas-San Antonio #> 901 1990-02-21 6-4 309 Samford #> 902 1996-09-16 6-2 302 Southern Methodist #> 903 1997-02-05 6-4 305 Ohio State #> 904 1991-06-05 6-5 315 Virginia #> 905 1993-04-09 6-4 310 Washington State #> 906 1997-03-18 6-6 320 Kentucky #> 907 1984-08-10 5-10 201 Central Florida #> 908 1996-03-22 6-0 179 Central Florida #> 909 1996-11-24 6-3 240 Wayne State, Mich. #> 910 1995-01-31 6-0 233 Tennessee #> 911 1996-03-17 6-1 235 Penn State #> 912 1996-09-28 6-2 250 Hawaii #> 913 1995-09-11 6-0 235 Alabama #> 914 1989-10-20 6-3 255 Southern Mississippi #> 915 1994-11-16 6-1 245 Florida #> 916 1993-09-23 6-2 252 Alabama #> 917 1992-02-19 6-6 272 North Carolina #> 918 1991-02-18 6-3 250 Florida State #> 919 1981-08-17 6-4 258 Texas A&amp;M #> 920 1996-09-01 6-2 224 Rice #> 921 1988-02-07 6-3 220 Georgia #> 922 1986-10-07 6-0 229 Missouri #> 923 1995-07-31 6-0 200 Purdue #> 924 1997-06-30 5-11 212 Auburn #> 925 1999-01-14 5-10 211 Georgia #> 926 1996-10-31 5-10 204 Florida Atlantic #> 927 1985-03-21 6-1 220 Oklahoma #> 928 1994-12-12 5-7 185 Colorado State #> 929 1996-06-22 6-2 245 San Diego State #> 930 1991-01-24 6-1 205 Rutgers #> 931 1995-12-19 6-1 207 Boston College #> 932 1994-09-10 6-0 212 Northwestern #> 933 1994-09-20 6-9 325 Arkansas #> 934 1993-06-16 6-6 320 Texas Christian #> 935 1995-12-19 6-7 299 Iowa #> 936 1993-08-23 6-7 318 Ohio State #> 937 1995-09-05 6-4 310 Oregon #> 938 1992-01-16 6-4 253 Bowie State #> 939 1992-12-31 6-5 254 South Carolina #> 940 1994-06-04 6-7 250 Penn State #> 941 1997-03-29 6-5 247 Notre Dame #> 942 1998-08-20 6-2 239 Washington #> 943 1997-07-03 6-5 248 Iowa #> 944 1995-04-03 5-10 190 San Diego #> 945 1996-07-29 5-10 194 Bryant #> 946 1989-08-23 6-2 215 Rutgers #> 947 1990-03-12 6-2 198 California #> 948 1985-11-02 5-11 185 Texas Tech #> 949 1998-04-01 6-1 205 Wisconsin #> 950 1995-04-04 5-8 178 Oregon State #> 951 1994-01-18 6-3 202 Illinois #> 952 1993-11-03 6-4 213 Northern Illinois #> 953 1991-07-27 6-3 301 Ohio State #> 954 1997-04-29 6-5 297 Oregon #> 955 1994-10-11 5-10 180 Tulane #> 956 1996-08-07 5-11 189 Georgia State #> 957 1995-05-05 6-3 200 Washington #> 958 1993-10-19 5-11 196 Notre Dame #> 959 1983-03-16 5-11 192 Louisiana Tech #> 960 1997-02-09 5-10 196 Louisville #> 961 1994-09-18 6-0 196 Toledo #> 962 1996-04-03 6-0 196 Iowa #> 963 1996-01-03 6-1 187 Colorado #> 964 1993-04-29 6-0 214 Penn State #> 965 1997-01-03 5-11 204 Baylor #> 966 1997-09-11 6-2 206 Texas Christian #> 967 1995-02-02 5-11 197 James Madison #> 968 1999-02-23 6-2 185 Florida State #> 969 1994-06-09 6-6 296 Northwestern #> 970 1989-04-15 6-4 300 Boise State #> 971 1997-01-21 6-5 250 Southern Methodist #> 972 1995-07-24 6-4 304 Auburn #> 973 1997-02-26 6-5 235 Utah State #> 974 1996-09-26 6-3 288 Texas A&amp;M #> 975 1996-09-01 6-5 350 Alabama-Birmingham #> 976 1997-05-19 6-5 295 Rutgers #> 977 1988-11-29 6-3 350 William Penn #> 978 1994-06-24 6-3 322 Texas-San Antonio #> 979 1989-11-22 6-3 324 Oklahoma State #> 980 1994-03-09 6-6 329 Michigan #> 981 1989-10-21 6-6 315 Wisconsin #> 982 1997-01-19 6-6 315 North Dakota State #> 983 1995-12-26 6-5 310 Mississippi State #> 984 1993-07-30 6-3 313 Duke #> 985 1997-08-08 6-5 321 Michigan #> 986 1997-05-15 6-4 311 Indiana #> 987 1984-09-03 6-1 207 Colorado #> 988 1997-11-01 6-0 244 Arkansas #> 989 1992-11-17 6-5 265 Mississippi State #> 990 1997-12-03 6-5 277 Michigan #> 991 1999-07-28 6-4 250 Miami #> 992 1995-03-21 6-3 233 Vanderbilt #> 993 1995-12-31 6-1 240 Texas Christian #> 994 1992-09-08 6-4 272 Kentucky #> 995 1998-04-02 6-1 235 UCLA #> 996 1998-06-17 6-3 245 Minnesota #> 997 1995-09-07 6-3 236 Arkansas #> 998 1994-03-09 6-0 230 Louisville #> 999 1992-08-31 6-2 235 Iowa #> 1000 1994-05-21 6-3 240 Mississippi State #> 1001 1995-10-04 6-3 314 UCLA #> 1002 1994-11-04 6-3 315 Northwestern #> 1003 1994-04-30 6-5 217 Pittsburgh #> 1004 1995-10-30 6-6 208 Alabama #> 1005 1983-12-02 6-2 225 California #> 1006 1994-10-03 6-4 233 Eastern Kentucky #> 1007 1998-11-02 6-4 220 Utah State #> 1008 1996-04-25 6-3 225 Princeton #> 1009 1997-01-06 5-11 212 Notre Dame #> 1010 1997-08-25 5-10 212 Ohio State #> 1011 1998-04-29 6-3 223 Memphis #> 1012 1994-12-02 5-9 208 Texas-El Paso #> 1013 1993-10-07 5-10 185 San Jose State #> 1014 1998-05-02 6-1 250 Boston College #> 1015 1995-04-03 6-0 213 Brigham Young #> 1016 1997-07-30 5-11 200 Maryland #> 1017 1993-12-28 5-11 186 Mississippi State #> 1018 1996-10-17 6-7 315 San Diego State #> 1019 1991-10-17 6-5 310 North Dakota State #> 1020 1996-01-02 6-7 314 Virginia Tech #> 1021 1991-09-30 6-4 310 Colorado #> 1022 1987-06-14 6-8 321 Hillsdale #> 1023 1984-05-19 6-6 267 UCLA #> 1024 1996-06-26 6-4 250 Texas A&amp;M #> 1025 1997-06-03 6-3 235 Indiana State #> 1026 1997-02-14 6-3 240 Cincinnati #> 1027 1997-05-21 6-3 246 Georgia #> 1028 1991-07-06 6-6 275 Brigham Young #> 1029 1994-04-30 6-5 237 Indiana State #> 1030 1996-01-24 6-4 240 Duke #> 1031 1992-12-24 6-1 215 Fresno State #> 1032 1995-12-21 6-2 216 Ferris State #> 1033 1993-08-31 6-2 200 Lamar #> 1034 1996-09-30 6-5 214 Notre Dame #> 1035 1996-02-08 6-2 202 Vanderbilt #> 1036 1991-02-22 6-2 195 West Alabama #> 1037 1995-11-01 5-11 188 North Dakota State #> 1038 1995-12-11 6-5 227 Iowa State #> 1039 1990-03-15 5-8 179 West Virginia #> 1040 1994-10-10 6-4 207 South Florida #> 1041 1996-09-04 6-3 215 Colorado #> 1042 1994-05-21 6-4 225 Michigan #> 1043 1993-04-29 6-4 300 Notre Dame #> 1044 1998-02-11 6-5 295 Arizona State #> 1045 1995-09-10 6-6 300 Wisconsin #> 1046 1995-07-22 5-11 210 Missouri Western #> 1047 1995-06-03 5-10 204 Florida #> 1048 1996-05-15 5-10 181 Penn State #> 1049 1995-11-04 6-2 213 Kentucky #> 1050 1996-10-10 5-10 192 Clemson #> 1051 1992-05-01 5-11 194 Ohio State #> 1052 1995-09-22 6-0 185 Southern Mississippi #> 1053 1991-04-04 6-0 193 Rice #> 1054 1992-09-09 6-0 200 Texas A&amp;M #> 1055 1996-04-17 5-10 185 Western Carolina #> 1056 1995-06-29 6-0 190 Ohio State #> 1057 1994-01-07 5-11 199 Minnesota #> 1058 1995-12-15 5-11 202 Mississippi #> 1059 1999-04-19 5-11 210 Iowa #> 1060 1995-12-11 6-2 242 Temple #> 1061 1997-08-20 6-5 280 Texas #> 1062 1993-12-05 6-3 297 Clemson #> 1063 1989-03-22 6-5 288 Wisconsin #> 1064 1998-07-09 6-4 305 Texas Christian #> 1065 1995-04-05 6-0 305 Sam Houston State #> 1066 1990-03-18 6-2 300 Illinois #> 1067 1994-03-20 6-3 291 Michigan #> 1068 1994-10-13 6-3 315 UCLA #> 1069 1996-10-16 6-4 320 West Georgia #> 1070 1996-08-20 6-5 310 Arkansas #> 1071 1990-05-10 6-3 300 Washington #> 1072 1991-09-23 6-5 321 Tennessee #> 1073 1994-01-29 6-0 183 UCLA #> 1074 1994-05-19 6-0 237 Missouri State #> 1075 1995-12-18 6-0 228 Oklahoma #> 1076 1992-11-19 6-4 257 Mississippi State #> 1077 1996-04-06 6-2 224 Northwestern #> 1078 1995-06-26 6-3 254 Stanford #> 1079 1994-12-02 6-3 238 Vanderbilt #> 1080 1990-07-21 6-4 258 Illinois #> 1081 1992-04-11 6-2 228 West Georgia #> 1082 1997-05-25 6-3 259 Florida #> 1083 1995-04-24 6-4 255 Wake Forest #> 1084 1996-11-20 6-1 235 Rice #> 1085 1993-07-31 6-4 263 Stanford #> 1086 1991-08-16 6-3 250 North Dakota State #> 1087 1992-10-30 6-3 220 Lake Erie #> 1088 1986-02-17 5-10 242 Baylor #> 1089 1992-09-05 6-2 310 Louisville #> 1090 1995-12-30 6-3 290 Virginia #> 1091 1988-10-06 6-3 205 California #> 1092 1995-09-14 6-2 221 Clemson #> 1093 1990-09-13 6-3 220 Alabama #> 1094 1979-07-04 6-4 218 Sam Houston State #> 1095 1995-02-26 5-11 202 Tulane #> 1096 1996-03-27 6-1 218 Florida Atlantic #> 1097 1991-12-16 6-1 224 Northern Iowa #> 1098 1997-10-06 5-8 211 Mississippi #> 1099 1993-09-23 5-9 210 Miami #> 1100 1995-05-12 6-2 235 Texas A&amp;M #> 1101 1990-03-17 5-11 195 Stanford #> 1102 1997-02-15 6-1 204 Stanford #> 1103 1991-03-11 6-7 315 Nebraska #> 1104 1996-05-23 6-5 322 Alabama State #> 1105 1995-11-28 6-6 306 Florida State #> 1106 1996-08-10 6-6 325 Northern Illinois #> 1107 1994-08-02 6-5 313 Mississippi #> 1108 1996-11-20 6-8 315 North Carolina #> 1109 1996-07-16 6-5 305 Northern Illinois #> 1110 1992-04-19 6-4 243 Central Florida #> 1111 1994-05-04 6-6 258 Oregon #> 1112 1986-04-22 6-7 270 California-Irvine #> 1113 1997-03-23 6-5 250 San Diego State #> 1114 1990-08-22 5-10 192 Kentucky #> 1115 1994-05-02 5-10 186 Southern California #> 1116 1995-01-18 6-2 202 California #> 1117 1997-01-14 5-11 180 Texas Tech #> 1118 1995-04-16 6-2 200 Texas A&amp;M #> 1119 1998-09-18 6-3 190 Rhode Island #> 1120 1995-05-23 6-3 205 Missouri #> 1121 1994-04-16 6-0 184 Notre Dame #> 1122 1994-10-12 5-11 195 Clemson #> 1123 1993-09-25 5-10 183 Oregon State #> 1124 1993-05-30 6-4 309 Alabama #> 1125 1994-02-22 6-2 299 Texas Christian #> 1126 1996-02-21 6-5 290 Arizona State #> 1127 1990-07-28 6-0 204 Ohio #> 1128 1997-05-12 6-0 205 Tulane #> 1129 1996-07-20 6-0 190 Central Arkansas #> 1130 1996-05-23 6-0 190 Temple #> 1131 1996-10-16 5-11 205 Wisconsin #> 1132 1990-06-19 6-1 218 Florida State #> 1133 1996-05-31 6-0 190 Coastal Carolina #> 1134 1998-01-07 5-10 170 Massachusetts #> 1135 1995-08-23 5-9 190 Valdosta State #> 1136 1996-08-02 6-2 198 Southern California #> 1137 1996-02-10 6-0 195 San Jose State #> 1138 1992-05-13 5-11 208 Northwestern #> 1139 1996-09-11 6-4 196 Troy #> 1140 1998-08-24 6-1 204 Utah #> 1141 1993-11-03 6-1 202 Central Arkansas #> 1142 1996-04-02 6-1 212 Ohio State #> 1143 1995-01-30 6-3 277 Ohio State #> 1144 1990-07-15 6-5 285 Mississippi State #> 1145 1995-07-11 6-5 248 Rutgers #> 1146 1989-01-21 6-3 270 Georgia #> 1147 1995-03-28 6-4 250 Miami #> 1148 1996-01-19 6-3 252 Texas Christian #> 1149 1998-06-16 6-2 305 Wagner #> 1150 1998-02-19 6-4 270 South Dakota #> 1151 1995-08-18 6-2 305 South Carolina #> 1152 1997-01-15 6-5 290 Penn State #> 1153 1994-03-17 6-7 300 Oregon #> 1154 1992-05-03 6-4 310 West Virginia #> 1155 1996-03-19 6-5 330 Notre Dame #> 1156 1996-06-19 6-4 300 Ball State #> 1157 1994-03-04 6-5 300 Washington #> 1158 1997-01-29 6-1 191 Georgia #> 1159 1995-07-27 6-2 230 South Carolina State #> 1160 1995-12-12 6-0 229 Houston #> 1161 1995-08-08 6-1 230 Northwestern #> 1162 1989-06-04 6-0 244 West Virginia #> 1163 1995-01-08 6-2 225 South Carolina #> 1164 1996-07-29 6-1 234 Stanford #> 1165 1996-06-28 6-1 226 Michigan #> 1166 1996-01-03 6-2 245 Indiana #> 1167 1995-06-01 6-4 230 Tarleton State #> 1168 1996-07-02 6-0 236 Syracuse #> 1169 1992-12-02 6-2 238 William &amp; Mary #> 1170 1993-10-20 6-4 315 Albany State, Ga. #> 1171 1995-03-17 6-3 213 Idaho #> 1172 1994-09-08 6-0 195 Hawaii #> 1173 1990-02-28 6-2 220 Louisiana Tech #> 1174 1992-12-11 6-4 235 North Carolina State #> 1175 1994-03-26 6-2 216 Mississippi #> 1176 1997-11-17 6-6 227 Washington #> 1177 1981-12-08 6-5 228 North Carolina State #> 1178 1996-11-12 5-9 198 North Carolina State #> 1179 1994-07-18 6-1 217 Mississippi #> 1180 1997-09-10 5-11 212 Texas Christian #> 1181 1999-01-19 5-11 221 Wisconsin #> 1182 1996-03-07 6-0 210 South Florida #> 1183 1994-11-16 5-11 213 UCLA #> 1184 1993-12-01 6-0 220 Eastern Michigan #> 1185 1996-05-07 5-11 215 Michigan State #> 1186 1990-03-19 6-0 208 Illinois #> 1187 1994-08-16 5-10 200 Toledo #> 1188 1993-04-22 6-5 311 Texas Tech #> 1189 1998-12-23 6-6 315 Alberta, Can. #> 1190 1988-08-09 6-7 307 Boston College #> 1191 1995-09-26 6-6 315 Arizona State #> 1192 1993-09-14 6-7 312 Vanderbilt #> 1193 1992-04-08 6-5 318 Florida #> 1194 1996-03-25 6-6 315 Auburn #> 1195 1994-12-28 6-5 316 Toledo #> 1196 1988-08-08 6-7 320 West Texas A&amp;M #> 1197 1996-08-02 6-5 277 Mississippi State #> 1198 1995-03-15 6-5 245 Weber State #> 1199 1990-05-05 6-6 262 Western Kentucky #> 1200 1993-09-19 6-5 267 Virginia Commonwealth #> 1201 1997-07-06 6-4 246 Oregon State #> 1202 1991-10-29 6-2 238 Florida #> 1203 1997-06-10 6-4 240 Mississippi State #> 1204 1998-08-06 6-4 220 Washington State #> 1205 1997-07-16 6-0 205 Ohio State #> 1206 1998-07-12 5-9 175 Southern Mississippi #> 1207 1992-04-24 5-10 160 Alabama-Birmingham #> 1208 1995-12-22 6-2 210 Northern Iowa #> 1209 1997-05-15 6-1 215 Malone #> 1210 1997-03-07 6-1 215 West Virginia #> 1211 1994-12-18 6-2 214 Old Dominion #> 1212 1989-11-14 5-10 183 Florida International #> 1213 1997-10-05 6-4 220 Southern California #> 1214 1993-08-19 6-3 321 Missouri #> 1215 1990-06-27 5-11 190 Houston #> 1216 1994-06-25 6-2 200 Iowa #> 1217 1989-10-02 6-2 196 Northern Illinois #> 1218 1997-02-13 5-11 194 UCLA #> 1219 1995-07-11 5-11 198 Michigan #> 1220 1999-04-05 5-10 175 Michigan State #> 1221 1996-05-21 6-0 181 Washington #> 1222 1998-07-27 6-1 175 San Diego State #> 1223 1997-06-20 6-1 209 Stanford #> 1224 1998-09-30 6-1 191 Florida #> 1225 1997-07-17 6-0 176 Memphis #> 1226 1996-03-05 5-11 185 Vanderbilt #> 1227 1996-12-05 6-0 209 Wyoming #> 1228 1993-09-25 6-0 210 Appalachian State #> 1229 1996-07-17 6-3 200 Utah #> 1230 1992-09-23 6-4 287 Georgia Tech #> 1231 1993-04-01 6-3 261 Arizona #> 1232 1997-07-13 6-5 262 Kentucky #> 1233 1999-07-25 6-4 250 Louisiana State #> 1234 1995-03-02 6-3 264 Illinois #> 1235 1992-01-19 6-5 305 Delaware State #> 1236 1990-08-26 6-3 249 Florida #> 1237 1987-03-25 6-4 330 Louisiana State #> 1238 1994-01-13 6-3 300 Washington State #> 1239 1996-03-11 6-4 291 Florida #> 1240 1991-09-08 6-4 318 Georgia #> 1241 1997-10-05 6-2 295 Miami, O. #> 1242 1991-11-23 6-2 292 Princeton #> 1243 1993-03-15 6-3 305 N.E. Mississippi CC #> 1244 1992-04-03 6-3 295 Auburn #> 1245 1987-08-06 6-2 248 Central Florida #> 1246 1991-05-05 6-3 310 Clemson #> 1247 1991-10-23 6-3 325 South Carolina #> 1248 1991-10-25 6-6 325 Ohio State #> 1249 1992-01-25 6-6 315 Miami #> 1250 1997-09-25 6-4 336 Missouri #> 1251 1985-06-29 6-4 210 North Carolina State #> 1252 1992-12-07 5-10 202 Louisville #> 1253 1990-11-19 6-0 215 Texas A&amp;M #> 1254 1994-12-30 6-3 221 Southern Oregon #> 1255 1997-01-20 6-1 230 Temple #> 1256 1997-10-28 6-1 235 Miami #> 1257 1993-11-06 6-1 245 Wisconsin #> 1258 1996-08-28 5-11 226 Murray State #> 1259 1997-04-01 6-2 234 Duke #> 1260 1995-11-02 6-1 232 Texas Tech #> 1261 1994-04-27 6-3 241 Boise State #> 1262 1995-10-03 6-2 245 Wisconsin #> 1263 1995-09-03 6-1 244 UCLA #> 1264 1998-02-27 6-1 241 Central Florida #> 1265 1993-03-08 6-5 285 South Florida #> 1266 1996-09-13 6-0 235 Baylor #> 1267 1997-02-01 6-4 310 Ohio State #> 1268 1995-09-18 6-3 320 Auburn #> 1269 1995-03-10 6-2 200 Georgia #> 1270 1995-07-28 6-5 200 Mississippi State #> 1271 1996-04-11 6-6 236 Oregon State #> 1272 1989-12-12 6-7 225 North Carolina State #> 1273 1996-05-16 6-1 225 Washington State #> 1274 1996-10-02 6-0 225 Nebraska #> 1275 1996-10-30 5-11 220 Temple #> 1276 1990-10-20 5-8 195 Florida State #> 1277 1996-08-02 5-11 193 Georgia Tech #> 1278 1998-08-09 5-10 220 Illinois State #> 1279 1996-06-15 5-11 215 Kutztown #> 1280 1994-05-04 5-10 205 Wisconsin #> 1281 1994-02-09 6-2 210 Michigan #> 1282 1998-07-01 5-11 209 Auburn #> 1283 1994-09-20 6-2 220 North Carolina State #> 1284 1995-10-13 6-6 302 East Carolina #> 1285 1998-07-22 6-6 305 St. John's, Minn. #> 1286 1996-04-18 6-5 311 Miami #> 1287 1996-01-04 6-6 303 North Carolina State #> 1288 1995-05-10 6-4 320 Maryland #> 1289 1995-10-09 6-6 320 Alabama #> 1290 1997-08-22 6-7 312 Ohio #> 1291 1997-11-25 6-5 312 Florida #> 1292 1994-05-01 6-5 253 Drake #> 1293 1992-01-14 6-4 245 Illinois State #> 1294 1995-03-26 6-6 260 Pittsburgh #> 1295 1990-09-08 6-6 255 Notre Dame #> 1296 1996-09-01 6-3 250 North Dakota State #> 1297 1997-04-02 6-4 250 Georgia Tech #> 1298 1997-03-21 6-5 250 San Jose State #> 1299 1996-10-23 5-11 185 Georgia #> 1300 1993-04-20 6-1 194 Kentucky Wesleyan #> 1301 1996-10-29 5-11 195 Boston College #> 1302 1997-06-20 6-3 204 Troy #> 1303 1998-07-24 6-0 194 Florida #> 1304 1993-11-21 6-0 176 Oklahoma #> 1305 1998-10-05 6-2 220 Colorado #> 1306 1996-09-23 6-4 198 Louisiana State #> 1307 1992-10-25 6-3 205 Georgia #> 1308 1994-11-28 6-5 210 North Carolina #> 1309 1997-09-23 6-6 215 Texas #> 1310 1987-12-18 6-3 291 Appalachian State #> 1311 1997-06-10 6-2 305 Mississippi State #> 1312 1991-11-27 6-3 300 South Florida #> 1313 1993-01-24 6-0 190 South Carolina State #> 1314 1996-08-30 5-11 170 South Carolina State #> 1315 1992-01-30 5-11 195 Clemson #> 1316 1997-11-09 6-1 200 Tulane #> 1317 1997-01-21 6-1 193 Louisiana Tech #> 1318 1997-02-17 5-11 188 South Carolina #> 1319 1996-01-31 5-10 190 South Carolina #> 1320 1996-05-16 6-1 195 Middle Tennessee #> 1321 1997-09-04 5-11 180 Georgia #> 1322 1995-10-19 6-0 205 Virginia #> 1323 1990-03-05 6-2 208 Brigham Young #> 1324 1996-12-28 6-0 205 Southern Methodist #> 1325 1991-02-08 6-4 260 Texas #> 1326 1997-08-11 6-6 255 Old Dominion #> 1327 1994-11-07 6-6 270 Michigan #> 1328 1993-06-14 6-3 260 Michigan #> 1329 1995-12-30 6-4 272 Buffalo #> 1330 1994-06-14 6-7 289 Villanova #> 1331 1997-12-04 6-2 255 Michigan #> 1332 1997-08-27 6-5 280 Ferris State #> 1333 1996-08-09 6-0 324 Western Illinois #> 1334 1998-07-25 6-4 300 Georgia #> 1335 1998-06-25 6-4 255 Missouri S&amp;T #> 1336 1994-07-03 6-6 308 Mississippi State #> 1337 1990-06-16 6-7 320 South Dakota State #> 1338 1989-06-24 6-5 330 Iowa State #> 1339 1989-03-22 6-3 305 Penn State #> 1340 1991-02-11 6-5 321 McGill #> 1341 1989-12-29 6-4 327 Michigan #> 1342 1996-04-21 6-4 320 Illinois #> 1343 1995-07-14 6-4 205 Georgia Tech #> 1344 1994-09-04 6-1 220 Clemson #> 1345 1998-02-15 6-2 235 Mississippi State #> 1346 1993-05-28 6-0 243 Minnesota #> 1347 1992-06-10 6-0 235 Iowa #> 1348 1995-07-27 6-2 233 Iowa #> 1349 1995-07-25 6-2 240 Vanderbilt #> 1350 1996-01-17 6-2 238 Middle Tennessee #> 1351 1997-05-31 6-4 223 Marshall #> 1352 1989-08-06 6-3 240 Oklahoma #> 1353 1991-05-09 6-4 332 Colorado State-Pueblo #> 1354 1996-05-09 6-1 310 Florida State #> 1355 1982-05-06 6-3 210 Tennessee #> 1356 1996-11-12 6-2 176 Florida #> 1357 1995-09-17 6-3 230 Texas Tech #> 1358 1984-08-09 6-3 219 Oregon State #> 1359 1985-07-02 6-3 222 Michigan #> 1360 1997-12-10 6-3 221 Mississippi #> 1361 1992-04-03 5-11 224 Oklahoma #> 1362 1988-12-11 5-10 242 Connecticut #> 1363 1997-02-12 5-8 200 Utah State #> 1364 1994-06-01 5-10 214 Louisiana-Lafayette #> 1365 1995-04-15 5-11 224 Louisiana State #> 1366 1992-02-18 6-1 225 Michigan State #> 1367 1999-04-11 5-8 209 Louisiana State #> 1368 1996-03-19 5-11 205 Texas A&amp;M #> 1369 1992-05-13 5-9 190 Louisiana State #> 1370 1989-04-11 6-5 310 Oregon State #> 1371 1994-08-19 6-6 309 Eastern Michigan #> 1372 1991-01-05 6-7 315 Central Michigan #> 1373 1998-08-18 6-7 328 Texas Christian #> 1374 1998-05-21 6-7 330 Missouri #> 1375 1994-10-20 6-5 311 Mississippi State #> 1376 1989-06-08 6-5 320 California #> 1377 1997-11-22 6-7 310 Auburn #> 1378 1995-03-06 6-4 255 Western Kentucky #> 1379 1995-03-15 6-5 243 Texas A&amp;M #> 1380 1989-10-05 6-5 260 Cincinnati #> 1381 1993-06-11 6-5 255 Missouri #> 1382 1993-11-18 6-5 250 Oregon #> 1383 1995-05-02 6-4 251 Grand Valley State #> 1384 1994-09-21 6-1 203 Florida #> 1385 1998-01-01 5-11 200 Pittsburgh #> 1386 1994-12-23 6-2 194 Massachusetts #> 1387 1993-06-14 6-1 211 Clemson #> 1388 1994-10-19 6-1 204 Grambling #> 1389 1995-12-07 6-6 230 Valdosta State #> 1390 1997-01-09 5-11 200 Florida #> 1391 1998-03-12 5-10 187 Georgia #> 1392 1993-02-24 6-3 207 Alabama #> 1393 1993-11-17 6-1 205 Kansas State #> 1394 1994-03-01 5-10 185 West Alabama #> 1395 1995-08-14 6-4 210 Hawaii #> 1396 1992-06-16 6-3 300 Iowa #> 1397 1995-10-11 6-2 302 Michigan State #> 1398 1991-08-29 5-11 184 Oregon #> 1399 1998-02-06 5-11 196 Michigan #> 1400 1994-01-28 5-9 158 Boise State #> 1401 1994-10-24 6-1 208 Florida State #> 1402 1993-03-15 5-9 187 Alabama-Birmingham #> 1403 1998-07-19 5-11 188 Fresno State #> 1404 1995-12-19 6-0 209 Boston College #> 1405 1995-05-17 5-11 200 Penn State #> 1406 1998-03-04 6-2 205 Ohio State #> 1407 1996-03-11 6-1 195 Georgia #> 1408 1998-08-11 5-10 187 Georgia #> 1409 1994-05-09 6-5 250 Youngstown State #> 1410 1994-09-12 6-3 275 Colorado State-Pueblo #> 1411 1995-08-17 6-5 275 Weber State #> 1412 1990-12-21 6-5 305 Louisiana State #> 1413 1998-01-30 6-4 270 Texas-San Antonio #> 1414 1991-05-23 6-1 280 Pittsburgh #> 1415 1995-03-21 6-4 330 Alabama #> 1416 1997-10-05 6-4 310 Brown #> 1417 1997-05-09 6-2 285 Cincinnati #> 1418 1996-06-20 6-5 321 Maine #> 1419 1994-10-23 6-3 316 San Jose State #> 1420 1995-06-19 6-5 321 Texas Christian #> 1421 1997-03-20 6-6 308 Wisconsin #> 1422 1995-09-05 6-4 305 Nevada #> 1423 1995-07-28 6-5 285 Washington #> 1424 1987-09-02 5-11 197 UCLA #> 1425 1995-05-04 5-10 185 Kentucky #> 1426 1994-03-15 6-0 232 Utah #> 1427 1994-11-15 6-1 235 UCLA #> 1428 1993-06-25 6-2 220 Oklahoma State #> 1429 1994-09-13 6-3 245 Delaware #> 1430 1995-04-24 6-1 253 Oklahoma #> 1431 1992-09-08 6-5 240 Georgia #> 1432 1995-01-25 6-0 244 Virginia #> 1433 1994-12-23 6-4 265 Southern Methodist #> 1434 1996-01-15 6-5 248 Oregon #> 1435 1995-05-09 6-3 245 Eastern Washington #> 1436 1997-01-30 6-2 230 South Dakota State #> 1437 1998-08-25 6-5 252 Alabama #> 1438 1997-03-30 6-3 258 Florida #> 1439 1996-05-10 6-1 219 Texas Christian #> 1440 1997-10-03 6-4 235 Iowa State #> 1441 1994-07-08 6-4 248 Louisville #> 1442 1987-12-07 6-2 235 Ohio State #> 1443 1996-05-06 6-1 312 Washington #> 1444 1995-03-21 6-4 310 Rutgers #> 1445 1997-02-18 5-10 182 Georgia State #> 1446 1990-02-08 6-5 241 Oregon State #> 1447 1995-10-16 6-1 200 Wake Forest #> 1448 1996-04-12 6-1 210 Samford #> 1449 1992-04-28 6-5 236 Central Florida #> 1450 1996-12-20 6-3 215 Virginia #> 1451 1994-10-14 6-4 223 California #> 1452 1999-06-22 5-11 212 Florida State #> 1453 1998-04-02 5-9 185 Louisiana-Lafayette #> 1454 1997-08-24 5-11 208 Southern Methodist #> 1455 1997-08-19 5-8 200 Memphis #> 1456 1993-05-15 5-11 222 Texas #> 1457 1997-12-22 6-0 208 Washington #> 1458 1995-09-18 6-1 212 Iowa #> 1459 1998-11-12 6-0 198 Utah #> 1460 1992-05-13 6-8 328 Wisconsin #> 1461 1997-06-12 6-6 319 Middle Tennessee #> 1462 1998-06-24 6-2 315 Clemson #> 1463 1981-12-12 6-7 330 Louisiana State #> 1464 1997-03-24 6-4 312 Oklahoma #> 1465 1994-06-25 6-3 240 South Alabama #> 1466 1997-03-27 6-5 245 Purdue #> 1467 1993-01-01 6-6 257 Western Kentucky #> 1468 1995-11-10 6-6 260 Missouri #> 1469 1994-11-23 6-4 232 Oregon #> 1470 1992-04-10 6-0 193 Southern California #> 1471 1996-07-26 6-2 197 Florida #> 1472 1998-03-09 6-1 191 Syracuse #> 1473 1996-12-27 6-1 195 Cal Poly #> 1474 1993-06-15 6-2 208 Eastern Washington #> 1475 1995-02-16 6-3 196 Texas A&amp;M #> 1476 1996-01-27 5-10 180 Eastern Washington #> 1477 1989-07-24 6-5 298 Florida #> 1478 1994-03-13 6-7 300 Harvard #> 1479 1993-06-14 6-0 200 Regina, Can. #> 1480 1994-09-08 6-2 197 Virginia Tech #> 1481 1995-01-06 6-2 196 Brigham Young #> 1482 1989-09-09 5-11 192 Vanderbilt #> 1483 1989-06-18 5-10 199 Kansas #> 1484 1997-05-31 6-0 206 Delaware #> 1485 1990-01-24 5-10 195 Central Michigan #> 1486 1998-03-10 6-2 195 Western Carolina #> 1487 1997-10-12 6-2 212 Notre Dame #> 1488 1996-08-03 6-2 215 Florida State #> 1489 1997-01-31 6-3 240 Liberty #> 1490 1995-07-11 6-5 280 Ohio State #> 1491 1989-04-26 6-2 247 South Carolina #> 1492 1995-04-22 6-4 280 Notre Dame #> 1493 1996-09-27 6-4 275 Northwestern #> 1494 1996-12-28 6-2 251 Southern California #> 1495 1996-10-08 6-6 295 Notre Dame #> 1496 1997-04-19 6-3 290 Arkansas #> 1497 1996-08-28 6-3 309 North Carolina State #> 1498 1996-09-02 6-2 293 Cincinnati #> 1499 1994-05-29 6-4 310 Indiana #> 1500 1995-03-23 6-3 310 UCLA #> 1501 1997-07-06 6-5 300 Wake Forest #> 1502 1990-09-30 6-5 320 Wisconsin #> 1503 1993-06-14 6-3 315 Louisiana State #> 1504 1994-02-20 6-4 309 Western Kentucky #> 1505 1995-01-01 6-3 316 Bowling Green #> 1506 1995-07-28 5-10 183 Miami #> 1507 1995-08-15 6-2 234 Notre Dame #> 1508 1996-11-15 6-2 240 Texas #> 1509 1996-03-24 6-2 216 West Virginia #> 1510 1998-11-16 6-3 234 Oklahoma #> 1511 1993-08-20 6-2 235 Utah State #> 1512 1992-12-05 5-11 240 Miami #> 1513 1997-07-30 6-2 225 Army #> 1514 1996-10-13 6-2 245 Houston #> 1515 1994-10-31 6-3 229 Illinois State #> 1516 1995-02-14 6-1 247 Alabama #> 1517 1988-10-10 6-4 329 East Carolina #> 1518 1989-02-06 6-2 293 Alabama #> 1519 1996-10-15 6-2 295 Louisiana State #> 1520 1992-04-27 6-4 209 Sam Houston State #> 1521 1993-04-06 6-2 205 Alabama-Birmingham #> 1522 1989-08-03 6-1 215 Virginia Tech #> 1523 1995-09-15 6-1 224 North Dakota State #> 1524 1998-03-10 6-6 237 Oregon #> 1525 1997-11-20 5-11 219 UCLA #> 1526 1995-05-17 5-10 200 Western State, Colo. #> 1527 1997-05-15 6-1 230 Tulane #> 1528 1993-11-26 5-9 205 Jacksonville State #> 1529 1995-12-22 6-2 230 Arizona State #> 1530 1997-11-05 6-3 243 Florida State #> 1531 1996-04-22 6-0 200 Northwestern #> 1532 1997-09-17 5-11 202 Notre Dame #> 1533 1991-11-27 5-11 194 Florida #> 1534 1994-01-25 6-1 220 Miami #> 1535 1994-11-15 6-5 315 Utah #> 1536 1996-09-05 6-6 307 Sioux Falls #> 1537 1994-05-16 6-7 317 Toledo #> 1538 1989-03-21 6-5 314 Iowa #> 1539 1997-08-05 6-5 315 Miami #> 1540 1994-12-07 6-5 250 Arkansas #> 1541 1997-08-16 6-8 237 Stetson University #> 1542 1988-08-03 6-5 255 Nevada #> 1543 1995-11-09 6-6 260 Michigan State #> 1544 1993-01-30 6-3 230 California #> 1545 1996-11-02 6-2 190 West Georgia #> 1546 1996-01-08 6-1 193 Oklahoma State #> 1547 1995-06-23 6-3 215 Findlay #> 1548 1992-04-27 6-2 211 California #> 1549 1997-09-15 6-0 197 Ohio State #> 1550 1997-04-17 6-2 204 Idaho #> 1551 1998-01-04 6-1 215 Virginia #> 1552 1997-06-07 6-1 212 North Texas #> 1553 1994-10-04 6-4 218 Clemson #> 1554 1994-01-05 6-6 300 Michigan #> 1555 1989-07-12 6-2 315 Florida State #> 1556 1997-05-02 6-4 300 UCLA #> 1557 1997-06-22 5-10 200 South Carolina #> 1558 1998-07-06 5-9 183 Louisiana Tech #> 1559 1990-11-27 5-8 185 Florida State #> 1560 1993-09-09 5-11 193 Georgia Tech #> 1561 1995-02-22 6-1 215 West Virginia #> 1562 1996-02-02 6-0 195 Ohio State #> 1563 1995-08-09 5-10 195 Central Florida #> 1564 1997-09-20 6-2 200 Clemson #> 1565 1995-12-20 6-2 210 Houston #> 1566 1991-04-23 5-9 192 Utah State #> 1567 1996-11-12 6-1 200 Oklahoma State #> 1568 1997-02-21 6-3 205 Nevada-Las Vegas #> 1569 1994-08-08 5-10 195 Utah State #> 1570 1990-04-02 6-2 220 California, Pa. #> 1571 1993-04-12 6-7 275 Penn State #> 1572 1994-11-15 6-6 275 Nevada-Las Vegas #> 1573 1993-08-18 6-7 273 Iowa State #> 1574 1995-11-02 6-2 265 UCLA #> 1575 1992-02-11 6-1 266 Arkansas #> 1576 1997-05-17 6-4 265 Clemson #> 1577 1996-05-03 6-5 240 Louisiana State #> 1578 1997-08-22 6-5 255 Eastern Michigan #> 1579 1995-09-14 6-4 252 Mississippi State #> 1580 1990-07-24 6-4 285 UCLA #> 1581 1995-05-09 6-2 291 Michigan #> 1582 1992-03-30 6-3 340 Ohio State #> 1583 1995-05-23 6-3 295 Tennessee #> 1584 1995-04-08 6-2 308 Nebraska #> 1585 1996-07-09 6-1 242 Wisconsin #> 1586 1991-03-08 6-5 340 Mars Hill #> 1587 1991-07-12 6-3 336 Mississippi State #> 1588 1983-07-05 6-3 325 Nebraska #> 1589 1996-02-20 6-4 335 Alabama #> 1590 1997-08-19 6-4 330 Clemson #> 1591 1996-07-04 6-2 190 Utah State #> 1592 1995-01-23 6-5 215 Auburn #> 1593 1992-07-08 6-3 246 Clemson #> 1594 1995-07-10 6-0 225 Greenville #> 1595 1993-05-26 6-2 242 West Virginia #> 1596 1996-09-06 6-3 225 Clemson #> 1597 1995-11-17 6-2 242 Ohio State #> 1598 1993-11-18 6-3 228 Washington #> 1599 1989-04-26 6-4 240 Wake Forest #> 1600 1994-04-27 6-2 239 Georgia Southern #> 1601 1994-09-04 6-1 235 Notre Dame #> 1602 1995-05-19 6-3 240 Colorado State #> 1603 1995-09-30 6-3 320 Frostburg State #> 1604 1995-11-27 6-4 220 North Carolina State #> 1605 1991-03-28 6-3 210 Fresno State #> 1606 1994-02-07 6-5 218 Northern Colorado #> 1607 1994-05-04 6-2 225 Pittsburgh #> 1608 1993-10-30 6-4 222 Oregon #> 1609 1992-05-27 5-11 219 Utah #> 1610 1998-02-11 5-10 220 Alabama #> 1611 1993-10-15 5-8 207 Southern Mississippi #> 1612 1991-05-04 5-9 201 Notre Dame #> 1613 1991-05-14 6-1 212 Saginaw Valley State #> 1614 1995-01-23 6-0 200 Tennessee #> 1615 1996-10-25 6-0 205 Mississippi State #> 1616 1995-10-21 6-8 320 North Carolina A&amp;T #> 1617 1996-04-27 6-6 310 Rutgers #> 1618 1993-04-13 6-8 380 Florida #> 1619 1995-09-03 6-7 345 Pittsburgh #> 1620 1995-10-09 6-8 325 UCLA #> 1621 1987-06-24 6-8 302 Notre Dame #> 1622 1996-05-26 6-4 260 Penn State #> 1623 1992-08-31 6-3 252 Florida State #> 1624 1992-09-13 6-6 255 Georgia Tech #> 1625 1982-05-06 6-6 263 Tennessee #> 1626 1990-07-25 6-3 240 Beloit #> 1627 1997-05-06 6-4 250 Louisiana State #> 1628 1995-12-26 5-9 195 Nebraska #> 1629 1995-04-02 6-3 210 Georgia State #> 1630 1999-01-24 6-0 190 Alabama #> 1631 1995-12-07 6-0 202 Southern Methodist #> 1632 1992-02-12 6-4 205 Western Oregon #> 1633 1995-03-30 6-2 200 East Carolina #> 1634 1995-07-21 5-10 200 Ohio State #> 1635 1995-12-21 5-10 185 Clemson #> 1636 1994-09-16 6-4 215 Oklahoma State #> 1637 1998-11-13 6-3 215 South Carolina #> 1638 1993-05-24 6-0 198 Southern California #> 1639 1996-03-21 6-3 215 California-Davis #> 1640 1995-06-21 6-4 300 Southern Mississippi #> 1641 1997-06-29 6-5 305 Miami #> 1642 1996-09-03 6-6 310 Wisconsin #> 1643 1993-03-15 6-4 305 Illinois #> 1644 1994-10-23 5-10 180 Iowa State #> 1645 1992-09-26 6-0 205 Connecticut #> 1646 1992-08-29 6-1 215 San Jose State #> 1647 1999-11-27 5-11 196 Auburn #> 1648 1996-11-04 6-0 193 Texas-El Paso #> 1649 1993-07-04 6-1 200 Baylor #> 1650 1993-08-18 5-11 192 Memphis #> 1651 1998-04-02 6-0 205 Texas #> 1652 1997-04-03 6-2 210 Mississippi State #> 1653 1994-08-11 6-0 220 Central Michigan #> 1654 1996-12-26 5-10 186 Auburn #> 1655 1994-12-05 5-10 198 Kent State #> 1656 1997-10-15 6-1 195 Maryland #> 1657 1995-09-07 6-6 290 Ferris State #> 1658 1997-08-12 6-5 282 Auburn #> 1659 1997-03-28 6-4 256 Middle Tennessee #> 1660 1995-12-20 6-4 315 Clemson #> 1661 1993-11-06 6-4 275 Oklahoma State #> 1662 1996-09-10 6-5 280 North Carolina #> 1663 1997-09-12 6-4 280 Georgia #> 1664 1992-08-27 6-4 330 No College #> 1665 1997-11-27 6-1 329 Mississippi #> 1666 1997-01-18 6-1 310 Boston College #> 1667 1996-07-29 6-1 242 Auburn #> 1668 1994-02-02 6-5 313 West Virginia #> 1669 1994-04-25 6-6 329 Miami #> 1670 1997-07-03 6-4 335 Georgia #> 1671 1995-11-16 5-11 186 New Mexico #> 1672 1995-07-01 6-4 242 Wisconsin #> 1673 1994-06-17 6-3 267 Clemson #> 1674 1993-07-02 6-3 246 Wisconsin #> 1675 1994-05-16 6-2 230 Eastern Illinois #> 1676 1994-12-27 6-0 245 San Diego State #> 1677 1991-03-26 6-3 250 Brigham Young #> 1678 1993-02-22 6-1 236 Texas Tech #> 1679 1996-12-23 6-2 230 Pittsburgh #> 1680 1996-12-25 6-2 225 Ohio State #> 1681 1994-04-22 6-0 238 Houston #> 1682 1994-07-12 5-11 217 Stetson University #> 1683 1996-10-09 6-6 242 West Virginia #> 1684 1997-04-21 6-3 235 Louisiana State #> 1685 1997-06-10 6-7 310 Alabama #> 1686 1994-11-11 6-3 311 Louisiana State #> 1687 1994-07-25 6-0 205 Arizona State #> 1688 1993-01-21 6-3 212 Michigan #> 1689 1998-03-02 6-1 218 Alabama #> 1690 1997-02-05 6-4 225 San Diego #> 1691 1982-11-24 6-2 228 Harvard #> 1692 1995-08-17 6-0 205 California #> 1693 1998-12-29 5-11 196 Washington #> 1694 1995-02-28 5-10 190 Georgia Southern #> 1695 1997-02-15 5-10 200 Washington #> 1696 1997-04-19 5-9 190 Navy #> 1697 1993-02-22 5-8 210 Texas Tech #> 1698 1996-02-09 5-11 210 Florida #> 1699 1997-10-14 6-0 201 Kentucky #> 1700 1993-06-02 6-0 205 Illinois #> 1701 1992-10-03 6-1 205 Utah #> 1702 1996-08-25 6-5 322 Louisiana-Lafayette #> 1703 1997-08-17 6-4 292 Northwestern State, La. #> 1704 1995-01-09 6-7 325 Bucknell #> 1705 1999-08-11 6-6 310 Southern California #> 1706 1991-09-15 6-6 325 Idaho #> 1707 1995-08-09 6-6 260 Notre Dame #> 1708 1994-10-24 6-6 257 Ashland #> 1709 1995-10-06 6-5 255 Temple #> 1710 1995-10-03 6-6 252 Penn State #> 1711 1992-07-12 5-9 195 Georgia State #> 1712 1997-01-05 6-0 210 Arkansas State #> 1713 1993-09-16 6-4 221 North Carolina #> 1714 1992-10-30 5-7 169 Texas Tech #> 1715 1993-01-20 6-3 216 Louisville #> 1716 1991-11-12 6-3 195 Miami #> 1717 1994-05-28 6-4 200 Rutgers #> 1718 1996-02-09 6-2 195 Virginia Tech #> 1719 1997-03-27 6-5 218 Colorado State #> 1720 1995-06-20 6-3 305 North Carolina State #> 1721 1991-07-29 6-2 315 Regina, Can. #> 1722 1998-09-03 6-2 185 Mississippi State #> 1723 1997-02-11 5-10 191 Central Florida #> 1724 1998-11-12 6-0 192 Temple #> 1725 1996-12-12 6-0 183 Texas Christian #> 1726 1997-03-28 6-2 196 Texas #> 1727 1997-09-14 6-1 195 Fordham #> 1728 1994-10-01 5-10 175 West Georgia #> 1729 1995-08-13 6-0 200 Nebraska #> 1730 1993-11-19 6-1 200 Clemson #> 1731 1997-08-19 5-9 188 Appalachian State #> 1732 1996-09-12 5-11 201 Texas #> 1733 1990-03-31 6-4 225 Boise State #> 1734 1991-10-09 6-1 202 Virginia #> 1735 1992-07-18 6-0 190 Fresno State #> 1736 1998-06-25 6-2 210 North Carolina #> 1737 1998-01-21 6-0 210 Michigan #> 1738 1996-11-07 6-2 195 Illinois State #> 1739 1994-04-08 6-3 258 Northwestern #> 1740 1994-10-29 6-5 252 Louisiana State #> 1741 1996-01-25 6-5 283 Ohio State #> 1742 1993-04-24 6-3 259 Wyoming #> 1743 1996-01-24 6-3 295 Bucknell #> 1744 1997-07-22 6-4 250 Michigan State #> 1745 1997-10-31 6-5 260 South Carolina #> 1746 1999-01-20 6-4 295 Baylor #> 1747 1995-09-18 6-2 252 Washington State #> 1748 1994-07-12 6-3 316 Iowa #> 1749 1993-07-22 5-11 235 Augustana, S.D. #> 1750 1995-11-08 6-5 299 South Carolina #> 1751 1997-08-22 6-5 308 Oklahoma #> 1752 1991-04-30 6-4 313 Furman #> 1753 1998-05-08 6-6 310 Boise State #> 1754 1998-02-27 6-3 310 Washburn #> 1755 1988-01-26 6-0 190 Oklahoma State #> 1756 1992-10-24 5-9 188 Texas A&amp;M #> 1757 1994-08-04 6-0 210 Florida Atlantic #> 1758 1997-03-26 6-2 235 Southern California #> 1759 1994-01-05 6-0 235 Illinois #> 1760 1992-02-29 6-0 232 UCLA #> 1761 1997-02-14 6-3 225 Baylor #> 1762 1994-10-16 6-2 244 Michigan #> 1763 1994-09-26 6-1 230 Cincinnati #> 1764 1995-10-03 6-2 242 Wisconsin #> 1765 1992-03-18 6-5 255 UCLA #> 1766 1995-10-09 6-3 252 Oklahoma State #> 1767 1992-05-17 6-1 230 Sacramento State #> 1768 1996-09-18 6-4 225 Oregon #> 1769 1996-10-27 6-3 245 Air Force #> 1770 1987-07-28 6-2 230 Rutgers #> 1771 1991-02-25 6-5 310 Connecticut #> 1772 1992-11-06 6-0 340 Samford #> 1773 1996-07-22 6-5 295 Arkansas #> 1774 1985-03-20 6-3 210 Tennessee #> 1775 1996-04-11 6-2 209 Washington #> 1776 1988-08-19 6-3 202 Michigan State #> 1777 1997-08-26 6-4 243 Iowa #> 1778 1992-04-25 6-6 231 Oregon State #> 1779 1993-06-13 5-9 203 Nebraska #> 1780 1996-11-28 6-2 250 North Carolina #> 1781 1995-07-30 5-10 205 Cincinnati #> 1782 1995-08-10 5-10 210 Florida State #> 1783 1998-06-19 5-11 220 Boise State #> 1784 1989-02-02 6-2 214 Notre Dame #> 1785 1992-01-12 6-6 313 Southern Mississippi #> 1786 1988-12-01 6-6 305 Iowa #> 1787 1995-09-15 6-7 297 Pittsburgh #> 1788 1997-02-14 6-5 323 Elon #> 1789 1997-01-23 6-7 307 Oregon State #> 1790 1997-04-30 6-5 250 Marian, Ind. #> 1791 1989-11-09 6-6 265 Notre Dame #> 1792 1998-08-09 6-2 240 Alabama #> 1793 1996-08-19 6-4 245 Alabama #> 1794 1995-07-30 6-3 254 Central Michigan #> 1795 1994-06-01 5-10 185 Northern Illinois #> 1796 1997-06-10 6-0 200 Miami #> 1797 1990-08-22 6-2 200 Minn. State-Mankato #> 1798 1997-03-17 6-0 203 Colorado State #> 1799 1997-02-25 6-3 202 Penn State #> 1800 1999-06-16 6-3 192 Louisiana State #> 1801 1994-08-12 6-4 307 Chattanooga #> 1802 1998-03-08 6-2 291 Memphis #> 1803 1989-06-05 6-2 300 Iowa #> 1804 1992-07-10 6-3 300 Georgia #> 1805 1993-11-29 6-3 330 Southern California #> 1806 1990-06-17 6-0 200 Presbyterian #> 1807 1996-10-29 5-9 190 New Mexico #> 1808 1990-09-19 6-1 202 South Carolina #> 1809 1997-01-10 6-1 210 Miami #> 1810 1987-08-13 5-11 195 Rutgers #> 1811 1993-09-20 5-10 190 Auburn #> 1812 1997-12-06 6-3 212 Vanderbilt #> 1813 1995-11-17 6-1 198 Maryland #> 1814 1993-10-29 5-9 195 West Alabama #> 1815 1996-03-22 6-2 216 Lenoir-Rhyne #> 1816 1998-01-02 5-8 180 Washington #> 1817 1987-08-13 5-10 195 Rutgers #> 1818 1995-06-12 6-4 305 Houston #> 1819 1990-10-14 6-2 260 Ohio State #> 1820 1994-07-26 6-5 275 Arkansas #> 1821 1995-04-19 6-3 251 Michigan #> 1822 1995-02-18 6-5 250 Louisiana State #> 1823 1997-07-03 6-4 280 William &amp; Mary #> 1824 1994-04-12 6-5 300 Vanderbilt #> 1825 1990-03-17 6-4 315 Arizona State #> 1826 1997-07-11 6-4 304 Georgia #> 1827 1991-11-29 6-1 307 Illinois #> 1828 1996-05-20 6-3 300 Maryland #> 1829 1993-10-26 6-0 239 Northwestern #> 1830 1994-12-15 6-3 255 Tennessee #> 1831 1993-08-28 6-1 310 Georgia Tech #> 1832 1995-09-14 6-4 295 Iowa #> 1833 1997-12-10 6-3 350 Michigan #> 1834 1993-07-06 6-3 302 Purdue #> 1835 1995-11-15 6-2 305 UCLA #> 1836 1984-11-05 6-1 222 Arizona #> 1837 1996-12-07 6-3 230 Marshall #> 1838 1994-05-17 6-1 204 Florida State #> 1839 1996-11-18 6-2 235 Missouri #> 1840 1997-05-01 6-3 259 Alabama #> 1841 1993-06-08 6-2 220 Auburn #> 1842 1998-10-03 6-0 248 Wyoming #> 1843 1992-03-20 6-4 260 Michigan State #> 1844 1998-09-18 6-2 250 Michigan #> 1845 1996-08-24 6-2 255 Purdue #> 1846 1990-03-12 6-3 260 Alabama #> 1847 1991-07-02 6-3 263 Pennsylvania #> 1848 1992-04-16 6-3 245 Navy #> 1849 1992-03-02 6-5 320 Iowa #> 1850 1991-11-14 6-3 327 Wisconsin #> 1851 1997-06-18 6-2 205 Stanford #> 1852 1989-05-11 6-5 245 Auburn #> 1853 1985-10-13 6-2 215 Michigan State #> 1854 1996-10-07 6-7 242 Central Connecticut State #> 1855 1996-08-08 6-3 214 Auburn #> 1856 1992-02-03 5-10 205 Wisconsin #> 1857 1995-02-17 5-11 215 Georgia #> 1858 1990-07-02 5-10 215 Nebraska #> 1859 1997-02-11 5-11 215 Alabama #> 1860 1990-01-26 5-11 220 Mississippi #> 1861 1998-01-04 5-6 185 Arizona #> 1862 1987-08-19 5-11 215 Oregon #> 1863 1989-06-06 6-2 203 Texas Tech #> 1864 1992-03-28 5-11 210 Texas #> 1865 1992-03-02 5-11 205 Florida State #> 1866 1995-11-27 6-5 290 Wake Forest #> 1867 1996-02-21 6-5 310 West Virginia #> 1868 1995-05-17 6-6 305 Cincinnati #> 1869 1994-12-13 6-4 335 Texas A&amp;M #> 1870 1992-11-18 6-5 308 North Carolina State #> 1871 1988-05-06 6-6 335 Texas Christian #> 1872 1994-08-02 6-5 305 UCLA #> 1873 1995-12-09 6-2 310 Georgia #> 1874 1995-05-02 6-5 255 San Diego State #> 1875 1999-04-14 6-4 251 Virginia Tech #> 1876 1992-09-21 6-6 255 Illinois #> 1877 1997-08-14 6-3 260 UCLA #> 1878 1995-12-21 6-5 255 Florida State #> 1879 1996-08-25 6-3 260 Boston College #> 1880 1996-10-14 6-4 255 Ohio State #> 1881 1995-05-26 6-3 200 Mississippi #> 1882 1993-01-27 5-9 180 South Carolina #> 1883 1996-11-09 6-2 200 North Carolina State #> 1884 1997-04-15 6-0 190 Mississippi State #> 1885 1986-05-22 5-10 200 Kent State #> 1886 1992-03-03 6-1 199 Ohio State #> 1887 1995-08-12 5-11 185 Colorado #> 1888 1996-11-26 6-0 190 Bemidji State #> 1889 1997-01-10 6-1 214 Southeast Missouri #> 1890 1993-08-06 6-2 216 Mississippi #> 1891 1985-09-09 6-0 205 UCLA #> 1892 1991-11-25 6-0 196 Southern California #> 1893 1997-12-17 6-4 225 Arizona State #> 1894 1995-12-10 6-5 311 Louisiana State #> 1895 1997-08-27 6-4 315 Texas A&amp;M #> 1896 1987-09-07 5-11 191 Florida State #> 1897 1988-10-29 5-10 190 North Alabama #> 1898 1996-01-06 5-9 190 Penn State #> 1899 1996-05-20 6-0 192 Ohio State #> 1900 1994-02-07 6-1 200 Illinois #> 1901 1993-02-08 6-1 180 Colorado #> 1902 1990-07-23 6-0 219 Stanford #> 1903 1993-06-01 6-0 196 Florida State #> 1904 1996-09-08 6-1 195 Utah #> 1905 1996-12-20 6-1 180 West Virginia #> 1906 1991-09-01 5-10 205 South Carolina #> 1907 1993-05-08 6-6 286 Alabama A&amp;M #> 1908 1991-05-04 6-6 275 West Virginia #> 1909 1994-12-05 6-4 270 Florida Atlantic #> 1910 1994-01-08 6-2 251 Eastern Kentucky #> 1911 1989-07-10 6-4 287 California #> 1912 1996-09-04 6-6 265 Texas-San Antonio #> 1913 1996-12-18 6-5 261 Wyoming #> 1914 1998-07-26 6-3 253 Elon #> 1915 1998-06-09 6-3 290 Texas #> 1916 1995-10-20 6-3 300 Tennessee #> 1917 1997-08-04 6-5 288 North Carolina #> 1918 1993-09-30 6-3 302 Michigan #> 1919 1992-08-09 6-4 275 Penn State #> 1920 1992-11-13 6-4 300 Manitoba, Can. #> 1921 1992-03-10 6-1 298 Louisiana-Lafayette #> 1922 1994-04-02 6-2 305 Louisville #> 1923 1994-02-02 6-2 320 Texas #> 1924 1992-02-01 6-0 240 Rutgers #> 1925 1993-11-04 6-7 316 Stanford #> 1926 1995-08-23 6-5 320 Florida State #> 1927 1999-06-14 6-3 319 Michigan #> 1928 1991-12-17 6-5 310 North Carolina #> 1929 1992-06-16 6-3 303 Harvard #> 1930 1990-01-08 5-10 175 Georgia #> 1931 1994-07-07 5-11 184 Georgia State #> 1932 1993-05-20 6-3 220 Utah #> 1933 1989-01-11 6-2 248 Arkansas State #> 1934 1996-12-30 6-3 235 Wisconsin #> 1935 1994-09-22 6-3 240 Florida #> 1936 1988-02-11 6-1 234 North Texas #> 1937 1995-07-10 6-3 240 Idaho #> 1938 1994-08-03 6-1 227 Louisiana State #> 1939 1996-11-16 6-1 225 Michigan State #> 1940 1978-12-13 6-5 242 Brigham Young #> 1941 1993-01-10 6-3 255 Southern Methodist #> 1942 1998-01-21 6-2 196 Penn State #> 1943 1986-03-08 6-4 235 Southern Methodist #> 1944 1994-01-06 6-4 231 Florida State #> 1945 1979-01-15 6-0 209 Purdue #> 1946 1990-08-23 6-2 221 Brigham Young #> 1947 1991-12-26 6-3 220 Northwestern #> 1948 1993-01-22 6-0 216 Stanford #> 1949 1997-11-24 5-11 225 Notre Dame #> 1950 1995-07-25 5-10 215 Tennessee #> 1951 <NA> 5-10 195 Kennesaw State #> 1952 1990-01-18 6-3 230 Central Florida #> 1953 1994-04-24 6-1 223 Washington #> 1954 1996-01-18 6-0 202 Mississippi State #> 1955 1987-12-20 6-0 204 Ohio State #> 1956 1997-12-20 5-11 208 Florida #> 1957 1997-09-10 6-4 335 Villanova #> 1958 1996-08-16 6-5 318 Oregon #> 1959 1994-04-22 6-6 314 Wisconsin #> 1960 1991-07-23 6-5 304 Arkansas-Pine Bluff #> 1961 1997-02-05 6-6 253 Dayton #> 1962 1990-05-21 6-5 250 Idaho State #> 1963 1995-11-07 6-5 255 Tennessee #> 1964 1993-11-30 6-6 255 Incarnate Word #> 1965 1987-04-07 6-5 254 South Carolina #> 1966 1994-03-04 6-4 240 Air Force #> 1967 1992-09-22 6-3 244 Ferris State #> 1968 1993-03-03 6-3 212 Ohio State #> 1969 1991-06-10 6-1 212 Michigan State #> 1970 1996-01-07 6-2 210 Central Florida #> 1971 1997-12-04 5-6 170 Assumption #> 1972 1997-04-16 6-0 175 West Georgia #> 1973 1998-04-19 6-4 225 Texas #> 1974 1993-12-25 6-1 195 Northwestern #> 1975 1992-10-24 5-7 168 Northern Illinois #> 1976 1996-09-13 6-4 231 Oregon #> 1977 1987-03-17 5-11 180 Southern Methodist #> 1978 1998-03-27 6-2 204 Tennessee #> 1979 1993-06-11 6-0 205 Ferris State #> 1980 1995-11-27 6-5 307 Nebraska #> 1981 1993-04-03 6-4 308 Vanderbilt #> 1982 1991-08-25 6-4 300 Florida #> 1983 1996-02-20 6-1 190 Boston College #> 1984 1996-08-30 6-1 177 Western Michigan #> 1985 1994-04-15 6-0 185 Pittsburgh #> 1986 1996-08-16 6-2 193 Florida #> 1987 1998-06-23 5-10 198 UCLA #> 1988 1993-08-04 6-1 212 Samford #> 1989 1997-07-18 5-10 187 Albany, N.Y. #> 1990 1993-10-06 6-2 205 Miami #> 1991 1998-03-19 5-11 193 Notre Dame #> 1992 1997-10-13 6-2 190 Southern Illinois #> 1993 1991-02-09 5-11 195 Rutgers #> 1994 1999-08-09 6-1 197 Alabama #> 1995 1995-12-18 6-3 285 Mississippi #> 1996 1996-06-02 6-4 283 Miami #> 1997 1997-06-25 6-5 270 Dartmouth #> 1998 1997-11-12 6-4 342 Clemson #> 1999 1989-05-10 6-3 268 Pittsburgh #> 2000 1994-06-20 6-5 302 Southern California #> 2001 1995-04-20 6-3 311 North Carolina State #> 2002 1996-06-14 6-3 296 Boise State #> 2003 1993-08-17 6-2 234 Idaho #> 2004 1992-05-04 6-5 315 Auburn #> 2005 1995-09-02 6-2 327 Texas-El Paso #> 2006 1990-03-08 6-4 315 Wisconsin #> 2007 1997-05-12 6-4 317 Oregon #> 2008 1988-08-08 6-6 314 Fresno State #> 2009 1987-04-09 6-2 202 Florida State #> 2010 1993-08-18 6-2 245 Texas State #> 2011 1998-04-01 6-5 233 Penn State #> 2012 1995-12-10 6-5 250 Georgia #> 2013 1995-09-17 6-2 255 Miami #> 2014 1997-03-12 6-3 235 Georgia #> 2015 1997-07-21 6-4 245 Minnesota #> 2016 1996-12-07 6-4 250 Old Dominion #> 2017 1995-10-18 6-2 252 California #> 2018 1994-01-09 6-2 237 Stanford #> 2019 1993-11-08 6-0 223 Miami #> 2020 1997-12-03 6-1 230 South Carolina #> 2021 1991-11-25 6-5 245 Utah State #> 2022 1989-11-15 6-0 233 Alabama #> 2023 1990-08-13 6-1 250 Iowa #> 2024 1994-05-08 6-4 314 Penn State #> 2025 1994-02-28 6-3 318 Alabama #> 2026 1995-08-26 6-5 258 Minnesota #> 2027 1993-08-24 6-4 221 Syracuse #> 2028 1997-05-27 6-5 220 Duke #> 2029 1986-09-05 6-1 212 Texas #> 2030 1986-11-14 6-4 230 Alabama-Birmingham #> 2031 1995-06-15 6-4 222 Northwestern #> 2032 1987-11-11 6-4 220 Monmouth, Ill. #> 2033 1997-03-10 5-11 197 No College #> 2034 1990-09-27 5-8 195 Pittsburgh #> 2035 1994-10-01 6-0 210 Clemson #> 2036 1993-10-21 5-9 192 Virginia #> 2037 1995-01-02 6-0 230 Troy #> 2038 1992-01-10 6-3 235 Ohio State #> 2039 1997-02-09 5-11 233 Penn State #> 2040 1988-12-12 5-10 224 Florida Atlantic #> 2041 1995-10-04 5-11 213 Michigan #> 2042 1988-12-14 6-0 215 Ohio State #> 2043 1997-06-16 6-0 190 Northwestern #> 2044 1997-06-11 6-7 303 Connecticut #> 2045 1995-08-08 6-7 302 Utah #> 2046 1994-08-30 6-10 302 Minnesota #> 2047 1999-01-22 6-5 326 Georgia #> 2048 1992-09-03 6-6 320 Stanford #> 2049 1998-05-18 6-4 302 Rhode Island #> 2050 1988-04-12 6-8 325 Colorado #> 2051 1994-09-02 6-3 240 Mississippi #> 2052 1997-04-24 6-5 252 Stanford #> 2053 1997-12-20 6-7 220 Simon Fraser #> 2054 1991-07-30 6-8 268 Stanford #> 2055 1995-08-08 6-1 210 Fresno State #> 2056 1988-08-02 5-10 197 Notre Dame #> 2057 1990-08-22 6-3 190 Cincinnati #> 2058 1993-12-12 6-1 180 Chattanooga #> 2059 1997-08-31 6-2 215 Ohio State #> 2060 1997-01-12 6-1 190 Auburn #> 2061 1996-05-29 6-0 190 Wake Forest #> 2062 1996-05-29 6-3 210 West Virginia #> 2063 1995-10-23 6-1 195 Washington #> 2064 1994-04-17 6-3 205 Mississippi #> 2065 1993-02-10 5-10 201 Oklahoma #> 2066 1994-07-06 5-11 185 Baylor #> 2067 1993-04-27 6-4 306 Missouri #> 2068 1994-05-09 6-4 310 Hawaii #> 2069 1995-05-05 6-5 305 Holy Cross #> 2070 1996-05-26 6-1 195 Akron #> 2071 1992-10-20 5-10 211 Florida #> 2072 1996-04-13 5-11 196 Washburn #> 2073 1993-07-13 5-10 190 Memphis #> 2074 1996-07-19 6-1 198 Rutgers #> 2075 1992-07-15 5-11 209 Notre Dame #> 2076 1998-04-06 6-1 190 Air Force #> 2077 1997-05-11 6-1 201 Virginia #> 2078 1993-03-09 6-0 207 Florida #> 2079 1998-08-06 5-10 190 Utah #> 2080 1998-04-13 6-3 215 Nebraska #> 2081 1991-09-16 6-0 192 Notre Dame #> 2082 1995-12-12 6-1 207 Rutgers #> 2083 1995-08-24 5-11 193 Northern Iowa #> 2084 1997-05-05 6-4 277 Tennessee #> 2085 1996-09-26 6-4 288 Stephen F. Austin #> 2086 1997-08-14 6-3 264 Florida #> 2087 1998-04-17 6-3 255 Memphis #> 2088 1991-08-03 6-6 301 Stanford #> 2089 1995-03-04 6-4 318 Connecticut #> 2090 1994-07-13 6-1 310 Florida Atlantic #> 2091 1994-11-06 6-1 295 Tulane #> 2092 1993-10-09 6-4 315 Fort Hays State #> 2093 1991-06-21 6-2 298 Oregon State #> 2094 1994-07-06 6-3 303 Ohio State #> 2095 1990-02-26 6-3 305 Pennsylvania #> 2096 1990-11-01 5-11 195 West Texas A&amp;M #> 2097 1996-04-09 5-11 187 Illinois #> 2098 1992-12-14 6-1 192 Penn State #> 2099 1991-09-25 6-2 235 Georgia #> 2100 1993-02-23 6-5 231 Ferris State #> 2101 1990-05-01 6-0 230 Delaware #> 2102 1992-08-22 6-0 227 Portland State #> 2103 1992-06-19 6-2 250 Alabama #> 2104 1993-04-06 6-2 234 Marshall #> 2105 1996-05-10 6-1 235 Minnesota #> 2106 1994-03-18 6-4 266 Ohio #> 2107 1997-08-13 6-1 235 Citadel #> 2108 1994-07-01 6-3 259 Georgia #> 2109 1996-09-19 6-3 235 Washington State #> 2110 1992-09-24 6-2 252 Brigham Young #> 2111 1992-05-04 6-1 237 Baylor #> 2112 1995-10-01 6-4 250 Temple #> 2113 1994-06-11 6-2 246 Duke #> 2114 1997-12-21 6-3 303 Alabama #> 2115 1997-11-24 5-11 190 Texas A&amp;M #> 2116 1994-05-09 6-2 214 Troy #> 2117 1990-10-04 6-1 219 San Jose State #> 2118 1995-03-25 6-4 225 Western Kentucky #> 2119 1985-01-16 6-6 245 Delaware #> 2120 1997-02-28 6-4 213 Florida International #> 2121 1997-06-05 6-3 225 Southern California #> 2122 1997-09-17 5-10 210 Maryland #> 2123 1998-07-13 5-10 190 Monmouth, N.J. #> 2124 1998-01-30 5-11 220 Florida #> 2125 1995-11-28 5-10 212 Appalachian State #> 2126 1983-05-14 5-9 212 Miami #> 2127 1996-10-29 6-2 225 Notre Dame #> 2128 1995-08-14 5-11 199 Florida Tech #> 2129 1996-10-10 6-1 200 California #> 2130 1990-11-15 6-1 215 Kansas #> 2131 1997-11-16 6-5 294 North Carolina-Charlotte #> 2132 1992-04-21 6-6 305 Nebraska #> 2133 1992-10-19 6-8 305 UCLA #> 2134 1992-07-19 6-5 322 Western Kentucky #> 2135 1999-04-18 6-7 355 Louisville #> 2136 1997-05-25 6-3 308 Southern California #> 2137 1993-01-09 6-6 248 Penn State #> 2138 1996-02-23 6-4 252 Miami #> 2139 1995-09-12 6-3 267 West Virginia #> 2140 1994-10-20 6-8 260 Stony Brook #> 2141 1990-01-11 6-6 255 Connecticut #> 2142 1993-06-17 5-9 177 Duke #> 2143 1995-10-06 5-9 190 Miami #> 2144 1996-03-21 6-3 205 Tennessee #> 2145 1996-11-17 6-1 201 Austin Peay #> 2146 1992-12-03 6-2 206 Texas Christian #> 2147 1997-04-21 6-1 195 Boston College #> 2148 1997-10-10 6-3 208 Baylor #> 2149 1995-02-23 6-5 210 New Mexico State #> 2150 1997-08-20 6-5 220 Georgia #> 2151 1987-10-24 6-1 210 Monmouth, N.J. #> 2152 1996-06-09 6-3 202 Limestone #> 2153 1992-05-26 6-5 247 James Madison #> 2154 1993-09-10 6-2 215 Central Florida #> 2155 1997-06-07 6-4 295 Western Michigan #> 2156 1987-11-05 6-3 295 Cincinnati #> 2157 1995-06-05 6-4 315 Alabama #> 2158 1991-01-01 6-0 190 Mississippi State #> 2159 1993-11-30 6-0 185 Southern California #> 2160 1992-01-17 5-8 178 Southern California #> 2161 1994-07-25 5-10 190 Florida Atlantic #> 2162 1996-04-29 5-10 195 Southern Illinois #> 2163 1996-03-31 5-9 184 Pittsburgh #> 2164 1997-01-29 6-2 201 Louisiana-Lafayette #> 2165 1998-10-03 5-11 181 Michigan #> 2166 1990-06-23 5-10 195 Virginia #> 2167 1996-12-27 5-11 175 Kansas #> 2168 1998-06-12 6-0 205 Army #> 2169 1997-07-25 5-11 208 Clemson #> 2170 1997-09-04 5-10 190 Baylor #> 2171 1996-06-30 5-11 200 Baylor #> 2172 1997-03-29 6-5 253 Florida State #> 2173 1988-04-03 6-2 265 Michigan #> 2174 1988-06-30 6-3 279 Marshall #> 2175 1992-05-08 6-7 275 Iowa State #> 2176 1995-07-12 6-3 259 Central Michigan #> 2177 1996-06-25 6-3 259 Tennessee #> 2178 1997-02-14 6-4 303 Michigan State #> 2179 1990-12-13 6-4 310 Mississippi State #> 2180 1993-02-07 6-2 305 South Carolina State #> 2181 1994-11-02 6-3 305 Texas #> 2182 1990-01-11 6-5 290 Tennessee #> 2183 1992-11-23 6-0 299 North Carolina State #> 2184 1992-09-21 6-2 304 Toledo #> 2185 1993-10-29 6-4 303 Oregon State #> 2186 1989-08-19 6-5 335 Miami, O. #> 2187 1998-07-10 6-4 334 Stanford #> 2188 1993-03-15 6-4 340 Louisville #> 2189 1994-12-16 6-7 332 Texas Christian #> 2190 1996-08-15 6-4 305 Weber State #> 2191 1995-01-21 5-9 167 Memphis #> 2192 1995-04-26 6-0 250 Memphis #> 2193 1996-08-12 6-1 240 Wisconsin #> 2194 1997-04-08 6-1 230 Temple #> 2195 1994-02-18 5-11 221 Akron #> 2196 1994-08-09 6-1 230 Louisiana State #> 2197 1997-04-20 6-1 220 Florida Atlantic #> 2198 1993-12-07 6-2 242 Montana State #> 2199 1998-08-05 6-2 225 Colorado #> 2200 1995-02-23 6-2 230 Nebraska #> 2201 1998-02-26 6-2 235 Michigan State #> 2202 1992-09-09 6-2 249 Old Dominion #> 2203 1992-02-24 5-11 194 Ohio State #> 2204 1992-11-25 6-2 212 Auburn #> 2205 1993-10-07 6-6 227 Indiana #> 2206 1998-08-07 6-2 218 Oklahoma #> 2207 1992-12-30 6-5 237 North Dakota State #> 2208 <NA> 5-10 202 Wyoming #> 2209 1994-11-02 6-0 224 Indiana #> 2210 1997-11-30 5-10 215 Georgia #> 2211 1997-05-01 5-11 211 Penn State #> 2212 1998-01-02 5-8 164 Central Florida #> 2213 1995-04-27 5-6 203 Louisiana Tech #> 2214 1994-11-02 5-10 220 Wisconsin #> 2215 1998-04-20 5-9 193 New Mexico State #> 2216 1996-01-27 6-0 191 Wyoming #> 2217 1994-11-01 6-0 204 Auburn #> 2218 1994-04-06 6-0 191 Louisiana State #> 2219 1993-08-08 5-10 185 Auburn #> 2220 1990-05-08 6-6 317 Oklahoma #> 2221 1997-03-31 6-8 344 No College #> 2222 1996-09-01 6-6 291 Army #> 2223 1997-04-01 6-5 296 Auburn #> 2224 1995-10-03 6-5 315 Washington State #> 2225 1982-01-22 6-4 328 Arkansas #> 2226 1990-11-10 6-5 250 Stanford #> 2227 1993-08-05 6-3 223 Washington #> 2228 1997-11-07 6-7 249 Buffalo #> 2229 1994-02-28 6-5 246 Tennessee #> 2230 1995-01-03 6-5 256 South Dakota State #> 2231 1996-07-15 6-4 240 UCLA #> 2232 1996-05-16 6-5 227 Iowa State #> 2233 1992-01-22 6-4 257 California #> 2234 1990-11-19 5-9 179 Texas #> 2235 1995-07-12 5-11 190 Houston #> 2236 1997-10-04 6-0 186 Southern California #> 2237 1995-09-13 6-2 215 Old Dominion #> 2238 1999-01-02 5-11 195 Texas Christian #> 2239 1996-08-13 5-8 191 Louisiana-Monroe #> 2240 1998-06-09 6-2 190 Southern Mississippi #> 2241 1996-12-31 6-2 225 Stanford #> 2242 1990-02-14 6-3 218 South Carolina #> 2243 1986-12-01 5-10 175 California #> 2244 1996-05-31 6-2 172 Boise State #> 2245 1989-07-24 6-4 304 Florida #> 2246 1995-09-15 6-2 295 Alabama #> 2247 1998-01-12 6-2 192 Michigan State #> 2248 1993-09-15 5-11 191 Penn State #> 2249 1995-02-27 5-11 188 Tennessee #> 2250 1989-04-14 5-11 195 Florida #> 2251 1994-03-09 5-9 184 Mississippi #> 2252 1996-09-16 6-2 185 Florida Atlantic #> 2253 1996-04-20 6-2 217 Valdosta State #> 2254 1993-01-22 5-11 194 Oregon State #> 2255 1998-10-28 5-11 215 Maryland #> 2256 1993-10-23 6-1 202 Maryland #> 2257 1996-08-07 6-2 215 Penn State #> 2258 1993-10-25 6-5 300 Michigan #> 2259 1992-07-07 6-4 245 UCLA #> 2260 1995-09-19 6-4 280 Oregon #> 2261 1996-08-24 6-3 295 Alabama #> 2262 1987-05-12 6-3 304 California #> 2263 1993-05-23 6-6 303 Notre Dame #> 2264 1996-12-24 6-9 310 Kentucky #> 2265 1989-05-06 6-5 295 Ohio State #> 2266 1996-08-22 6-2 320 Nebraska #> 2267 1995-07-04 6-3 302 Florida State #> 2268 1992-11-07 6-2 234 Wisconsin #> 2269 1996-09-18 6-4 321 Louisiana-Lafayette #> 2270 1994-06-05 6-3 306 Miami #> 2271 1990-01-11 6-5 316 Stanford #> 2272 1991-03-16 6-2 185 Rice #> 2273 1997-09-12 6-1 248 Toledo #> 2274 1995-12-14 6-1 229 Western Michigan #> 2275 1989-12-27 6-1 233 Florida State #> 2276 1993-02-12 6-4 269 Kentucky #> 2277 1996-05-10 6-0 227 Indiana #> 2278 1998-07-18 5-11 233 Michigan #> 2279 1994-10-11 6-4 252 Wisconsin #> 2280 1992-03-09 6-1 246 Kentucky #> 2281 1994-04-13 6-1 228 Duquesne #> 2282 1997-08-07 6-4 242 North Carolina-Charlotte #> 2283 1997-08-09 6-0 230 Akron #> 2284 1991-11-11 6-3 240 Toledo #> 2285 1993-08-20 6-4 245 Portland State #> 2286 1991-03-18 6-5 195 Eastern Kentucky #> 2287 1995-07-21 6-2 210 South Alabama #> 2288 1995-01-26 6-3 216 Tennessee #> 2289 1982-03-02 6-5 240 Miami, O. #> 2290 1995-07-17 6-5 235 Oklahoma State #> 2291 1997-05-03 6-4 230 Ohio State #> 2292 1996-07-20 6-0 225 North Carolina State #> 2293 1999-03-04 5-9 198 Maryland #> 2294 1998-02-26 5-10 223 Kentucky #> 2295 1994-12-30 6-2 223 Maryland #> 2296 1994-01-20 5-10 208 West Virginia #> 2297 1995-05-05 6-1 233 Pittsburgh #> 2298 1990-12-25 5-11 200 Towson #> 2299 1997-01-20 6-1 217 Virginia Tech #> 2300 1995-08-21 6-0 201 Louisiana State #> 2301 1996-11-17 6-1 207 Alabama #> 2302 1993-04-21 6-4 292 Texas Christian #> 2303 1993-12-25 6-8 358 Southern California #> 2304 1996-09-19 6-4 297 Fordham #> 2305 1993-10-16 6-6 305 Louisiana State #> 2306 1994-03-11 6-6 320 Notre Dame #> 2307 1992-07-07 6-6 330 Bloomsburg #> 2308 1997-08-08 6-6 320 Western Michigan #> 2309 1988-09-22 6-9 320 Army #> 2310 1998-03-18 6-5 300 Florida Atlantic #> 2311 1996-04-17 6-7 310 Tulane #> 2312 1993-04-10 6-4 253 North Carolina #> 2313 1990-06-13 6-4 267 Rice #> 2314 1995-04-26 6-4 250 Youngstown State #> 2315 1996-09-10 6-8 265 Michigan #> 2316 1994-11-30 6-4 245 Utah State #> 2317 1996-08-05 6-4 255 Tulane #> 2318 1998-07-07 6-4 227 Notre Dame #> 2319 1996-07-05 5-10 181 Toledo #> 2320 1995-01-29 6-2 210 Buffalo #> 2321 1996-04-02 5-11 213 Oklahoma State #> 2322 1998-11-28 6-3 210 Michigan State #> 2323 1996-10-15 5-9 190 Clemson #> 2324 1996-11-22 6-1 215 Southern California #> 2325 1995-08-05 6-6 320 Louisiana State #> 2326 1995-09-21 6-3 305 Oklahoma State #> 2327 1997-04-24 6-2 207 Georgia #> 2328 1995-12-24 6-3 200 Southern Illinois #> 2329 1995-07-20 6-0 198 Central Florida #> 2330 1992-07-22 6-2 202 Florida #> 2331 1997-02-08 6-2 190 Washington #> 2332 1990-02-01 6-2 210 Auburn #> 2333 1995-06-02 6-3 203 Oklahoma State #> 2334 1997-07-18 6-2 195 Utah #> 2335 1997-11-13 6-1 200 Stony Brook #> 2336 1993-01-22 5-9 197 Texas #> 2337 1997-05-16 5-9 201 Oregon #> 2338 1996-11-11 5-9 188 Kansas State #> 2339 1992-08-29 5-11 196 Arizona State #> 2340 1995-03-21 6-0 193 Cincinnati #> 2341 1997-03-24 6-3 253 Tennessee #> 2342 1998-06-02 6-4 260 Syracuse #> 2343 1992-11-11 6-4 295 Texas Tech #> 2344 1993-10-22 6-3 296 Florida #> 2345 1997-05-15 6-4 279 Southern California #> 2346 1989-02-28 6-6 285 Florida #> 2347 1995-09-12 6-2 291 Texas Christian #> 2348 1991-08-03 6-3 265 Idaho #> 2349 1992-09-11 6-4 260 Texas A&amp;M #> 2350 1998-02-06 6-3 295 Iowa #> 2351 1992-12-16 6-3 306 Alabama #> 2352 1989-05-12 6-1 250 Central Michigan #> 2353 1987-05-12 6-5 331 Idaho #> 2354 1997-03-21 6-3 332 Louisiana State #> 2355 1991-09-14 6-2 323 Alabama #> 2356 1995-10-19 6-4 322 Wake Forest #> 2357 1994-03-04 6-5 320 Baylor #> 2358 1994-07-15 6-4 339 Southern California #> 2359 1987-05-04 6-8 310 Ohio State #> 2360 1991-05-12 5-10 190 Marist #> 2361 1997-09-08 6-0 230 Washington #> 2362 1997-10-21 6-1 245 Texas Tech #> 2363 1996-11-13 6-2 237 Utah #> 2364 1995-07-20 6-0 229 Central Florida #> 2365 1991-03-05 6-3 220 Miami #> 2366 1997-01-23 6-3 245 Georgia #> 2367 1990-06-27 6-0 242 Utah State #> 2368 1993-11-12 6-3 252 Alabama #> 2369 1987-11-01 6-3 250 West Virginia #> 2370 1989-07-23 6-4 246 Mississippi State #> 2371 1992-02-28 6-3 253 Harvard #> 2372 1995-10-20 6-3 366 Michigan #> 2373 1995-11-19 5-11 310 Texas #> 2374 1996-01-04 6-2 208 Texas #> 2375 1995-11-19 6-3 214 Florida International #> 2376 1990-10-10 6-3 221 West Virginia #> 2377 1994-07-22 6-3 220 Louisiana State #> 2378 1988-11-29 5-11 215 Wisconsin #> 2379 1994-09-29 6-1 235 Alabama #> 2380 1996-02-02 5-11 220 San Diego State #> 2381 1994-08-26 5-10 210 Arkansas #> 2382 1990-09-20 6-0 229 Ohio State #> 2383 1995-09-22 5-10 205 Houston #> 2384 1998-09-16 5-10 214 Miami #> 2385 1998-08-07 5-10 202 Miami #> 2386 1994-09-16 5-11 222 Oklahoma State #> 2387 1995-10-17 6-1 213 Louisiana State #> 2388 1995-11-26 6-1 216 Michigan #> 2389 1996-06-04 6-4 293 Ohio State #> 2390 1994-01-19 6-7 310 Southern California #> 2391 1992-04-25 6-5 310 Texas A&amp;M #> 2392 1985-08-30 6-4 315 Virginia Tech #> 2393 1997-03-04 6-5 320 Mississippi State #> 2394 1992-02-06 6-5 324 South Carolina #> 2395 1995-10-23 6-4 306 Central Florida #> 2396 1985-03-11 6-5 255 Miami #> 2397 1996-11-21 6-4 248 Maryland #> 2398 1990-01-15 6-5 254 Rice #> 2399 1999-01-08 6-7 251 Stanford #> 2400 1996-07-08 6-4 267 Washington #> 2401 1993-11-18 6-4 245 Wyoming #> 2402 1992-09-28 5-10 182 Kansas State #> 2403 1994-01-17 5-9 182 Hawaii #> 2404 1997-09-30 5-11 188 Washington #> 2405 1998-08-04 6-0 199 Florida #> 2406 1996-07-05 5-8 180 Georgia State #> 2407 1995-03-19 6-0 180 Texas Southern #> 2408 1995-02-09 6-0 201 Western Illinois #> 2409 1995-01-15 6-0 215 East Central #> 2410 1997-12-14 6-4 230 Mississippi #> 2411 1993-01-05 5-10 192 Miami #> 2412 1996-01-11 6-2 205 Toledo #> 2413 1991-04-13 6-3 225 Baylor #> 2414 1992-11-15 6-4 301 Eastern Washington #> 2415 1988-04-06 6-5 308 Air Force #> 2416 1991-07-09 6-4 290 Colorado State #> 2417 1992-09-10 6-4 299 UCLA #> 2418 1990-11-08 6-5 318 Nebraska #> 2419 1991-08-12 6-3 301 Oregon #> 2420 1995-07-31 6-2 197 Virginia #> 2421 1988-03-30 6-3 195 Stanford #> 2422 1995-03-21 6-2 195 Colorado #> 2423 1996-03-25 5-11 184 Tennessee #> 2424 1996-06-19 5-11 202 Mississippi #> 2425 1990-09-29 5-11 192 Boise State #> 2426 1991-07-12 5-9 183 Pittsburgh #> 2427 1991-06-18 5-10 188 Texas Christian #> 2428 1996-11-07 6-3 205 Virginia Tech #> 2429 1991-12-01 6-2 200 North Carolina State #> 2430 1998-06-24 6-0 205 Alabama #> 2431 1994-04-05 6-4 224 Connecticut #> 2432 1996-08-16 6-2 200 Southern Mississippi #> 2433 1993-01-21 5-9 193 Minnesota #> 2434 1991-07-18 5-11 193 Northern Illinois #> 2435 1995-05-02 6-4 270 Kansas State #> 2436 1993-11-15 6-7 292 Oregon #> 2437 1996-05-08 6-2 287 North Carolina State #> 2438 1995-08-26 6-2 280 Stanford #> 2439 1989-05-29 6-5 275 Brigham Young #> 2440 1994-03-06 6-2 250 San Diego State #> 2441 1997-10-23 6-4 266 Ohio State #> 2442 1990-03-05 6-6 275 Oregon #> 2443 1993-01-21 6-4 270 Appalachian State #> 2444 1991-05-02 6-2 270 Texas Tech #> 2445 1991-03-19 6-2 252 Auburn #> 2446 1995-06-14 6-5 265 Texas A&amp;M #> 2447 1996-01-04 6-4 325 Mississippi #> 2448 1997-10-03 6-6 310 South Carolina #> 2449 1997-12-04 6-4 325 Nebraska #> 2450 1995-01-19 6-0 321 Mississippi #> 2451 1997-03-01 6-1 285 Penn State #> 2452 1991-04-23 6-1 240 Harvard #> 2453 1992-02-09 6-3 312 Duke #> 2454 1986-08-06 6-5 310 Utah #> 2455 1994-01-27 6-5 260 San Diego State #> 2456 1993-05-05 6-3 306 Akron #> 2457 1982-12-06 6-0 190 Penn State #> 2458 1990-01-19 6-3 239 Wyoming #> 2459 1990-08-14 6-3 239 Oregon #> 2460 1996-11-19 6-3 236 Brigham Young #> 2461 1997-01-27 6-4 250 Indiana State #> 2462 1992-12-11 6-2 236 Oregon #> 2463 1997-08-04 6-2 228 Florida Atlantic #> 2464 1997-05-25 6-0 225 Arkansas #> 2465 1994-05-28 6-4 245 Michigan State #> 2466 1986-10-03 6-2 240 New Mexico State #> 2467 1993-02-11 6-2 206 Texas A&amp;M #> 2468 1992-03-03 6-2 220 Utah #> 2469 1986-05-15 6-3 219 San Diego #> 2470 1995-03-21 6-1 210 Southern Mississippi #> 2471 1991-11-02 6-2 225 Eastern Illinois #> 2472 1997-02-10 6-4 226 UCLA #> 2473 1993-11-16 6-2 215 Iowa #> 2474 1997-11-12 6-1 225 Fresno State #> 2475 1992-05-03 5-9 205 Georgia Southern #> 2476 1991-04-20 6-0 220 Stanford #> 2477 1995-11-16 6-0 194 North Texas #> 2478 1992-04-09 5-10 197 Purdue #> 2479 1996-08-17 5-8 202 Rice #> 2480 1993-04-16 6-1 210 Indiana #> 2481 1996-09-12 5-9 205 Baylor #> 2482 1994-06-09 6-0 208 Florida #> 2483 1996-09-04 6-2 209 Arizona #> 2484 1992-12-23 6-2 215 Idaho #> 2485 1992-02-18 6-1 215 Samford #> 2486 1995-03-03 6-0 205 Brigham Young #> 2487 1990-07-29 6-1 211 Florida International #> 2488 1988-07-19 6-5 320 Oklahoma #> 2489 1993-04-12 6-9 278 Brigham Young #> 2490 1996-11-23 6-6 318 Vanderbilt #> 2491 1995-01-12 6-8 315 Notre Dame #> 2492 1991-11-25 6-5 310 Auburn #> 2493 1996-07-09 6-6 296 Syracuse #> 2494 1989-05-10 6-6 313 South Dakota #> 2495 1996-08-09 6-7 324 West Virginia #> 2496 1994-12-27 6-5 290 British Columbia, Can. #> 2497 1995-04-20 6-4 248 Duke #> 2498 1995-01-26 6-5 240 San Diego #> 2499 1996-05-16 6-4 249 Arkansas #> 2500 1990-07-03 6-2 242 Florida #> 2501 1997-10-16 6-5 245 Georgia #> 2502 1993-10-09 6-4 250 Iowa #> 2503 1994-04-30 5-8 181 Louisiana Tech #> 2504 1996-01-23 6-4 227 Baylor #> 2505 1995-12-13 6-5 218 Arizona #> 2506 1995-08-04 6-1 203 Eastern Washington #> 2507 1992-07-16 6-3 215 Vanderbilt #> 2508 1996-01-15 5-11 214 South Carolina #> 2509 1997-07-10 6-3 214 Tennessee #> 2510 1996-11-07 5-10 200 McKendree #> 2511 1989-12-29 5-10 175 Miami #> 2512 1992-06-25 6-3 216 West Virginia #> 2513 1995-10-11 5-10 175 North Carolina #> 2514 1995-09-05 5-9 185 Middle Tennessee #> 2515 1994-11-01 6-0 200 Washington State #> 2516 1998-03-17 6-1 206 Arizona State #> 2517 1994-05-09 6-0 175 Florida #> 2518 1986-05-22 6-1 307 Penn State #> 2519 1991-05-27 6-4 319 Colorado State-Pueblo #> 2520 1997-06-19 6-0 195 Central Michigan #> 2521 1993-09-07 5-11 190 North Carolina Central #> 2522 1995-10-12 6-0 191 South Florida #> 2523 1996-10-15 6-1 206 Auburn #> 2524 1996-12-31 6-1 206 Auburn #> 2525 1991-08-06 6-0 191 Duke #> 2526 1997-02-22 6-0 215 Ohio #> 2527 1997-11-11 6-2 190 Florida Atlantic #> 2528 1996-05-18 5-10 200 Kentucky #> 2529 1998-08-16 5-9 205 Minnesota #> 2530 1993-11-01 6-4 270 Eastern Michigan #> 2531 1996-09-17 6-3 290 Washington #> 2532 1987-01-06 6-4 313 Nebraska #> 2533 1989-01-01 6-5 275 South Florida #> 2534 1996-05-09 6-4 253 Prairie View #> 2535 1991-07-31 6-6 281 Michigan State #> 2536 1994-05-29 6-3 295 Arkansas #> 2537 1998-06-23 6-2 300 South Carolina #> 2538 1996-08-22 6-2 315 Nebraska #> 2539 1993-07-03 6-2 307 Southern Mississippi #> 2540 1994-11-20 5-10 204 Wisconsin #> 2541 1997-02-02 6-5 318 Boise State #> 2542 1994-02-18 6-3 312 James Madison #> 2543 1993-04-17 6-4 307 Hobart #> 2544 1997-01-11 6-4 310 Rice #> 2545 1990-06-24 6-3 300 James Madison #> 2546 1987-06-13 6-3 323 North Carolina State #> 2547 1995-01-27 6-6 305 Humboldt State #> 2548 1986-09-19 6-2 218 South Carolina #> 2549 1995-05-05 6-2 238 Wisconsin #> 2550 1990-12-03 6-0 246 Louisiana State #> 2551 1992-08-30 6-1 211 Washington State #> 2552 1997-03-04 6-7 272 Iowa #> 2553 1992-11-17 6-2 250 Colorado State #> 2554 1997-12-14 6-3 240 Wagner #> 2555 1998-02-17 6-0 237 Louisiana State #> 2556 1990-01-23 6-1 233 Nebraska #> 2557 1985-07-31 6-1 240 Florida State #> 2558 1991-01-30 6-2 245 Assumption #> 2559 1986-01-03 6-3 310 Troy #> 2560 1995-02-05 6-4 347 Washington #> 2561 1994-06-01 6-5 240 Clemson #> 2562 1993-06-09 6-0 209 Colorado State #> 2563 1992-06-20 6-2 225 Michigan #> 2564 1989-11-17 6-5 210 Tulane #> 2565 1984-05-07 6-3 226 Michigan State #> 2566 1989-10-15 6-4 235 Missouri #> 2567 1977-08-03 6-4 225 Michigan #> 2568 1997-08-03 5-11 208 Southern California #> 2569 1988-07-12 5-11 210 Pittsburgh #> 2570 1997-05-04 5-10 215 Vanderbilt #> 2571 1997-06-29 6-0 205 Southern California #> 2572 1995-01-18 6-0 228 Louisiana State #> 2573 1989-04-28 5-9 195 Oregon #> 2574 1994-05-20 6-1 225 Notre Dame #> 2575 1994-09-03 5-11 195 North Carolina #> 2576 1997-03-18 5-10 198 Pittsburgh #> 2577 1992-10-28 5-11 202 Connecticut #> 2578 1995-08-26 6-0 199 Texas A&amp;M #> 2579 1993-06-23 6-6 338 Penn State #> 2580 1991-02-14 6-6 306 James Madison #> 2581 1993-11-23 6-9 330 Villanova #> 2582 1999-01-24 6-5 322 Iowa #> 2583 1993-03-11 6-6 298 North Dakota State #> 2584 1994-11-18 6-6 250 Alabama #> 2585 1994-11-12 6-5 239 Southern Arkansas #> 2586 1993-05-28 6-6 256 Laval, Can. #> 2587 1991-07-03 6-5 245 Harvard #> 2588 1989-05-14 6-6 265 Arizona #> 2589 1992-12-13 6-6 258 Southeastern Oklahoma #> 2590 1994-04-21 5-11 170 Washington #> 2591 1993-12-05 5-9 183 Louisiana State #> 2592 1996-02-27 6-1 209 Penn State #> 2593 1997-06-13 6-4 205 Jacksonville State #> 2594 1988-07-10 5-10 185 Central Michigan #> 2595 1994-09-21 6-0 186 Florida Atlantic #> 2596 1996-10-16 6-4 211 Montana State #> 2597 1998-08-25 6-2 205 Minnesota #> 2598 1993-08-21 6-5 231 Texas A&amp;M #> 2599 1997-07-31 5-11 174 Bowling Green #> 2600 1996-04-04 6-3 215 Pennsylvania #> 2601 1989-07-02 6-3 308 Georgia #> 2602 1992-03-04 6-1 305 Colorado #> 2603 1997-10-28 6-3 270 Texas State #> 2604 1995-08-28 6-0 203 Nebraska #> 2605 1994-12-14 5-10 201 Iowa #> 2606 1995-07-22 6-0 189 Duke #> 2607 1990-03-02 5-11 190 West Alabama #> 2608 1998-09-03 6-0 200 Louisiana State #> 2609 1998-04-13 6-0 186 Marshall #> 2610 1992-09-15 5-11 190 Georgia Tech #> 2611 1993-05-03 6-0 195 Towson #> 2612 1997-01-02 5-11 195 Chattanooga #> 2613 1995-09-18 5-11 185 Southern California #> 2614 1998-06-14 5-11 210 Iowa #> 2615 1995-06-14 6-0 194 Georgia #> 2616 1993-08-17 5-11 212 Middle Tennessee #> 2617 1993-02-14 6-5 255 South Carolina #> 2618 1996-10-24 6-3 255 Boston College #> 2619 1993-01-05 6-3 251 Utah #> 2620 1997-07-28 6-4 300 Mississippi State #> 2621 1997-02-28 6-3 290 Florida International #> 2622 1997-02-23 6-1 340 Texas A&amp;M #> 2623 1995-01-30 6-5 280 Temple #> 2624 1988-09-07 6-5 288 Penn State #> 2625 1997-04-24 6-3 291 North Carolina State #> 2626 1995-11-09 6-5 290 UCLA #> 2627 1996-07-01 6-0 233 Vanderbilt #> 2628 1988-06-06 6-5 325 Indiana #> 2629 1990-08-24 6-5 310 San Jose State #> 2630 1996-09-23 6-3 316 North Carolina-Charlotte #> 2631 1992-02-28 6-4 308 Arizona State #> 2632 1990-07-16 5-10 182 California #> 2633 1997-11-10 6-2 215 Missouri #> 2634 1997-09-19 5-8 205 Miami, O. #> 2635 1984-01-28 6-1 215 Memphis #> 2636 1995-11-15 6-3 250 Sam Houston State #> 2637 1991-08-15 6-1 240 Cal Poly #> 2638 1989-09-19 6-1 235 Nebraska #> 2639 1996-06-05 6-2 250 Boston College #> 2640 1990-11-27 5-11 225 Auburn #> 2641 1994-12-27 6-5 259 Georgia #> 2642 1995-06-05 6-3 246 Toledo #> 2643 1995-11-08 6-2 234 Alabama #> 2644 1987-02-28 6-3 254 Arizona #> 2645 1995-02-26 6-0 226 UCLA #> 2646 1996-10-12 5-11 224 West Virginia #> 2647 1995-04-12 6-3 245 Azusa Pacific #> 2648 1990-01-25 6-4 260 Missouri #> 2649 1985-07-06 6-1 243 Western Washington #> 2650 1991-12-27 6-4 322 Penn State #> 2651 1997-09-04 6-2 320 Wofford #> 2652 1986-02-17 6-2 214 Toledo #> 2653 1994-12-08 6-1 231 Tennessee #> 2654 1988-07-27 6-4 207 Texas A&amp;M #> 2655 1996-01-03 6-4 233 Notre Dame #> 2656 1995-01-27 6-1 213 Toledo #> 2657 1998-07-09 5-11 200 Appalachian State #> 2658 1995-12-26 5-9 205 Boise State #> 2659 1994-01-04 6-3 247 Alabama #> 2660 1996-04-24 6-1 233 Texas #> 2661 1991-09-19 6-0 210 Louisville #> 2662 1991-02-15 6-0 214 Texas #> 2663 1995-04-27 6-1 209 Arizona #> 2664 1999-02-12 6-7 330 Georgia #> 2665 1991-07-22 6-7 309 Michigan #> 2666 1988-09-29 6-4 328 Texas Christian #> 2667 1997-01-18 6-7 310 Valdosta State #> 2668 1990-01-16 6-8 321 Purdue #> 2669 1995-05-17 6-5 315 Missouri #> 2670 1992-03-10 6-5 315 Colorado State #> 2671 1997-10-25 6-8 314 Texas Christian #> 2672 1992-03-24 6-2 243 Southern Illinois #> 2673 1995-05-26 6-3 261 Iowa #> 2674 1993-09-16 6-4 260 Texas #> 2675 1995-02-19 6-2 246 Harvard #> 2676 1997-08-21 6-4 255 Vanderbilt #> 2677 1995-08-22 6-3 248 Florida International #> 2678 1997-02-22 6-5 255 Arizona State #> 2679 1995-01-11 6-3 209 Western Michigan #> 2680 1995-12-20 5-9 175 Texas Tech #> 2681 1995-09-14 5-9 175 James Madison #> 2682 1994-01-12 6-0 184 Grambling #> 2683 1997-06-30 6-0 226 Mississippi #> 2684 1994-08-05 6-1 207 Texas #> 2685 1997-03-21 6-3 215 Indiana #> 2686 1993-06-24 5-11 195 Clemson #> 2687 1994-08-08 5-8 182 Holy Cross #> 2688 1993-11-18 6-4 209 Arkansas #> 2689 1993-08-23 6-4 312 Wyoming #> 2690 1998-07-25 6-3 310 San Diego State #> 2691 1994-01-02 5-11 193 Florida State #> 2692 1994-04-09 6-0 204 UCLA #> 2693 1991-10-02 6-0 191 Oklahoma #> 2694 1996-03-08 6-0 181 Virginia Tech #> 2695 1993-09-22 6-3 197 Louisiana-Lafayette #> 2696 1995-04-10 5-11 188 Nevada-Las Vegas #> 2697 1995-11-17 5-9 190 Southern U. #> 2698 1995-08-26 5-11 182 James Madison #> 2699 1995-02-13 5-11 198 Virginia Tech #> 2700 1999-03-03 6-2 203 Arkansas #> 2701 1996-03-26 6-0 200 South Dakota State #> 2702 1996-08-29 5-11 205 South Alabama #> 2703 1995-04-11 6-1 206 Penn State #> 2704 1995-06-30 5-11 200 Notre Dame #> 2705 1994-08-12 6-2 253 Alabama #> 2706 1997-07-30 6-3 265 North Carolina State #> 2707 1996-09-04 6-6 262 Mississippi State #> 2708 1996-08-22 6-4 247 Stanford #> 2709 1996-01-16 6-3 279 Kansas #> 2710 1995-11-12 6-7 280 Marshall #> 2711 1999-04-14 6-5 265 Ohio State #> 2712 1994-09-02 6-2 307 Florida #> 2713 1988-08-16 6-4 265 Purdue #> 2714 1996-08-03 6-5 256 Oregon #> 2715 1994-01-11 6-3 310 Temple #> 2716 1995-05-24 6-4 292 No College #> 2717 1997-05-27 6-3 320 Alabama #> 2718 1997-07-11 6-3 308 Virginia Tech #> 2719 1992-10-13 6-2 294 Auburn #> 2720 1995-01-16 6-3 300 Alabama #> 2721 1992-01-15 6-3 305 Illinois State #> 2722 1993-09-11 6-5 314 San Jose State #> 2723 1996-05-09 6-3 316 Indiana #> 2724 1991-12-26 6-5 315 Iowa #> 2725 1994-02-21 6-5 305 Stanford #> 2726 1990-10-01 6-2 203 Florida State #> 2727 1994-03-16 6-3 210 Marshall #> 2728 1991-05-05 6-1 245 Florida #> 2729 1994-02-20 6-4 245 Louisville #> 2730 1993-07-19 6-1 238 Utah #> 2731 1994-04-04 6-1 228 Alabama #> 2732 1996-10-15 6-3 235 California #> 2733 1997-12-06 6-0 220 Michigan #> 2734 1995-10-10 6-0 224 Oklahoma State #> 2735 1996-07-30 6-1 240 North Carolina #> 2736 1990-09-28 5-11 240 California #> 2737 1983-03-22 6-1 235 Georgia #> 2738 1991-10-07 6-0 230 Boston College #> 2739 1987-07-29 6-1 256 California #> 2740 1990-04-18 6-1 220 Oklahoma #> 2741 1993-03-15 6-1 210 Old Dominion #> 2742 1996-03-08 6-3 211 Houston #> 2743 1997-01-14 6-5 230 Colorado #> 2744 1984-05-07 6-4 213 Utah #> 2745 1991-04-25 5-10 220 Miami #> 2746 1997-07-08 5-9 205 Stanford #> 2747 1993-08-15 5-10 195 Arkansas State #> 2748 1994-02-02 6-0 217 Arkansas #> 2749 1994-06-27 5-11 225 Auburn #> 2750 1998-06-23 6-2 221 Memphis #> 2751 1994-01-10 6-0 218 Alabama #> 2752 1992-02-22 6-0 203 Texas A&amp;M #> 2753 1996-11-22 6-7 311 Florida State #> 2754 1996-09-10 6-6 315 Louisville #> 2755 1999-07-26 6-4 295 Louisiana State #> 2756 1995-03-01 6-8 321 Purdue #> 2757 1995-10-21 6-6 330 Florida #> 2758 1991-03-03 6-6 330 Virginia #> 2759 1991-07-18 6-8 328 Kansas State #> 2760 1995-09-11 6-6 315 Stony Brook #> 2761 1994-12-09 6-4 245 Ohio State #> 2762 1998-05-14 6-3 249 Louisiana State #> 2763 1994-08-10 6-5 255 Arkansas #> 2764 1991-07-01 6-6 250 Virginia Tech #> 2765 1994-06-29 6-3 226 Texas Tech #> 2766 1993-07-30 6-5 245 South Carolina State #> 2767 1994-11-14 6-4 254 Texas #> 2768 1998-04-11 6-4 220 Liberty #> 2769 1995-06-23 6-3 221 California #> 2770 1995-09-15 6-0 210 Ohio State #> 2771 1996-01-06 6-5 214 Alabama #> 2772 1997-08-08 6-1 195 Colorado #> 2773 1996-12-15 6-2 213 North Carolina State #> 2774 1997-05-21 6-3 195 Missouri #> 2775 1989-01-31 6-3 205 Virginia #> 2776 1994-05-07 6-2 194 Alabama #> 2777 1997-01-13 6-2 220 Temple #> 2778 1997-03-31 5-10 176 Kansas #> 2779 1994-08-02 5-11 182 Oklahoma #> 2780 1993-07-04 6-1 188 California #> 2781 1992-06-22 6-2 305 Tennessee State #> 2782 1994-04-03 6-1 293 Temple #> 2783 1985-03-29 6-2 300 Southern California #> 2784 1993-07-10 6-3 299 Portland State #> 2785 1991-05-29 6-6 315 Missouri #> 2786 1994-10-11 6-3 290 Auburn #> 2787 1996-02-14 6-3 295 USC #> 2788 1995-09-27 6-3 317 Kentucky #> 2789 <NA> 6-2 291 South Dakota State #> 2790 1995-10-27 6-3 293 Youngstown State #> 2791 1988-11-05 6-3 300 Delaware #> 2792 1996-05-16 6-4 315 Wisconsin-Whitewater #> 2793 1992-04-26 6-3 291 Tennessee #> 2794 1995-01-06 6-4 301 USC #> 2795 1990-07-17 6-4 300 South Carolina #> 2796 1994-12-20 6-5 308 Washington State #> 2797 1991-09-17 6-2 225 Vanderbilt #> 2798 1996-04-16 6-3 297 Tulsa #> 2799 1985-08-08 6-4 310 Notre Dame #> 2800 1991-01-09 6-5 309 Vanderbilt #> 2801 1995-07-28 6-0 224 None #> 2802 1991-01-30 6-5 304 Arkansas #> 2803 1995-12-28 6-1 314 None #> 2804 1995-06-03 6-1 294 Purdue #> 2805 1991-10-17 6-3 290 Mississippi State #> 2806 1995-10-04 6-3 318 None #> 2807 1994-08-19 6-1 292 Cincinnati #> 2808 1997-02-26 6-3 300 Western Michigan #> 2809 1995-11-23 6-4 307 Iowa #> 2810 1995-06-11 6-3 345 Indiana (PA) #> 2811 1996-05-04 6-4 306 North Dakota State #> 2812 1991-03-22 6-3 318 California #> 2813 1994-07-30 6-4 280 None #> 2814 1994-05-19 6-2 290 Appalachian State #> 2815 1996-04-27 6-0 290 BYU #> 2816 1994-01-27 6-0 292 Texas A&M #> 2817 1991-06-13 6-6 300 Virginia #> 2818 1996-09-19 6-2 303 Buffalo #> 2819 1995-02-25 6-4 290 None #> 2820 1986-04-14 6-5 305 Oregon #> 2821 1994-10-29 6-0 194 Florida State #> 2822 1989-07-10 6-0 195 New Mexico State #> 2823 1994-12-13 5-10 180 Utah #> 2824 1990-02-01 6-2 197 Rutgers #> 2825 1993-03-11 5-11 190 Western Kentucky #> 2826 1993-12-29 5-11 199 Southern Mississippi #> 2827 1991-01-08 5-10 199 Central Florida #> 2828 1991-12-08 6-1 205 North Carolina State #> 2829 1994-12-04 6-2 188 Mississippi #> 2830 1987-09-30 5-10 175 Minnesota #> 2831 1990-10-01 6-2 208 Wisconsin #> 2832 1995-12-15 5-11 201 Villanova #> 2833 1988-11-15 5-11 187 Clemson #> 2834 1990-10-26 5-10 190 San Diego State #> 2835 1988-05-27 5-11 207 Illinois #> 2836 1990-08-09 5-9 198 Texas-El Paso #> 2837 1998-05-03 5-9 170 Appalachian State #> 2838 1994-10-19 6-0 196 Stanford #> 2839 1996-04-19 6-3 192 Furman #> 2840 1991-11-30 6-1 200 Kansas #> 2841 1991-11-10 5-10 173 Western Michigan #> 2842 1989-02-11 5-10 186 Chattanooga #> 2843 1991-05-15 6-0 192 Valdosta State #> 2844 1994-09-27 5-11 170 None #> 2845 1994-09-05 5-10 185 Southeastern (FL) #> 2846 1989-06-28 6-2 212 Portland State #> 2847 <NA> 6-0 197 Florida Intl #> 2848 1995-01-13 5-11 205 Portland State #> 2849 1994-10-24 5-11 188 None #> 2850 1983-07-19 5-10 185 Shippensburg #> 2851 1991-02-07 6-0 183 Tulane #> 2852 1991-02-17 6-0 198 Washington #> 2853 1992-07-02 6-2 192 Michigan State #> 2854 1994-08-20 5-11 172 Akron #> 2855 1987-02-10 5-10 191 Boise State #> 2856 1997-05-13 6-1 200 Delaware #> 2857 1991-03-24 5-10 183 Oklahoma #> 2858 1994-11-21 6-1 188 Michigan #> 2859 1992-10-06 5-11 182 Northern Iowa #> 2860 1995-06-13 6-1 175 - #> 2861 1995-12-31 5-11 209 Arkansas #> 2862 1994-04-30 5-11 187 Louisiana Tech #> 2863 1995-11-27 6-1 195 Penn State #> 2864 1992-02-06 6-0 195 Southern Methodist #> 2865 1991-03-24 5-11 196 North Dakota State #> 2866 1994-05-26 6-0 185 Jacksonville State #> 2867 1990-02-07 5-11 192 Louisiana State #> 2868 1993-12-06 6-0 205 West Virginia #> 2869 1996-07-01 6-0 199 Limestone #> 2870 <NA> 5-11 190 None #> 2871 1988-02-23 6-1 198 Clemson #> 2872 1993-06-29 5-11 189 Florida International #> 2873 1994-06-25 5-11 197 Auburn #> 2874 1992-08-03 5-11 190 Arkansas #> 2875 1997-01-28 6-2 204 None #> 2876 1994-09-20 6-0 190 East Carolina #> 2877 1978-09-04 5-10 197 Kansas State #> 2878 1993-05-10 5-11 189 North Dakota State #> 2879 1997-08-18 5-11 191 San Jose State #> 2880 1993-08-01 6-2 206 Oregon State #> 2881 1995-09-26 6-2 205 Texas #> 2882 1994-07-23 6-1 188 Youngstown State #> 2883 1990-02-03 5-10 202 Southern Methodist #> 2884 1995-09-12 6-0 174 Toledo #> 2885 1992-12-26 6-0 192 Mississippi State #> 2886 1992-06-04 6-0 193 Marshall #> 2887 1993-12-11 6-5 240 None #> 2888 1992-05-16 6-1 180 Youngstown State #> 2889 1995-02-27 5-10 200 Minnesota #> 2890 1995-06-10 5-11 194 Georgia Tech #> 2891 1995-10-30 6-1 184 Houston #> 2892 1993-11-07 6-0 196 Oklahoma State #> 2893 1995-05-29 6-1 183 Central Florida #> 2894 1993-07-18 5-11 185 Florida State #> 2895 1994-10-24 5-11 191 Mississippi State #> 2896 1994-08-26 6-0 205 Rutgers #> 2897 1991-02-05 6-0 205 Middle Tennessee #> 2898 1992-11-10 5-11 194 Boise State #> 2899 1995-12-14 6-2 185 Miami (FL) #> 2900 1990-05-03 5-11 190 William &amp; Mary #> 2901 1989-06-11 5-11 197 Baylor #> 2902 1990-07-13 5-10 173 Georgia #> 2903 1996-05-17 5-9 187 Iowa State #> 2904 1991-02-01 5-11 192 South Florida #> 2905 1985-01-01 5-10 187 Louisville #> 2906 <NA> 5-9 182 None #> 2907 1992-11-30 5-10 200 Ohio State #> 2908 1991-04-08 5-10 195 Maryland #> 2909 1995-11-27 6-0 198 Marshall #> 2910 1990-03-30 5-10 194 Iowa State #> 2911 1993-04-19 6-0 186 Oklahoma State #> 2912 1995-05-16 5-9 170 None #> 2913 1987-04-08 5-11 184 Southern California #> 2914 1993-03-31 6-0 185 Coastal Carolina #> 2915 1992-08-15 6-1 205 Calgary-Canada #> 2916 1992-11-24 5-11 178 Southern Utah #> 2917 1986-02-13 6-1 209 Kansas #> 2918 1991-10-01 6-1 198 BYU #> 2919 1983-09-30 5-10 180 West Virginia #> 2920 1993-03-20 6-1 203 Louisiana State #> 2921 1995-02-26 6-1 204 San Jose State #> 2922 1990-07-16 5-10 190 Delaware #> 2923 1991-01-26 5-10 188 Oklahoma State #> 2924 1992-06-11 5-11 200 Texas State #> 2925 1995-01-09 6-2 200 St. Francis U #> 2926 1988-04-10 5-9 195 South Carolina #> 2927 1995-01-08 5-9 179 Indiana #> 2928 1995-01-18 6-0 180 None #> 2929 1990-12-30 6-0 190 Auburn #> 2930 1993-06-30 5-11 175 Texas A&M #> 2931 1991-01-03 6-2 210 Emporia State #> 2932 1996-12-23 6-3 197 Kentucky #> 2933 1994-11-04 5-9 180 None #> 2934 1994-06-20 6-0 182 SE Louisiana #> 2935 1993-11-29 5-10 200 Alabama #> 2936 1991-09-03 6-0 195 San Jose State #> 2937 1990-02-16 5-9 175 Arizona State #> 2938 1996-09-02 5-10 176 Ole Miss #> 2939 1984-12-09 5-11 195 Michigan #> 2940 1989-10-03 6-2 185 Mississippi State #> 2941 1994-06-08 5-10 189 South Florida #> 2942 1990-04-12 6-3 218 Nebraska #> 2943 1986-04-07 6-2 205 Tennessee State #> 2944 1994-01-10 6-0 189 Oklahoma State #> 2945 1992-07-15 5-11 195 Miami, O. #> 2946 1995-05-14 5-11 196 Texas #> 2947 1996-09-20 6-0 195 Central Florida #> 2948 1994-04-22 5-11 187 Tulane #> 2949 1993-12-04 5-9 188 Louisiana-Monroe #> 2950 1995-01-26 6-0 200 Massachusetts #> 2951 1994-10-25 5-11 185 UCLA #> 2952 1994-12-22 5-11 206 None #> 2953 1995-11-25 5-8 181 None #> 2954 1991-01-03 5-11 186 Tarleton State #> 2955 1992-05-13 6-2 201 Miami #> 2956 1992-10-21 6-1 200 Missouri Western #> 2957 1987-12-08 5-11 184 Miami #> 2958 1995-01-04 5-10 185 Boise State #> 2959 1993-04-05 5-11 184 Wisconsin #> 2960 1993-09-28 6-0 190 Southern Methodist #> 2961 1995-08-07 5-10 196 None #> 2962 1991-07-31 6-0 190 Florida Atlantic #> 2963 1996-10-09 5-11 188 None #> 2964 1988-12-13 5-10 187 UCLA #> 2965 1995-12-29 5-10 187 None #> 2966 1997-02-27 5-8 183 Lamar #> 2967 1996-02-12 6-2 210 Florida Atlantic #> 2968 1995-09-19 5-11 208 Oregon #> 2969 1995-02-20 5-11 200 Miami (FL) #> 2970 1996-02-29 5-11 185 UNLV #> 2971 1995-09-19 6-1 175 Arizona State #> 2972 1996-03-26 6-2 208 - #> 2973 1996-10-21 6-0 190 Arkansas #> 2974 1996-10-13 6-0 174 Southern Cal #> 2975 1995-07-06 5-11 170 Clemson #> 2976 1995-12-18 6-2 200 North Dakota #> 2977 1996-04-26 6-1 209 Dickinson State (ND) #> 2978 1988-04-24 6-4 300 Clemson #> 2979 1995-01-08 6-5 280 Central Missouri #> 2980 1993-01-15 6-6 275 Incarnate Word #> 2981 1996-06-09 6-2 296 None #> 2982 1995-07-21 6-5 295 Cortland State #> 2983 1990-03-13 6-3 331 Alabama #> 2984 1993-09-10 6-2 253 Montana #> 2985 1985-03-28 6-3 270 Virginia #> 2986 1997-04-05 6-2 213 Alabama A&M #> 2987 1995-10-30 6-1 290 Delaware #> 2988 1986-01-27 6-6 305 Hampton #> 2989 1987-02-07 6-7 272 Georgia Tech #> 2990 1994-10-02 6-2 325 None #> 2991 1983-09-14 6-3 280 Southern California #> 2992 1994-08-06 6-4 284 Northern Iowa #> 2993 1994-09-20 6-5 275 None #> 2994 1994-09-30 6-3 266 None #> 2995 1993-01-24 6-2 308 LSU #> 2996 1989-09-26 6-4 300 Connecticut #> 2997 1985-05-02 6-3 278 Winston-Salem #> 2998 1993-05-07 6-3 270 Oklahoma #> 2999 1987-02-16 6-3 305 Missouri #> 3000 1992-01-17 6-4 264 Towson #> 3001 1987-12-11 6-4 265 Rutgers #> 3002 1996-03-14 6-4 263 Notre Dame #> 3003 1992-01-17 6-5 275 Purdue #> 3004 1990-09-05 6-6 275 Concordia, St. Paul #> 3005 1990-04-26 6-2 300 Michigan State #> 3006 1995-05-22 6-3 301 BYU #> 3007 1992-07-11 6-2 248 Akron #> 3008 1992-09-02 6-3 237 Illinois #> 3009 1996-09-18 6-2 241 Georgia Tech #> 3010 1992-03-31 6-5 305 Central Michigan #> 3011 1994-02-25 6-2 322 Texas Tech #> 3012 1990-02-18 6-4 267 Florida State #> 3013 1992-03-31 6-3 258 Louisville #> 3014 1992-06-04 6-4 265 Oklahoma #> 3015 1991-12-21 6-4 275 Missouri #> 3016 1994-02-02 6-5 297 Georgia Tech #> 3017 1993-10-29 6-3 334 None #> 3018 1995-05-27 6-4 252 East Carolina #> 3019 <NA> 6-2 265 None #> 3020 1980-01-18 6-7 295 North Carolina #> 3021 1993-05-31 6-3 295 Utah #> 3022 1995-09-04 6-4 286 Ohio #> 3023 1993-02-14 6-5 275 Arkansas #> 3024 1992-07-24 6-3 246 Washington #> 3025 1997-01-24 6-8 255 UAB #> 3026 1994-01-15 6-3 299 Washington State #> 3027 1995-04-10 6-2 304 Rutgers #> 3028 1989-03-04 6-2 280 Utah #> 3029 1993-10-26 6-3 250 Northern Arizona #> 3030 1993-09-19 6-5 271 Central Arkansas #> 3031 1993-10-21 6-3 308 Bowling Green #> 3032 1992-09-13 6-4 277 Georgia #> 3033 1996-12-31 6-3 249 James Madison #> 3034 1989-08-17 6-2 253 Boston College #> 3035 1995-02-11 6-1 313 Washington #> 3036 1991-11-21 6-5 236 California #> 3037 1995-02-28 6-5 270 Stanford #> 3038 1990-03-18 6-2 260 Missouri #> 3039 1982-01-30 6-3 263 Penn State #> 3040 1995-07-25 6-4 291 Richmond #> 3041 1989-02-24 6-2 260 Bethune-Cookman #> 3042 1994-04-27 6-5 263 Tulane #> 3043 1994-11-20 6-2 242 None #> 3044 1996-02-22 6-1 275 Appalachian State #> 3045 1990-01-18 6-5 265 Southern California #> 3046 1995-01-31 6-4 228 None #> 3047 1996-11-25 6-2 282 Vanderbilt #> 3048 1994-11-20 6-4 225 Boise State #> 3049 1994-02-12 6-3 295 Pittsburgh #> 3050 1993-12-21 6-3 263 Northern Iowa #> 3051 1994-12-17 6-3 271 South Carolina #> 3052 1996-12-16 6-3 294 Louisiana Tech #> 3053 1994-03-01 6-4 280 Tennessee-Chattanooga #> 3054 1991-08-08 6-3 260 Nevada #> 3055 1996-05-07 6-4 308 None #> 3056 1985-11-13 6-4 274 Texas A&M #> 3057 1996-06-17 6-4 240 Notre Dame #> 3058 1991-11-19 6-4 267 Marist #> 3059 1987-01-06 6-2 297 Memphis #> 3060 1994-09-24 6-3 261 Penn State #> 3061 1989-10-22 6-4 315 Temple #> 3062 1994-07-13 6-3 287 North Carolina-Charlotte #> 3063 1997-11-23 6-4 265 Buffalo #> 3064 1994-08-06 6-4 249 South Florida #> 3065 1992-02-24 6-3 249 Kentucky #> 3066 1994-10-11 6-3 265 Oklahoma State #> 3067 1994-12-18 6-1 249 None #> 3068 1987-03-25 6-4 301 Wyoming #> 3069 1996-05-19 6-2 311 Nicholls State #> 3070 1990-05-20 6-4 265 East Central #> 3071 1996-07-20 6-2 240 Colgate #> 3072 1995-08-07 6-2 255 None #> 3073 1994-09-16 6-3 266 Youngstown State #> 3074 1995-09-07 6-3 238 Shepherd #> 3075 1989-12-27 6-4 281 Oklahoma #> 3076 1995-10-12 6-5 278 Miami (FL) #> 3077 1991-02-12 6-5 261 Richmond #> 3078 1990-05-24 6-3 260 Virginia #> 3079 1992-07-26 6-4 251 Lane #> 3080 1995-05-15 6-6 220 Alabama-Birmingham #> 3081 1995-05-26 6-4 277 None #> 3082 1993-04-15 6-5 273 Mississippi #> 3083 1983-04-27 6-3 259 Texas #> 3084 1993-01-18 6-6 250 None #> 3085 1995-03-22 6-3 258 Laval (Canada) #> 3086 1996-02-10 6-3 246 None #> 3087 1994-10-31 6-1 309 Florida #> 3088 1995-07-12 6-4 295 None #> 3089 1995-04-20 6-2 220 Brown #> 3090 1997-11-12 6-5 256 Incarnate Word #> 3091 1994-10-13 6-4 290 None #> 3092 1996-04-18 6-2 310 Virginia Tech #> 3093 1993-11-28 6-3 269 Mississippi State #> 3094 1992-05-28 6-3 314 Syracuse #> 3095 1988-06-09 6-5 302 Regina, Can. #> 3096 1994-12-06 6-1 298 None #> 3097 1984-08-30 6-3 288 Southern Mississippi #> 3098 1994-06-13 6-3 277 Wake Forest #> 3099 1995-05-17 6-1 273 LSU #> 3100 1996-03-08 6-2 319 None #> 3101 1994-07-04 6-2 278 Maryland #> 3102 1987-09-25 6-3 310 Arizona #> 3103 1993-03-28 6-3 330 Houston #> 3104 1996-04-30 6-4 300 Oregon State #> 3105 1990-04-25 6-2 345 Utah #> 3106 1994-06-23 6-1 279 Auburn #> 3107 1986-11-23 6-3 313 Louisiana State #> 3108 1984-01-21 6-4 340 Oregon #> 3109 1994-01-23 6-4 295 None #> 3110 1993-02-24 6-2 287 Ohio State #> 3111 1991-10-09 6-3 297 Georgia #> 3112 1990-01-24 6-4 298 Notre Dame #> 3113 1993-12-20 6-2 294 Virginia Tech #> 3114 1994-12-13 6-5 292 North Carolina #> 3115 1991-09-01 6-4 305 Georgia #> 3116 1983-06-10 6-1 303 Louisiana State #> 3117 1991-04-12 6-2 308 Ashland #> 3118 1990-05-16 6-2 269 Tulane #> 3119 1993-09-13 6-2 304 Garden City CC #> 3120 1990-07-12 6-2 302 Bowling Green #> 3121 1996-01-19 6-2 289 San Jose State #> 3122 1991-08-27 6-4 293 Miami (FL) #> 3123 1991-09-05 6-3 286 None #> 3124 1990-03-18 6-3 305 Tulsa #> 3125 1994-07-15 6-2 287 Iowa #> 3126 1996-12-31 6-4 285 None #> 3127 1990-11-15 6-4 287 West Texas A&M #> 3128 1994-03-29 6-3 307 Missouri #> 3129 1995-08-24 5-11 295 Alcorn State #> 3130 1994-10-23 6-1 284 None #> 3131 1994-01-22 6-1 300 Arkansas #> 3132 1997-01-07 6-4 335 None #> 3133 1996-07-13 6-3 300 Miami #> 3134 1992-01-23 6-3 312 Mississippi #> 3135 1995-04-18 6-3 279 None #> 3136 1990-05-07 6-5 330 Maryland #> 3137 <NA> 6-3 305 None #> 3138 1991-09-24 6-5 302 Buffalo #> 3139 1993-10-19 6-5 283 Mars Hill #> 3140 1994-07-27 6-2 284 Stanford #> 3141 1986-07-25 6-2 325 Iowa State #> 3142 1992-02-14 6-3 315 Arizona State #> 3143 1993-11-30 6-3 301 Ohio State #> 3144 1994-11-28 6-4 318 None #> 3145 1995-08-31 5-11 289 None #> 3146 1990-08-08 6-6 318 Minnesota #> 3147 1988-06-21 6-4 295 Southern Arkansas #> 3148 1991-12-02 6-3 276 Utah State #> 3149 1997-02-13 6-3 301 None #> 3150 1993-01-03 6-5 295 Tusculum #> 3151 1988-07-20 6-2 302 South Florida #> 3152 1991-11-30 6-4 300 Washington State #> 3153 1996-03-26 6-3 280 Toledo #> 3154 1991-02-18 6-1 331 Arkansas #> 3155 1991-06-28 6-4 309 Mississippi State #> 3156 1991-10-03 6-0 315 Arizona State #> 3157 1990-06-14 6-7 364 Georgia Tech #> 3158 1988-02-25 6-4 300 Oklahoma #> 3159 1996-02-28 6-0 300 None #> 3160 1996-08-25 6-2 304 Florida State #> 3161 1995-08-02 6-5 313 Mississippi State #> 3162 1993-09-30 6-2 220 Arkansas-Pine Bluff #> 3163 1994-04-15 6-0 236 Oregon State #> 3164 1993-08-21 6-1 245 San Jose State #> 3165 1992-09-17 5-11 249 Michigan #> 3166 1993-03-25 6-2 239 Kansas State #> 3167 1991-11-29 6-0 250 BYU #> 3168 1995-06-04 6-2 263 Michigan #> 3169 1992-08-21 6-1 255 Auburn #> 3170 1995-04-12 5-10 231 Virginia Tech #> 3171 1990-07-26 5-11 254 Alabama #> 3172 1990-10-18 6-0 233 UCLA #> 3173 1988-07-23 6-3 255 Brown #> 3174 1996-02-01 6-0 240 Pittsburgh #> 3175 1993-07-02 6-1 235 Memphis #> 3176 1994-08-09 6-4 266 Michigan #> 3177 1990-04-26 6-1 233 Southern Methodist #> 3178 1989-06-16 6-2 240 Tennessee #> 3179 1992-12-20 6-1 246 Oklahoma #> 3180 1996-01-20 6-2 248 None #> 3181 1992-03-30 5-11 248 Kent State #> 3182 1989-04-30 6-1 234 South Carolina #> 3183 1994-09-20 6-1 241 West Virginia #> 3184 1992-08-11 6-1 231 Mississippi State #> 3185 1995-10-07 6-2 254 None #> 3186 1994-04-20 6-2 240 None #> 3187 1992-12-13 6-1 284 Washington #> 3188 1992-05-30 5-10 195 Vanderbilt #> 3189 1989-02-12 5-10 205 West Virginia #> 3190 1993-12-04 6-0 185 Richmond #> 3191 1994-05-15 6-0 182 Dartmouth #> 3192 1989-02-23 6-2 203 California #> 3193 1997-06-22 5-11 205 Wofford #> 3194 1993-01-25 5-10 185 North Carolina #> 3195 1996-06-29 6-4 212 Houston #> 3196 1995-11-02 6-0 200 North Carolina State #> 3197 1993-11-30 6-2 199 Michigan #> 3198 1997-05-18 5-11 200 Georgia Southern #> 3199 1992-09-05 5-10 197 Auburn #> 3200 1993-04-10 6-0 210 Utah State #> 3201 1991-07-06 5-10 193 San Diego State #> 3202 1993-03-12 5-11 195 Auburn #> 3203 1988-06-16 6-0 198 Mississippi #> 3204 <NA> 5-11 193 Georgia #> 3205 1992-10-14 6-0 209 South Carolina #> 3206 1987-10-27 6-0 205 Texas Christian #> 3207 1994-06-29 6-3 209 Michigan #> 3208 1996-06-09 6-0 190 West Alabama #> 3209 1993-01-28 6-2 200 Georgia #> 3210 1988-07-01 5-11 208 Ohio State #> 3211 1992-04-06 5-11 196 Wyoming #> 3212 1985-07-25 6-0 196 New Hampshire #> 3213 1989-05-07 5-10 202 Texas #> 3214 1984-10-27 6-0 204 Boston College #> 3215 1981-03-24 5-11 205 Delaware #> 3216 1997-08-03 5-11 205 Mississippi #> 3217 1994-08-15 6-0 200 None #> 3218 1997-04-13 5-11 190 Boston College #> 3219 1988-08-04 5-11 214 South Carolina #> 3220 1989-10-23 6-2 225 Troy #> 3221 1993-12-15 5-10 208 TCU #> 3222 1994-03-18 5-11 196 Kansas #> 3223 1988-11-25 6-0 203 California, Pa. #> 3224 1995-01-20 5-10 204 St. Francis (PA) #> 3225 1996-05-01 6-2 207 Virginia #> 3226 1990-09-21 5-10 197 Texas A&M #> 3227 1984-07-27 5-11 206 Howard #> 3228 1990-12-03 6-0 195 Wisconsin #> 3229 1987-02-14 5-11 202 Norfolk State #> 3230 1986-01-15 6-0 207 New Mexico #> 3231 1994-10-18 6-1 213 Auburn #> 3232 1992-05-16 6-1 210 Georgia Tech #> 3233 1985-01-04 5-11 195 Utah #> 3234 1996-04-22 6-2 199 Arkansas #> 3235 1983-09-21 5-11 210 Florida #> 3236 1987-06-10 6-1 221 Ohio #> 3237 1993-12-13 6-3 225 Texas-San Antonio #> 3238 1994-05-28 5-11 196 Oklahoma State #> 3239 1995-01-28 6-0 201 Stony Brook #> 3240 1988-02-25 6-1 215 Georgia #> 3241 1997-02-10 6-0 196 Tennessee #> 3242 1996-05-16 6-0 201 Appalachian State #> 3243 1996-10-01 5-10 203 None #> 3244 1989-09-07 6-1 200 Notre Dame #> 3245 1996-08-19 6-2 204 None #> 3246 1996-07-01 6-1 199 Fort Hays State #> 3247 1995-06-14 6-0 190 None #> 3248 1987-08-17 6-0 206 Newberry #> 3249 1992-06-23 6-0 207 Vanderbilt #> 3250 1994-11-21 6-1 195 Southern Cal #> 3251 1994-10-17 6-0 210 North Carolina State #> 3252 1995-07-28 6-1 205 Colorado #> 3253 1995-03-04 6-4 345 Florida State #> 3254 1997-05-21 6-3 318 Utah #> 3255 1988-12-09 6-3 315 Iowa #> 3256 1995-05-12 6-4 305 None #> 3257 1991-02-18 6-3 317 Clemson #> 3258 1993-08-30 6-6 310 Montana State #> 3259 1993-11-18 6-4 307 Purdue #> 3260 1996-06-23 6-3 300 LSU #> 3261 1993-12-28 6-4 318 Illinois State #> 3262 1988-05-17 6-4 299 Montana State #> 3263 1994-12-30 6-5 310 Wake Forest #> 3264 1993-10-06 6-5 309 Wayne State (MI) #> 3265 1994-03-01 6-4 301 Oregon #> 3266 1993-01-03 6-6 305 Missouri Western State #> 3267 1992-03-02 6-5 325 Fresno State #> 3268 1989-07-02 6-2 315 Southern Methodist #> 3269 1994-05-10 6-4 326 San Diego State #> 3270 1994-07-29 6-3 305 South Florida #> 3271 1989-04-29 6-3 320 Memphis #> 3272 1996-01-11 6-4 320 None #> 3273 1991-12-30 6-2 315 Louisiana-Monroe #> 3274 1993-06-04 6-5 319 Georgia #> 3275 1984-08-19 6-5 318 Towson #> 3276 1986-01-07 6-5 328 Tennessee #> 3277 1994-02-06 6-5 318 Texas A&M #> 3278 1995-09-14 6-2 312 Nebraska #> 3279 1986-11-19 6-4 305 Utah #> 3280 1995-08-03 6-5 330 Baylor #> 3281 1993-01-24 6-6 305 Georgia #> 3282 1988-12-22 6-5 310 Florida State #> 3283 1995-06-12 6-4 300 Appalachian State #> 3284 1993-12-25 6-6 306 Iowa #> 3285 1993-05-09 6-5 314 Carroll, MT #> 3286 1989-01-17 6-5 340 New Mexico #> 3287 1993-12-16 6-5 309 Utah #> 3288 1995-01-17 6-4 312 None #> 3289 1986-07-19 6-2 308 Idaho State #> 3290 1989-05-09 6-5 305 Georgia #> 3291 1988-09-16 6-4 305 Midwestern State #> 3292 1994-12-17 6-4 305 Oregon #> 3293 1995-06-27 6-3 334 Southern Cal #> 3294 1993-02-22 6-4 300 Rutgers #> 3295 1995-06-18 6-4 296 None #> 3296 1987-10-15 6-5 329 Massachusetts #> 3297 1997-06-25 6-3 320 UAB #> 3298 1989-03-13 6-4 324 Syracuse #> 3299 1990-01-19 6-2 308 North Carolina #> 3300 1995-02-22 6-4 327 Oklahoma State #> 3301 1994-10-21 6-5 300 Pittsburgh #> 3302 1996-04-26 6-4 310 USC #> 3303 1995-10-31 6-4 294 Connecticut #> 3304 1986-05-15 6-2 303 Oregon State #> 3305 1986-02-18 6-5 315 Nebraska #> 3306 1991-08-08 6-6 315 Nebraska #> 3307 1994-03-06 6-4 335 Arkansas #> 3308 1993-06-24 6-3 282 Iowa State #> 3309 1988-12-05 6-6 332 Oregon #> 3310 1992-10-10 6-5 305 Boston College #> 3311 1991-11-11 6-3 322 Central Florida #> 3312 1996-01-10 6-2 343 Fresno State #> 3313 1993-02-23 6-3 298 Arizona State #> 3314 1992-10-15 6-6 315 Baylor #> 3315 1991-01-24 6-4 313 Tennessee State #> 3316 1988-07-26 6-4 306 Slippery Rock #> 3317 1996-08-20 6-4 305 Northern Colorado #> 3318 1992-12-29 6-3 325 Utah #> 3319 1993-11-30 6-4 316 None #> 3320 1990-11-27 6-5 315 Purdue #> 3321 1996-02-09 6-6 332 Rutgers #> 3322 1989-12-29 6-3 300 Kent State #> 3323 1993-10-14 6-4 312 Middle Tennessee #> 3324 1993-05-15 6-4 330 North Carolina #> 3325 1995-09-08 6-4 316 None #> 3326 1992-10-29 6-3 321 San Diego State #> 3327 1991-08-13 6-5 305 Toledo #> 3328 1995-05-17 6-4 320 Oregon State #> 3329 1994-10-03 6-4 310 Nebraska #> 3330 1995-01-07 6-4 316 Central Florida #> 3331 1995-07-25 6-5 315 Florida #> 3332 1991-06-18 6-3 317 Kentucky #> 3333 1991-10-16 6-6 320 UCLA #> 3334 1994-05-05 6-3 290 None #> 3335 1994-05-13 6-3 309 Kutztown #> 3336 1995-02-22 6-5 290 None #> 3337 1993-03-24 6-6 311 Western Kentucky #> 3338 1994-11-25 6-4 320 Indianapolis #> 3339 1995-10-23 6-4 314 Ohio State #> 3340 1995-10-27 6-3 306 North Carolina State #> 3341 1993-12-21 6-4 306 Michigan #> 3342 1992-04-23 6-5 310 Alabama #> 3343 1990-06-05 6-6 303 Iowa #> 3344 1992-12-02 6-6 317 Texas A&M #> 3345 1990-04-29 6-5 325 Ball State #> 3346 1990-11-26 6-7 305 Virginia #> 3347 1996-05-20 6-7 305 Ohio #> 3348 1994-02-24 6-6 301 None #> 3349 1987-09-20 6-4 315 Eastern Michigan #> 3350 1996-04-03 6-2 321 Texas #> 3351 1997-03-05 6-3 322 Kansas State #> 3352 1984-09-15 6-3 305 Iowa #> 3353 1994-10-25 6-5 310 Utah #> 3354 <NA> 6-2 308 None #> 3355 1992-05-12 6-7 300 Texas-El Paso #> 3356 1985-03-24 6-4 318 Toledo #> 3357 1995-06-04 6-4 334 Temple #> 3358 1991-06-02 6-5 330 Middle Tennessee #> 3359 1986-06-16 6-3 320 Central Florida #> 3360 1987-10-26 6-3 308 Arizona State #> 3361 1989-04-18 6-4 305 West Virginia #> 3362 1994-03-01 6-5 295 Alabama #> 3363 1986-06-14 6-5 340 Mississippi #> 3364 1989-12-30 6-3 296 Colorado #> 3365 1994-03-14 6-5 333 None #> 3366 1995-05-14 6-3 314 None #> 3367 1994-11-11 6-4 306 None #> 3368 1990-10-12 6-5 300 Louisiana College #> 3369 1991-06-28 6-3 320 Illinois #> 3370 1990-01-08 6-4 306 Illinois #> 3371 1994-06-16 6-6 310 Colorado State #> 3372 1994-02-20 6-5 298 Oregon State #> 3373 1995-07-03 6-3 310 None #> 3374 1996-07-21 6-3 283 Harvard #> 3375 1987-08-04 6-4 340 Tennessee #> 3376 1997-03-05 6-1 232 Texas-San Antonio #> 3377 1994-08-28 6-0 239 Arizona #> 3378 1995-06-29 6-0 233 None #> 3379 1994-06-26 6-2 220 PIttsburgh #> 3380 1994-12-18 6-3 220 None #> 3381 1995-01-20 6-0 194 Indiana State #> 3382 1996-03-07 6-2 230 Mississippi #> 3383 1993-12-24 6-1 226 Hawaii #> 3384 1995-07-15 6-4 250 None #> 3385 1994-12-02 5-10 225 None #> 3386 1992-08-18 5-11 220 Nebraska #> 3387 1995-09-15 6-1 238 None #> 3388 1996-08-30 6-0 229 None #> 3389 1996-09-06 6-3 235 Alabama-Birmingham #> 3390 1994-02-27 6-0 238 LA-Lafayette #> 3391 1995-01-09 6-1 231 Penn State #> 3392 1995-03-25 6-2 230 California #> 3393 1995-09-07 6-2 220 Colorado #> 3394 1994-12-15 6-0 227 Oklahoma #> 3395 1992-08-15 6-1 250 Arizona State #> 3396 1996-08-02 6-0 226 Texas #> 3397 1988-10-16 5-9 225 Central Washington #> 3398 1994-09-07 6-1 242 None #> 3399 1994-10-11 6-1 242 Sacramento State #> 3400 1997-03-20 6-0 250 Fresno State #> 3401 1993-11-23 6-1 226 Michigan State #> 3402 1997-06-10 6-1 230 Notre Dame #> 3403 <NA> 6-1 238 None #> 3404 1997-10-08 6-3 253 Clemson #> 3405 1994-12-02 6-2 243 LSU #> 3406 1995-11-14 6-0 237 None #> 3407 1992-02-16 6-2 230 Arizona #> 3408 1995-06-30 6-0 238 Boston College #> 3409 1995-03-21 6-1 241 Pittsburgh #> 3410 1995-09-14 5-11 231 Florida International #> 3411 1996-11-07 6-0 225 Nebraska #> 3412 1994-12-07 6-2 225 South Florida #> 3413 1995-04-21 6-0 203 McNeese #> 3414 1993-08-28 6-1 246 Maine #> 3415 1995-11-21 6-0 228 None #> 3416 1996-07-05 6-2 235 Maryland #> 3417 1996-03-26 6-2 230 Kansas #> 3418 1994-07-04 6-4 220 None #> 3419 1995-06-26 6-0 218 Oklahoma #> 3420 1994-12-06 6-1 232 Florida #> 3421 1993-02-08 6-1 242 Missouri #> 3422 1995-07-26 6-1 223 Washington #> 3423 1995-03-17 6-0 237 Louisville #> 3424 1978-03-02 6-1 258 Florida State #> 3425 1994-05-05 6-2 203 Texas #> 3426 1975-01-23 5-11 200 Texas #> 3427 1992-02-06 6-1 200 Washington #> 3428 1995-04-05 6-2 215 None #> 3429 1995-03-15 5-9 161 North Texas #> 3430 1989-08-09 5-9 192 Florida #> 3431 1992-08-29 6-0 200 Iowa #> 3432 1972-12-28 6-0 212 South Dakota State #> 3433 1991-02-26 6-3 200 Clemson #> 3434 1986-04-11 5-11 204 North Carolina #> 3435 1975-05-29 5-9 203 Baylor #> 3436 1981-08-21 6-0 198 Maryland #> 3437 1987-09-01 6-4 246 Boston College #> 3438 1992-01-24 5-11 234 Iowa State #> 3439 1993-08-04 6-0 229 Syracuse #> 3440 1990-10-12 6-1 245 Montana #> 3441 1988-02-19 6-2 240 North Carolina #> 3442 1990-11-27 6-2 235 Louisiana State #> 3443 1989-03-01 6-1 250 Washington #> 3444 1987-03-05 6-3 254 Central Michigan #> 3445 1986-07-21 6-0 233 Kentucky #> 3446 1995-06-23 6-2 227 None #> 3447 1992-08-19 6-2 237 Georgia #> 3448 1990-10-05 6-1 240 South Florida #> 3449 1988-03-14 6-2 240 Penn State #> 3450 1988-10-31 6-4 240 Northwestern #> 3451 1995-11-02 6-1 234 North Carolina-Charlotte #> 3452 1992-12-25 6-3 235 Miami #> 3453 1991-11-07 6-3 245 Columbia #> 3454 1989-06-08 6-4 245 Kansas State #> 3455 1994-01-02 5-11 240 None #> 3456 1987-08-10 5-11 232 North Dakota State #> 3457 1985-08-21 6-2 250 Middle Tennessee #> 3458 1989-10-23 6-1 251 North Carolina #> 3459 1988-12-09 6-2 235 Idaho #> 3460 1989-06-15 6-2 254 Rutgers #> 3461 1992-10-27 6-1 251 Louisville #> 3462 1990-09-11 6-4 267 Missouri Western #> 3463 1997-02-25 6-4 240 Vanderbilt #> 3464 1983-05-31 6-1 245 California #> 3465 1993-01-23 6-2 223 Boston College #> 3466 1991-01-01 6-3 235 West Virginia #> 3467 1988-03-14 6-0 246 James Madison #> 3468 1991-04-11 6-3 215 Florida State #> 3469 1986-06-04 6-2 235 Marshall #> 3470 1992-04-28 6-2 273 Florida #> 3471 1984-03-14 6-3 259 Virginia #> 3472 1988-04-17 6-4 240 Fresno State #> 3473 1997-03-08 6-2 220 Tennessee #> 3474 1991-08-07 6-3 230 San Diego State #> 3475 1991-05-25 6-0 232 Penn State #> 3476 1993-05-18 6-3 245 Missouri #> 3477 1989-01-06 6-4 261 Georgia Tech #> 3478 1989-09-10 6-1 245 Nevada #> 3479 1989-09-23 6-2 248 Illinois State #> 3480 1988-03-03 6-2 245 Florida State #> 3481 1987-09-06 6-0 250 Duke #> 3482 <NA> 6-2 224 None #> 3483 1993-09-20 6-2 239 Louisville #> 3484 1992-04-22 6-1 226 Oklahoma #> 3485 1989-07-14 6-5 263 Clemson #> 3486 1992-04-18 6-0 235 Southern California #> 3487 1992-10-01 6-4 259 Louisville #> 3488 1990-09-24 6-1 255 Arizona State #> 3489 1986-10-15 6-4 255 Cincinnati #> 3490 1991-03-28 6-2 238 Utah State #> 3491 1992-02-27 6-2 240 Michigan #> 3492 1982-11-22 6-3 242 Texas #> 3493 1991-02-16 6-2 222 Utah State #> 3494 1982-10-11 6-3 265 Arizona State #> 3495 1993-08-05 6-0 243 Arkansas #> 3496 1992-02-16 6-5 250 Mississippi #> 3497 1992-08-27 6-0 246 Washington #> 3498 1990-04-12 6-3 265 Southern California #> 3499 1994-08-23 6-2 240 None #> 3500 1995-11-28 6-2 244 Pittsburgh #> 3501 1988-01-02 6-2 252 Louisiana State #> 3502 1986-05-14 6-3 255 Southern California #> 3503 1997-04-11 6-1 212 Mississippi State #> 3504 1991-01-17 6-2 236 Penn State #> 3505 1992-05-13 6-0 231 Kansas #> 3506 1991-09-30 6-2 233 Oregon State #> 3507 1993-03-23 6-4 262 Tennessee #> 3508 1994-08-08 6-0 230 None #> 3509 1997-03-24 6-2 235 Georgia State #> 3510 1991-10-27 6-1 237 Texas Christian #> 3511 1991-03-20 6-5 250 Oregon State #> 3512 1986-07-31 6-4 257 Texas #> 3513 1996-11-15 6-0 225 Eastern Washington #> 3514 1994-01-20 6-3 243 Virginia #> 3515 1988-09-06 6-3 259 Texas #> 3516 1993-02-26 6-5 253 Louisville #> 3517 1991-09-21 6-3 255 Northwest Missouri State #> 3518 1989-07-10 6-3 255 UCLA #> 3519 1992-09-06 6-1 230 Ohio State #> 3520 1981-08-26 6-3 240 Maryland #> 3521 1994-02-07 6-1 250 Notre Dame #> 3522 1996-04-20 6-2 233 Penn State #> 3523 1986-05-29 6-1 237 Cincinnati #> 3524 1984-05-25 6-5 249 Brown #> 3525 1990-01-12 6-5 240 UCLA #> 3526 1995-10-04 6-1 243 None #> 3527 1992-03-07 6-0 205 Florida #> 3528 1995-03-12 6-1 243 Kansas State #> 3529 1995-08-24 6-3 250 Kansas #> 3530 1997-04-10 6-1 240 Nevada #> 3531 1993-11-24 6-2 235 San Diego State #> 3532 1994-02-23 6-4 329 Nebraska #> 3533 1996-02-06 6-3 290 Baylor #> 3534 1990-07-06 6-4 332 Northwestern State, La. #> 3535 1995-11-06 6-3 321 None #> 3536 1988-04-07 6-3 335 Baylor #> 3537 1995-08-23 6-2 300 Miami (FL) #> 3538 1996-04-03 6-2 315 None #> 3539 1996-07-24 6-4 290 Wisconsin #> 3540 1997-04-15 6-1 304 Mississippi Valley #> 3541 1997-12-10 6-3 300 Brown #> 3542 1995-03-22 6-3 291 Alabama #> 3543 1996-06-22 6-6 320 Ferris State #> 3544 1994-05-24 6-5 273 Valdosta State #> 3545 1995-03-16 6-2 284 None #> 3546 1995-02-04 6-1 265 Southern Mississippi #> 3547 1991-06-28 6-1 350 Southern Cal #> 3548 1996-10-27 6-1 343 Colorado #> 3549 1994-05-23 6-5 287 Cincinnati #> 3550 1994-09-04 6-4 290 None #> 3551 1996-01-14 6-3 340 Eastern Washington #> 3552 1996-02-11 6-2 283 Austin Peay #> 3553 1994-12-03 6-2 297 Illinois #> 3554 1994-10-26 6-3 310 Western Kentucky #> 3555 1994-06-15 6-3 305 None #> 3556 1985-01-15 6-1 311 California #> 3557 1995-11-06 6-1 339 Arkansas #> 3558 1986-11-18 6-1 310 Mississippi State #> 3559 1995-02-24 6-5 289 Penn State #> 3560 1997-04-25 6-0 329 Troy #> 3561 1989-12-28 6-2 315 Louisiana State #> 3562 1997-06-07 6-3 309 Miami (FL) #> 3563 1994-09-19 6-3 294 Mississippi #> 3564 1992-08-20 6-3 241 West Georgia #> 3565 1995-11-10 6-1 225 North Carolina #> 3566 1992-02-22 6-2 225 California (PA) #> 3567 1996-03-22 6-0 235 Northern Illinois #> 3568 1996-07-17 6-2 194 Fresno State #> 3569 1994-09-29 6-0 240 Rutgers #> 3570 1994-05-27 5-11 234 Ohio #> 3571 1990-09-13 6-3 248 Southern Utah #> 3572 1995-10-26 6-4 240 Charleston (WV) #> 3573 1996-06-07 6-2 240 Arizona State #> 3574 1996-01-10 6-3 260 - #> 3575 1996-02-08 6-2 250 Virginia #> 3576 1992-11-17 6-1 264 Auburn #> 3577 1995-01-04 6-1 236 None #> 3578 1992-11-02 6-6 295 Miami (FL) #> 3579 1994-06-24 6-4 265 Illinois #> 3580 1995-09-28 6-1 220 Incarnate Word #> 3581 1995-09-21 6-3 231 North Carolina #> 3582 1995-08-06 6-1 220 Arkansas State #> 3583 1994-06-21 6-4 241 None #> 3584 1994-03-15 6-4 247 Miami (OH) #> 3585 1997-05-26 6-0 235 None #> 3586 1995-02-10 6-0 228 Weber State #> 3587 1991-06-19 6-2 255 Michigan State #> 3588 1994-04-13 6-3 242 TCU #> 3589 1992-12-09 6-0 212 Duke #> 3590 1995-11-10 6-1 250 Georgia Tech #> 3591 1995-09-27 6-2 249 Auburn #> 3592 1995-10-02 6-2 235 Ohio State #> 3593 1995-09-28 6-1 229 Memphis #> 3594 1995-01-19 6-1 250 Rice #> 3595 1993-11-09 6-3 254 Tennessee #> 3596 1996-02-23 6-2 250 None #> 3597 1994-04-15 6-2 240 Mississippi State #> 3598 1995-07-21 6-3 232 None #> 3599 1993-11-12 6-1 247 Miami (OH) #> 3600 1993-01-30 5-11 241 Pittsburgh #> 3601 1994-09-16 6-3 256 Arkansas State #> 3602 1995-10-06 6-2 230 North Texas #> 3603 1996-01-09 5-11 230 Iowa State #> 3604 1993-07-02 6-0 227 Norfolk State #> 3605 1994-09-16 6-0 230 Appalachian State #> 3606 1996-11-30 6-1 240 Maine #> 3607 1994-11-26 6-2 229 Tennessee #> 3608 1996-01-05 6-4 260 Maryland #> 3609 1996-03-28 6-5 244 Alabama #> 3610 1996-03-06 6-2 226 Stanford #> 3611 1994-12-01 6-2 248 None #> 3612 1996-01-29 6-0 245 Wake Forest #> 3613 1996-10-15 6-1 228 South Carolina #> 3614 1996-02-21 6-0 236 Penn State #> 3615 1993-10-21 6-0 242 Wake Forest #> 3616 1997-08-31 6-2 255 Texas A&M #> 3617 1994-12-07 6-2 239 None #> 3618 1997-04-05 6-3 256 Northern Illinois #> 3619 1993-06-29 6-5 255 Texas A&M-Commerce #> 3620 1992-06-05 6-2 239 Bowling Green #> 3621 1993-07-08 6-3 242 UCLA #> 3622 1995-11-07 6-2 221 Connecticut #> 3623 1994-09-13 6-0 230 Houston #> 3624 1996-08-09 6-1 225 Prairie View #> 3625 1995-11-02 6-0 231 Arkansas State #> 3626 1993-10-29 6-3 274 Utah #> 3627 1995-06-06 6-3 237 None #> 3628 1995-03-11 6-0 210 Northwestern #> 3629 1995-02-06 6-2 250 Illinois State #> 3630 1995-09-19 6-2 240 None #> 3631 1995-09-28 6-4 250 Southeastern Louisiana #> 3632 1990-02-25 6-3 251 Western Michigan #> 3633 1992-09-29 6-3 235 Virginia Tech #> 3634 1995-02-03 6-0 215 Western Michigan #> 3635 1993-05-26 6-3 247 Georgia Southern #> 3636 1995-01-22 6-3 216 Texas-El Paso #> 3637 1995-12-07 6-2 241 New Mexico State #> 3638 1992-05-08 6-3 275 Kentucky #> 3639 1991-11-12 6-2 246 Chattanooga #> 3640 1992-04-29 6-2 220 South Florida #> 3641 1994-08-17 6-1 235 Ohio #> 3642 1993-08-29 6-3 246 Southern Illinois #> 3643 1995-12-31 5-11 234 Auburn #> 3644 1995-10-21 6-3 235 Wake Forest #> 3645 1997-12-15 6-1 230 Florida #> 3646 1993-12-23 6-1 222 LSU #> 3647 1994-05-26 6-0 227 None #> 3648 1992-12-12 6-1 237 Texas Tech #> 3649 1993-04-01 6-3 212 Wyoming #> 3650 1992-09-07 6-4 256 Louisiana Tech #> 3651 1992-09-14 6-2 245 Jacksonville State #> 3652 1995-06-08 6-2 245 Western Michigan #> 3653 1990-08-05 6-1 227 Marshall #> 3654 1994-04-24 6-4 247 Oregon #> 3655 1992-07-02 6-0 218 Pittsburgh #> 3656 1996-05-16 6-3 230 Texas #> 3657 1995-09-22 6-3 246 None #> 3658 1994-11-18 6-2 230 None #> 3659 1993-12-10 6-6 293 Troy #> 3660 1994-11-03 6-5 295 Kentucky #> 3661 1995-06-01 6-7 306 None #> 3662 1994-12-21 6-4 310 Buffalo #> 3663 1996-09-02 6-4 300 Cincinnati #> 3664 1993-09-02 6-4 320 LSU #> 3665 1994-09-12 6-6 316 None #> 3666 1995-03-29 6-5 310 None #> 3667 1995-11-09 6-5 335 Minnesota #> 3668 1995-12-19 6-3 294 None #> 3669 1994-10-18 6-8 305 None #> 3670 1991-11-27 6-8 334 Montana #> 3671 1993-07-09 6-7 315 Buffalo #> 3672 1994-07-08 6-5 331 Mississippi State #> 3673 1995-06-08 6-6 297 Toledo #> 3674 1995-11-05 6-5 287 West Texas A&M #> 3675 1993-10-16 6-7 294 Alabama State #> 3676 1994-03-20 6-5 300 None #> 3677 1996-09-19 6-4 317 None #> 3678 1992-09-09 6-7 315 Wisconsin #> 3679 1992-01-31 6-6 321 Mississippi State #> 3680 1994-09-20 6-6 300 Wagner #> 3681 1991-12-04 6-6 312 South Florida #> 3682 1992-11-28 6-5 324 BYU #> 3683 1996-08-05 6-5 300 Portland State #> 3684 1992-05-14 6-9 323 Nebraska #> 3685 1995-12-25 6-3 292 Northwestern #> 3686 1995-04-01 6-7 302 North Texas #> 3687 1989-10-11 6-4 306 Virginia Tech #> 3688 1991-06-02 6-8 323 Connecticut #> 3689 1991-03-19 6-5 305 Virginia Tech #> 3690 1996-01-26 6-5 305 Stanford #> 3691 1995-08-19 6-5 290 South Carolina State #> 3692 1996-02-03 6-5 317 Arkansas #> 3693 1996-01-07 6-8 324 Toledo #> 3694 1995-06-04 6-7 328 None #> 3695 1995-05-03 6-6 302 Idaho State #> 3696 1993-12-14 6-6 307 Pittsburgh #> 3697 1996-04-16 6-4 317 Maryland #> 3698 1994-11-19 6-5 321 Texas #> 3699 1993-11-22 6-6 291 New Hampshire #> 3700 1994-12-27 6-7 300 Cincinnati #> 3701 1996-06-18 6-5 333 Michigan #> 3702 1993-11-11 6-5 295 Eastern Michigan #> 3703 1996-05-02 6-6 300 North Carolina #> 3704 1996-02-24 6-7 280 Texas A&M-Commerce #> 3705 1992-08-04 6-6 301 UNLV #> 3706 1997-01-12 6-5 304 Kentucky #> 3707 1993-12-11 6-6 305 Stanford #> 3708 1994-11-11 6-6 300 Illinois #> 3709 1994-04-09 6-4 294 Duquesne #> 3710 1994-12-13 6-4 315 Central Missouri #> 3711 1996-12-17 6-8 309 South Carolina #> 3712 1996-12-26 6-6 315 Tennessee State #> 3713 1993-09-28 6-6 310 California #> 3714 1995-01-08 6-6 325 Temple #> 3715 1994-09-16 6-6 318 Oklahoma State #> 3716 1996-09-19 6-3 297 Southern Utah #> 3717 1998-03-06 6-6 312 San Diego State #> 3718 1994-10-13 6-5 335 Louisville #> 3719 1994-03-02 6-6 296 Northwestern St. - LA #> 3720 1993-10-08 6-6 292 None #> 3721 1994-03-21 6-5 299 Florida International #> 3722 1994-07-05 6-6 314 None #> 3723 1992-09-23 6-4 314 Boise State #> 3724 1994-08-25 6-4 311 Southern Mississippi #> 3725 1995-12-15 6-5 300 Virginia #> 3726 1994-02-24 6-7 321 William & Mary #> 3727 1992-08-21 6-9 285 Boston College #> 3728 1995-05-15 6-6 300 Villanova #> 3729 <NA> 5-11 182 Southern Utah #> 3730 1995-06-22 6-3 195 None #> 3731 1976-08-07 6-2 230 Texas A&M #> 3732 1995-04-10 6-3 211 None #> 3733 1990-10-10 6-3 210 Arkansas #> 3734 1990-10-27 5-11 224 California-Davis #> 3735 1993-10-14 6-4 211 Miami #> 3736 1980-07-05 6-2 221 Louisiana State #> 3737 1995-07-14 6-3 219 Notre Dame #> 3738 1981-11-26 6-0 217 Regina, Can. #> 3739 1991-09-26 6-2 215 Wofford #> 3740 1994-03-05 5-10 185 Texas Southern #> 3741 1988-10-26 6-0 192 Fort Valley State #> 3742 1990-01-26 6-3 188 Boston College #> 3743 1992-07-02 6-1 217 Tennessee #> 3744 1987-10-18 6-0 208 Miami #> 3745 1995-04-19 6-1 213 California-Davis #> 3746 1996-06-01 6-0 200 Western Carolina #> 3747 1989-09-27 6-0 195 UCLA #> 3748 1995-11-05 6-2 193 Arizona State #> 3749 1992-09-29 6-5 253 Ohio State #> 3750 1993-12-27 6-3 205 Shepherd #> 3751 1989-06-02 6-2 221 Southern Mississippi #> 3752 1990-11-22 6-7 240 Arizona State #> 3753 1991-05-31 6-3 230 Baylor #> 3754 1989-04-04 6-4 225 Oklahoma #> 3755 1994-12-02 5-10 214 None #> 3756 1994-08-26 6-2 224 Texas A&M-Commerce #> 3757 1994-08-22 6-3 220 None #> 3758 1987-11-08 6-4 224 Oklahoma #> 3759 1995-01-23 6-2 225 Ohio State #> 3760 1994-08-24 6-3 207 None #> 3761 1989-12-02 6-1 210 Penn State #> 3762 1996-01-14 6-5 226 Mississippi State #> 3763 1994-02-12 6-7 244 Memphis #> 3764 1995-02-14 6-4 218 None #> 3765 1994-04-22 6-5 235 Stephen F. Austin #> 3766 1980-04-21 6-2 230 Eastern Illinois #> 3767 1993-08-22 6-0 211 TCU #> 3768 1994-10-06 6-4 225 None #> 3769 1990-04-26 6-4 228 Pittsburgh #> 3770 1983-06-15 6-6 235 Oregon State #> 3771 1981-01-03 6-5 218 Mississippi #> 3772 1994-08-21 6-0 210 None #> 3773 1995-02-14 6-4 223 Penn State #> 3774 1994-12-28 6-4 215 null #> 3775 1996-07-20 6-1 211 Albany (NY) #> 3776 1996-02-13 6-3 225 Dartmouth #> 3777 1993-01-29 6-4 217 Michigan State #> 3778 1995-10-05 6-5 230 None #> 3779 1994-10-02 6-0 192 None #> 3780 1993-05-11 6-1 215 USC #> 3781 1986-11-11 6-2 232 Southern California #> 3782 1990-03-19 6-4 237 Florida State #> 3783 1983-10-14 6-3 228 Oklahoma State #> 3784 1988-09-27 6-3 210 Tennessee #> 3785 1995-01-23 6-1 211 Holy Cross #> 3786 1979-12-27 6-5 235 Southern California #> 3787 1993-06-04 6-1 216 Wesley #> 3788 1995-10-18 6-4 221 Murray State #> 3789 1989-09-12 6-4 240 Stanford #> 3790 1995-09-03 6-4 214 Miami #> 3791 1982-05-17 6-4 228 Southern California #> 3792 1992-11-07 6-3 228 Liberty #> 3793 1994-12-06 6-5 240 UCLA #> 3794 1991-05-29 6-2 220 Colorado State #> 3795 1991-05-07 5-8 208 Buffalo #> 3796 1993-07-22 6-0 227 South Carolina #> 3797 1996-10-27 6-0 226 Kansas State #> 3798 1994-05-26 5-10 224 Utah State #> 3799 1991-09-24 5-11 213 Florida #> 3800 1995-11-14 5-11 216 Rutgers #> 3801 1991-09-13 5-11 224 South Dakota State #> 3802 1987-07-24 6-0 219 Utah #> 3803 1993-08-03 5-9 215 Central Michigan #> 3804 1996-06-06 6-2 247 Texas #> 3805 1995-02-19 5-9 210 Iowa #> 3806 1993-11-19 5-8 195 Missouri #> 3807 1995-07-06 5-10 200 Texas Tech #> 3808 1995-07-04 6-1 187 No College #> 3809 1993-04-16 6-4 281 Michigan State #> 3810 1988-02-12 6-1 220 Oklahoma #> 3811 1994-04-18 5-10 212 Texas A&M #> 3812 1990-09-19 6-0 211 West Virginia #> 3813 1989-02-02 5-10 205 Texas #> 3814 1990-05-04 5-9 204 Michigan #> 3815 1989-02-03 5-9 199 Clemson #> 3816 1996-03-22 5-9 225 Virginia #> 3817 1993-12-19 5-9 194 Southern #> 3818 1986-12-27 5-11 199 Texas #> 3819 1994-11-21 5-10 200 Vanderbilt #> 3820 1995-04-27 5-7 172 West Georgia #> 3821 1992-10-03 6-0 220 Tulane #> 3822 1989-02-01 6-1 210 Appalachian State #> 3823 1996-03-02 6-0 218 LSU #> 3824 1994-12-09 6-1 235 Florida #> 3825 1992-12-11 5-7 195 Texas A&M #> 3826 1991-06-02 5-10 205 Abilene Christian #> 3827 1993-05-23 5-10 205 Illinois #> 3828 1993-06-15 6-0 223 Boise State #> 3829 1995-02-19 5-11 199 None #> 3830 1992-10-24 5-11 228 Texas A&M #> 3831 1986-04-22 5-11 215 California #> 3832 1994-06-17 6-0 224 None #> 3833 1990-07-07 5-10 218 Middle Tennessee #> 3834 1991-08-27 6-0 222 Southern California #> 3835 1993-01-08 5-11 225 Alabama State #> 3836 1994-03-18 5-6 225 Towson #> 3837 1997-03-22 5-11 180 Syracuse #> 3838 1991-12-23 6-0 225 Coastal Carolina #> 3839 1996-02-05 5-10 208 Indiana #> 3840 <NA> 5-6 169 None #> 3841 1995-07-20 5-10 209 Ohio #> 3842 1985-12-10 6-2 218 Tulane #> 3843 1995-09-02 5-10 198 None #> 3844 1991-02-10 5-8 224 California #> 3845 1988-03-22 6-0 223 Tiffin #> 3846 1993-03-07 5-10 220 Houston #> 3847 1994-02-19 5-11 237 Minnesota #> 3848 1989-12-02 5-10 216 Utah State #> 3849 1995-09-09 5-11 184 New Mexico State #> 3850 1996-12-30 6-1 210 Central Florida #> 3851 1996-05-28 5-11 220 Northwest Missouri State #> 3852 1992-10-20 6-1 235 Louisiana State #> 3853 1995-11-11 6-1 198 Southern Cal #> 3854 1994-09-03 5-9 207 North Carolina State #> 3855 1987-12-07 5-11 205 North Carolina #> 3856 1996-06-20 6-0 216 None #> 3857 1995-06-04 5-11 225 Iowa #> 3858 1992-10-15 5-11 203 TCU #> 3859 1987-03-21 5-10 240 Oregon #> 3860 1993-08-22 6-1 238 Azusa Pacific #> 3861 1994-12-06 5-8 169 San Diego State #> 3862 1992-04-01 5-8 205 South Carolina State #> 3863 1985-09-23 5-11 203 East Carolina #> 3864 1991-06-09 5-8 198 Utah State #> 3865 1990-06-23 5-10 215 Auburn #> 3866 1995-01-03 5-10 192 None #> 3867 1993-06-03 5-11 229 Minnesota #> 3868 1992-11-29 6-1 218 Notre Dame #> 3869 1993-03-16 5-9 220 Louisiana State #> 3870 1994-12-10 5-11 215 None #> 3871 1994-07-06 6-0 231 Virginia Union #> 3872 1983-06-20 5-6 190 Kansas State #> 3873 1992-05-20 5-10 205 New Mexico #> 3874 1996-08-06 5-10 200 None #> 3875 1993-01-10 5-11 203 Colorado State #> 3876 1986-05-23 6-0 220 Richmond #> 3877 1988-10-27 5-10 204 Louisville #> 3878 1991-12-06 6-0 211 Michigan State #> 3879 1991-01-28 5-10 225 Towson #> 3880 1991-12-19 5-11 203 Auburn #> 3881 1995-08-23 5-11 214 Alcorn State #> 3882 1995-12-14 6-2 240 Miami (FL) #> 3883 1993-03-08 5-9 205 None #> 3884 1989-03-02 5-10 205 California #> 3885 1991-04-27 6-2 225 Louisiana State #> 3886 1992-01-28 5-11 224 Toledo #> 3887 1993-03-07 6-2 239 Florida #> 3888 1995-03-13 5-10 194 None #> 3889 1994-06-12 6-2 215 East Carolina #> 3890 1995-09-04 5-11 210 None #> 3891 1990-11-01 5-11 219 Florida #> 3892 1996-09-08 5-10 202 Michigan #> 3893 1997-06-21 5-11 225 LSU #> 3894 1988-11-12 5-10 221 Texas-El Paso #> 3895 1994-02-13 5-9 201 Oregon #> 3896 1994-03-06 5-10 210 None #> 3897 1997-02-23 5-10 200 James Madison #> 3898 1991-09-14 5-10 195 San Diego State #> 3899 1994-11-08 5-11 220 Michigan #> 3900 1993-08-16 6-0 236 Southern Cal #> 3901 1992-10-09 6-0 209 California #> 3902 1995-11-30 5-9 209 Clemson #> 3903 1987-10-10 6-0 220 Fresno State #> 3904 1986-12-05 6-0 250 Oregon #> 3905 1996-09-06 6-0 217 Pittsburgh #> 3906 1993-01-02 5-9 215 Eastern Michigan #> 3907 1993-02-22 5-10 185 Purdue #> 3908 1990-02-06 5-6 205 Oregon State #> 3909 1995-03-28 6-1 226 Northern Illinois #> 3910 1993-09-04 5-11 202 Utah #> 3911 1992-11-24 5-7 202 Coastal Carolina #> 3912 1996-09-12 6-0 224 Oklahoma #> 3913 1997-07-27 5-10 200 Wake Forest #> 3914 1990-11-09 5-10 221 Texas A&M #> 3915 1996-04-22 5-11 232 North Carolina #> 3916 1994-11-15 5-11 220 Michigan State #> 3917 1993-03-18 5-9 210 Louisville #> 3918 1989-01-27 5-11 220 Louisiana State #> 3919 1995-01-18 5-11 180 Syracuse #> 3920 1994-04-19 6-1 233 Oregon State #> 3921 1996-02-05 6-0 210 Colorado #> 3922 1994-12-24 5-10 226 Tarleton State #> 3923 1991-10-05 5-10 227 Arkansas #> 3924 1995-09-19 5-11 243 No College #> 3925 1995-06-05 6-0 218 Slippery Rock #> 3926 1991-10-03 5-9 195 Missouri #> 3927 1996-09-10 5-9 204 None #> 3928 1995-01-03 5-9 196 Texas-San Antonio #> 3929 1995-12-02 5-9 185 Duke #> 3930 1987-08-05 5-11 200 Clemson #> 3931 1985-01-25 5-8 200 Chadron State #> 3932 1987-08-27 6-1 210 Arkansas #> 3933 1995-12-09 5-11 239 None #> 3934 1997-03-29 5-10 202 Miami (FL) #> 3935 1990-06-02 5-11 250 Alabama #> 3936 <NA> 6-1 250 Slippery Rock #> 3937 1994-01-21 5-10 228 Louisiana Tech #> 3938 1995-05-30 6-3 235 LSU #> 3939 1989-01-13 5-9 210 Boise State #> 3940 1995-07-17 6-0 208 None #> 3941 1997-12-15 6-3 203 Utah #> 3942 1995-11-12 6-3 200 North Alabama #> 3943 1996-02-15 6-1 207 None #> 3944 1995-11-29 5-11 185 Oklahoma State #> 3945 1991-02-27 6-0 219 Virginia Tech #> 3946 1995-11-01 6-0 209 Rutgers #> 3947 1992-02-04 5-10 195 Fresno State #> 3948 1994-02-16 5-11 195 Mississippi #> 3949 1992-01-27 5-11 212 Oklahoma #> 3950 1992-12-21 6-1 211 Alabama #> 3951 1992-10-28 6-2 210 Florida Atlantic #> 3952 1993-04-27 6-0 203 Penn State #> 3953 1997-11-04 5-11 214 No College #> 3954 1988-06-12 5-10 212 Boise State #> 3955 1996-02-29 6-1 215 Purdue #> 3956 1991-09-06 6-2 222 Texas-El Paso #> 3957 1991-08-05 5-9 212 Auburn #> 3958 1988-09-20 6-1 205 Arkansas State #> 3959 1995-07-07 6-0 226 Southern Cal #> 3960 1995-11-12 5-11 209 None #> 3961 1996-09-05 5-11 198 UCLA #> 3962 1994-08-05 6-0 202 Washington State #> 3963 1988-02-11 6-2 218 Toledo #> 3964 1995-12-23 5-11 203 Appalachian State #> 3965 1991-05-06 6-0 206 Central Florida #> 3966 1994-02-16 6-2 211 Ohio State #> 3967 1987-01-06 5-10 200 Wisconsin #> 3968 1997-05-06 6-2 200 San Diego State #> 3969 1996-03-17 6-1 209 Washington #> 3970 1993-04-08 6-1 207 Maryland #> 3971 1993-08-06 5-11 210 Findlay #> 3972 1994-01-18 5-10 210 Georgia Southern #> 3973 1994-05-31 6-2 206 Northern Iowa #> 3974 1987-05-12 5-11 205 South Carolina State #> 3975 1991-06-19 6-1 200 Liberty #> 3976 1991-09-05 6-3 222 Tulsa #> 3977 1995-12-21 6-0 185 Mississippi State #> 3978 1995-12-04 6-2 212 Michigan State #> 3979 1992-07-27 5-10 197 Central Florida #> 3980 1997-05-29 6-2 203 Marshall #> 3981 1995-10-06 5-10 187 None #> 3982 1991-12-10 6-1 213 Louisiana State #> 3983 1996-06-03 6-1 210 Vanderbilt #> 3984 1992-01-29 6-1 200 Michigan State #> 3985 1995-10-24 6-0 202 West Virginia #> 3986 1991-02-23 5-9 205 Syracuse #> 3987 1989-01-13 6-1 209 Georgia Tech #> 3988 1993-02-26 6-1 220 Louisiana State #> 3989 1993-11-01 6-0 183 Shepherd #> 3990 1994-04-20 5-11 191 Michigan State #> 3991 1994-04-14 6-4 205 Oregon #> 3992 1995-03-04 6-0 204 Georgia #> 3993 1993-09-19 6-2 211 Western Michigan #> 3994 1992-04-02 6-2 220 Miami #> 3995 1993-07-19 6-1 206 Cincinnati #> 3996 1997-01-31 5-11 207 Michigan #> 3997 1988-12-17 5-10 200 Oregon #> 3998 1994-03-04 6-2 208 Arkansas State #> 3999 1988-04-03 6-3 225 Virginia Tech #> 4000 1994-04-21 6-2 208 Utah #> 4001 1992-06-01 6-2 216 Central Florida #> 4002 1994-12-28 5-11 208 LSU #> 4003 1988-12-29 6-0 212 Tennessee #> 4004 1994-04-19 6-1 206 Minnesota #> 4005 1994-01-19 5-11 190 Robert Morris #> 4006 1988-11-16 5-11 207 North Carolina #> 4007 1993-08-31 6-0 191 Southern Utah #> 4008 1993-12-20 6-1 213 South Dakota #> 4009 1991-01-26 6-2 223 Southern California #> 4010 1994-01-10 6-1 205 Baylor #> 4011 1993-04-23 6-6 305 Oregon #> 4012 1992-05-20 6-5 307 Georgia State #> 4013 1993-07-21 6-7 322 Alabama #> 4014 1985-10-01 6-5 305 Southern Mississippi #> 4015 1989-07-06 6-7 315 Southern California #> 4016 1989-08-06 6-4 322 Villanova #> 4017 1992-07-28 6-6 331 Brigham Young #> 4018 1991-11-18 6-4 337 Pittsburgh #> 4019 1992-01-21 6-7 351 Miami #> 4020 1987-11-16 6-6 315 Arkansas State #> 4021 1989-01-04 6-5 326 Louisiana State #> 4022 1986-07-20 6-6 326 Mississippi #> 4023 1991-07-21 6-6 315 Texas Tech #> 4024 1994-08-07 6-5 335 Utah #> 4025 1991-02-22 6-6 281 Oregon #> 4026 1992-03-03 6-6 305 Iowa #> 4027 1988-05-04 6-7 300 Valdosta State #> 4028 1987-03-22 6-7 330 Northern Iowa #> 4029 1989-09-18 6-6 345 Georgia #> 4030 1993-08-03 6-5 305 South Florida #> 4031 1983-04-27 6-4 315 Utah State #> 4032 1992-10-21 6-5 332 Auburn #> 4033 1990-02-11 6-6 323 Virginia Tech #> 4034 1988-04-19 6-5 312 Hampton #> 4035 1992-05-21 6-7 317 South Carolina #> 4036 1993-02-10 6-7 290 Clemson #> 4037 1990-11-26 6-5 315 Penn State #> 4038 1992-03-11 6-5 305 Cincinnati #> 4039 1989-08-18 6-5 309 Alabama-Birmingham #> 4040 1984-08-30 6-5 295 Central Michigan #> 4041 1996-05-03 6-5 249 Delaware #> 4042 1996-04-18 6-3 250 Maine #> 4043 1992-05-30 6-4 265 Albany, N.Y. #> 4044 1995-09-20 6-5 244 East Carolina #> 4045 1995-12-30 6-3 248 Northwestern #> 4046 1987-08-26 6-2 260 Arkansas State #> 4047 1993-07-22 6-4 243 Virginia Tech #> 4048 1994-08-01 6-4 235 NW Missouri State #> 4049 1994-05-07 6-5 265 Toledo #> 4050 1995-10-23 6-3 241 Wyoming #> 4051 1994-07-28 6-3 245 None #> 4052 1995-06-27 6-4 238 Purdue #> 4053 1985-09-22 6-6 250 Louisville #> 4054 1980-06-18 6-4 255 Kent State #> 4055 1995-03-30 6-2 231 UCLA #> 4056 1990-12-27 6-7 265 Eastern Kentucky #> 4057 1991-08-28 6-2 258 Iowa State #> 4058 1984-01-31 6-3 248 Maryland #> 4059 1993-05-19 6-4 262 Texas-San Antonio #> 4060 1988-09-20 6-6 251 Stanford #> 4061 1988-10-03 6-5 255 Southern California #> 4062 1991-03-29 6-5 255 Purdue #> 4063 1993-03-20 6-4 248 Shepherd #> 4064 1985-01-25 6-4 255 Cincinnati #> 4065 1996-04-24 6-3 245 None #> 4066 1994-07-25 6-5 258 None #> 4067 1994-01-07 6-8 275 Baylor #> 4068 1995-08-08 6-6 257 Virginia Tech #> 4069 1992-01-14 6-3 257 Monmouth, N.J. #> 4070 1994-08-06 6-2 240 Wake Forest #> 4071 1990-02-25 6-4 250 Southern U. #> 4072 1993-09-03 6-3 247 Wisconsin #> 4073 1992-11-24 6-5 255 Ohio State #> 4074 1995-10-11 6-0 257 None #> 4075 1991-09-18 6-8 266 Northern Illinois #> 4076 1992-05-08 6-5 243 Miami #> 4077 1992-10-02 6-4 244 South Carolina #> 4078 1994-01-30 6-3 239 South Alabama #> 4079 1995-10-13 6-4 255 Louisville #> 4080 1990-03-14 6-5 245 Grand Rapids CC #> 4081 1991-02-18 6-4 268 Michigan State #> 4082 1992-10-07 6-5 255 Buffalo #> 4083 1987-07-25 6-4 250 Oregon #> 4084 1991-11-04 6-2 260 Stony Brook #> 4085 1992-11-16 6-7 240 Barry #> 4086 1989-02-13 6-3 246 Tulsa #> 4087 1992-04-13 6-5 255 Assumption #> 4088 1988-07-04 6-4 265 Illinois #> 4089 1989-08-09 6-1 224 Nebraska #> 4090 1991-05-01 6-4 231 No College #> 4091 1991-06-12 6-2 247 Washington State #> 4092 1996-08-27 6-1 235 Marshall #> 4093 1994-02-04 6-6 227 None #> 4094 1993-07-05 6-9 274 Loughborough (UK) #> 4095 1987-03-10 6-6 275 Texas A&M #> 4096 1995-02-12 6-3 240 Georgia Southern #> 4097 1995-01-24 6-3 243 None #> 4098 1991-07-21 6-4 235 Utah #> 4099 1987-12-03 6-5 259 Henderson State #> 4100 1995-05-08 6-4 242 None #> 4101 1993-07-19 6-3 256 Michigan State #> 4102 1996-10-13 6-3 241 None #> 4103 1995-12-11 6-3 240 Houston #> 4104 1993-04-09 6-5 258 Notre Dame #> 4105 1992-09-29 6-5 262 Washington #> 4106 1996-01-13 6-4 265 Miami (OH) #> 4107 1980-12-18 6-3 255 Georgia #> 4108 1988-05-29 6-5 252 Michigan State #> 4109 1992-09-18 6-6 270 Notre Dame #> 4110 1994-12-09 6-3 236 Marshall #> 4111 1989-11-07 6-4 263 Minnesota #> 4112 1995-02-09 6-1 216 UCF #> 4113 1994-02-07 6-3 247 Harvard #> 4114 1991-02-03 6-6 260 San Diego State #> 4115 1984-08-12 6-2 248 Central Missouri #> 4116 1994-05-31 6-4 259 Alabama State #> 4117 1991-01-27 6-2 250 Georgia #> 4118 1996-06-12 6-4 244 None #> 4119 1987-06-11 6-5 251 Virginia #> 4120 1995-05-23 6-6 250 LSU #> 4121 1993-08-13 6-4 235 South Alabama #> 4122 1991-05-25 6-4 254 Southern Connecticut State #> 4123 1992-06-26 6-5 265 Texas Tech #> 4124 1991-09-20 6-5 245 Arkansas #> 4125 1992-06-12 6-3 248 Iowa #> 4126 1989-06-06 6-6 277 Mississippi #> 4127 1993-10-16 6-5 250 None #> 4128 1994-02-24 6-5 248 North Carolina State #> 4129 1993-02-05 6-7 266 Missouri State #> 4130 1991-01-24 6-4 255 Stanford #> 4131 1984-10-04 6-5 245 Nebraska-Omaha #> 4132 1987-02-26 6-5 264 UCLA #> 4133 1995-01-27 6-3 251 None #> 4134 1995-05-30 6-6 255 None #> 4135 1992-06-15 6-3 236 Louisiana-Monroe #> 4136 1995-12-22 6-2 250 Texas State #> 4137 1993-07-24 6-5 256 Pennsylvania #> 4138 1996-05-09 6-4 248 Kentucky #> 4139 1995-06-29 6-5 254 Oklahoma #> 4140 1990-02-24 6-4 260 Clemson #> 4141 1990-04-07 6-4 220 Rutgers #> 4142 1988-06-27 6-5 262 Portland State #> 4143 1993-02-10 6-4 245 Tennessee #> 4144 1995-09-09 6-4 251 None #> 4145 1992-12-17 6-3 244 Penn State #> 4146 1995-12-03 6-2 230 None #> 4147 1996-04-03 6-6 261 None #> 4148 1995-05-21 6-4 269 Louisville #> 4149 1986-08-06 6-5 248 Florida #> 4150 1993-12-16 6-5 253 Pittsburgh #> 4151 1988-06-16 6-5 260 Oklahoma #> 4152 1990-05-29 6-6 240 Louisiana-Lafayette #> 4153 1996-01-25 6-6 265 Texas A&M #> 4154 1988-01-30 6-3 250 Wisconsin #> 4155 1995-05-15 6-3 287 California #> 4156 1993-02-24 6-6 257 East Carolina #> 4157 1992-11-23 6-5 260 Monmouth #> 4158 1991-10-01 6-4 252 Miami #> 4159 1993-04-26 6-6 250 California (PA) #> 4160 1992-10-16 6-2 209 Clemson #> 4161 1993-06-16 5-9 183 Iowa #> 4162 1994-02-01 6-6 217 Rutgers #> 4163 1994-12-08 6-1 181 None #> 4164 1994-01-24 6-0 211 Rutgers #> 4165 1985-05-31 6-3 217 Kansas State #> 4166 1993-03-31 6-1 212 Auburn #> high_school gsis_id espn_id #> 1 East Lake (FL) 00-0034785 3115972 #> 2 Pine Forest (NC) 00-0035536 3128707 #> 3 Saguaro (AZ) 00-0035236 4038999 #> 4 Apollo (AZ) 00-0027957 13975 #> 5 Oceanside (CA) 00-0036043 3821572 #> 6 Wagoner (OK) 00-0032848 2977742 #> 7 Northwestern (SC) 00-0024239 9610 #> 8 Hammond (LA) 00-0030528 15817 #> 9 Ely (FL) 00-0027943 13980 #> 10 Gadsden City (AL) 00-0029560 14940 #> 11 Lone Star (TX) 00-0036060 4035402 #> 12 Oak Grove (MS) 00-0035368 3123966 #> 13 Downey (CA) 00-0035705 4043089 #> 14 Crespi (CA) 00-0032560 2579163 #> 15 Kempner (TX) 00-0029747 15782 #> 16 George Washington (PA) 00-0035267 3929648 #> 17 Parsippany Hills (NJ) 00-0035541 3138765 #> 18 Muskogee (OK) 00-0030515 15906 #> 19 L.D. Bell (TX) 00-0030883 17017 #> 20 Linn-Marr (IA) 00-0031592 2517779 #> 21 Red Lion Christian Academy (DE) 00-0032107 2574582 #> 22 Herriman (UT) 00-0036371 4035666 #> 23 New Canaan (CT) 00-0035248 3915282 #> 24 Circle (KS) 00-0031557 2577466 #> 25 Luther Burbank (CA) 00-0035540 3910660 #> 26 Ruston (LA) 00-0032628 2971881 #> 27 Mooresville (NC) 00-0029146 15025 #> 28 Restoration Academy (AL) 00-0035336 3115482 #> 29 San Clemente (CA) 00-0033511 3045286 #> 30 Council Rock South (PA) 00-0030585 15808 #> 31 Manvel (TX) 00-0035431 3122145 #> 32 Norcross (GA) 00-0032132 2512538 #> 33 Centerville (OH) 00-0023482 8461 #> 34 Deer Park (TX) 00-0033862 3043234 #> 35 Kearney (NE) 00-0030332 16486 #> 36 Crystal Lake South (IL) 00-0034473 4334300 #> 37 Desert Vista (AZ) 00-0031241 16820 #> 38 Anson (NC) 00-0032102 2576482 #> 39 Glen Burnie (MD) 00-0034490 3894901 #> 40 Redlands East Valley (CA) 00-0034404 3047582 #> 41 Lakota West (OH) 00-0032129 2514270 #> 42 Haddon Heights (NJ) 00-0033875 2980504 #> 43 Nevada Union (CA) 00-0033580 3042895 #> 44 Afton (MO) 00-0032127 2971432 #> 45 Southridge (FL) 00-0033819 3051925 #> 46 Cypress Lake (FL) 00-0032401 3040180 #> 47 Union-Endicott (NY) 00-0029585 14927 #> 48 Ponchatoula (LA) 00-0035923 4046605 #> 49 Cypress Creek (TX) 00-0033635 3043197 #> 50 Southwest DeKalb (GA) 00-0032820 2576809 #> 51 Gonzaga Prep (WA) 00-0036381 4035875 #> 52 Olathe North (KS) 00-0036356 4035462 #> 53 Troy (CA) 00-0028946 15241 #> 54 Central (KY) 00-0027686 13292 #> 55 Neville (LA) 00-0036373 4035452 #> 56 Pago Pago (ASM) 00-0024338 9709 #> 57 West Oak (SC) 00-0022824 5713 #> 58 Allen (TX) 00-0035228 3917315 #> 59 Marian Central Catholic (IL) 00-0035752 3040206 #> 60 Chandler (AZ) 00-0031589 2577189 #> 61 Hillgrove (GA) 00-0033118 2979843 #> 62 Central Dauphin East (PA) 00-0034681 3119195 #> 63 Notre Dame (CA) 00-0033797 3052143 #> 64 Wylie East (TX) 00-0036383 4242873 #> 65 Saguaro (AZ) 00-0032577 2978124 #> 66 Bishop McNamara (IL) 00-0035924 4039274 #> 67 Palmdale (CA) 00-0032168 2971605 #> 68 West Orange-Stark (TX) 00-0035532 3859100 #> 69 Bellevue (WA) 00-0033890 3127287 #> 70 George Bush (TX) 00-0036363 3914630 #> 71 Mexia (TX) 00-0029316 15035 #> 72 Western Tech (MD) 00-0035317 3120434 #> 73 Sycamore (OH) 00-0032528 2576585 #> 74 St. Thomas Aquinas (FL) 00-0028001 13998 #> 75 Mallard Creek (NC) 00-0032222 2971048 #> 76 Freedom (CA) 00-0033258 3052166 #> 77 Hinsdale Central (IL) 00-0035067 3115981 #> 78 Manchester (CT) 00-0033080 2566659 #> 79 Hoover (AL) 00-0035092 3917292 #> 80 Waconia (MN) 00-0031558 2970726 #> 81 Shanley (ND) 00-0034011 4212989 #> 82 Warren Central (IN) 00-0033604 4198679 #> 83 Palo Alto (CA) 00-0035287 3124537 #> 84 Southmoore (OK) 00-0033449 3894883 #> 85 Cheraw (SC) 00-0030300 16172 #> 86 Mayfield (OH) 00-0035527 3914328 #> 87 D.W. Daniel (SC) 00-0030564 15795 #> 88 Narbonne (CA) 00-0035491 3124369 #> 89 Midway (TX) 00-0036019 4373937 #> 90 Des Moines East (IA) 00-0034660 4048717 #> 91 Holy Angels (MN) 00-0022921 5528 #> 92 Saguaro (AZ) 00-0034775 3895856 #> 93 Danville (IL) 00-0034487 3122168 #> 94 San Marcos (CA) 00-0026997 12616 #> 95 Cypress Ridge (TX) 00-0035051 3126302 #> 96 Miami Southridge (FL) 00-0030792 17211 #> 97 Varnado (LA) 00-0035774 4360643 #> 98 Twiggs County (GA) 00-0031380 16718 #> 99 Braden River (FL) 00-0032592 2982866 #> 100 Westlake (GA) 00-0036285 4239995 #> 101 Brophy (AZ) 00-0034357 3915437 #> 102 Junipero Serra (CA) 00-0035783 4048718 #> 103 Thurgood Marshall (TX) 00-0035255 3925358 #> 104 Mainland (FL) 00-0031181 16882 #> 105 General McLane (PA) 00-0030541 15881 #> 106 Gainesville (FL) 00-0036405 3915122 #> 107 Buena Park (CA) 00-0036302 3858276 #> 108 South Sumter (FL) 00-0032382 3054962 #> 109 Grover Cleveland (NY) 00-0030387 15936 #> 110 Lakewood (FL) 00-0032052 2980100 #> 111 St. John Bosco (CA) 00-0034154 3134315 #> 112 McIntosh County Academy (GA) 00-0028024 14020 #> 113 Immokalee (FL) 00-0034363 3051376 #> 114 Crete-Monee (IL) 00-0035004 3124015 #> 115 Rockdale County (GA) 00-0031583 2576492 #> 116 Barberton (OH) 00-0035265 4411771 #> 117 Desert Mountain (AZ) 00-0031947 2517230 #> 118 Greenville (AL) 00-0036291 4035494 #> 119 Charter Oak (CA) 00-0030968 17315 #> 120 Hephzibah (GA) 00-0027963 13993 #> 121 Southfield-Lathrup (MI) 00-0032405 2587711 #> 122 Don Bosco Prep (NJ) 00-0036295 4044138 #> 123 Shepherd Hill (MA) 00-0035630 3672833 #> 124 Ridgewood (NJ) 00-0033702 3049899 #> 125 Prince of Peace Christian (TX) 00-0034921 3048898 #> 126 Maury (VA) 00-0029955 16449 #> 127 Vacaville (CA) 00-0036300 4243009 #> 128 Jesuit (LA) 00-0032388 2976545 #> 129 Timpview (UT) 00-0033298 3055105 #> 130 Lincoln Prep (MO) 00-0033880 3051852 #> 131 Babylon (NY) 00-0035008 3120810 #> 132 St. John's (SC) 00-0031624 3137087 #> 133 John Burroughs (MO) 00-0034413 3050073 #> 134 Carrollton (GA) 00-0028845 15151 #> 135 Armwood (FL) 00-0036319 3916449 #> 136 Penn (PA) 00-0026143 11237 #> 137 Cape Coral (FL) 00-0034131 3040535 #> 138 West Chester East (PA) 00-0022787 5615 #> 139 Gainesville (FL) 00-0035551 3886841 #> 140 Tarboro (NC) 00-0032241 2977644 #> 141 McGill-Toolen (AL) 00-0034378 3123969 #> 142 Belleville West (IL) 00-0033567 3125403 #> 143 Canisius (NY) 00-0035273 3123944 #> 144 Cajon (CA) 00-0033512 2976099 #> 145 Sylacauga (AL) 00-0033059 3045128 #> 146 Cairo (GA) 00-0030543 15874 #> 147 Cinnaminson (NJ) 00-0034140 3157727 #> 148 Elkins (TX) 00-0031279 16713 #> 149 Brashear (PA) 00-0029762 16247 #> 150 Fife (WA) 00-0035235 3127304 #> 151 Madison Southern (KY) 00-0028042 14099 #> 152 The Bolles School (FL) 00-0034830 3924365 #> 153 Cherry Creek (CO) 00-0034788 3118954 #> 154 Monarch (FL) 00-0034837 3925357 #> 155 St. Joseph's Prep (PA) 00-0035208 3917914 #> 156 Highland Springs (VA) 00-0035500 4037235 #> 157 Martinsburg (WV) 00-0035782 4366710 #> 158 Foley (AL) 00-0027944 13982 #> 159 Ravenwood (TN) 00-0035789 4052137 #> 160 Cardinal Gibbons (FL) 00-0034132 3126002 #> 161 Redemptorist (LA) 00-0034411 3115378 #> 162 Crete-Monee (IL) 00-0032951 3051889 #> 163 Deerfield Beach (FL) 00-0034646 3115255 #> 164 Reed (NV) 00-0034141 4037481 #> 165 Anderson (OH) 00-0031923 2516865 #> 166 Westlake (CA) 00-0035112 3863820 #> 167 Worthington Kilbourne (OH) 00-0032575 2576733 #> 168 Webb City (MO) 00-0035992 4035112 #> 169 McClymonds (CA) 00-0032165 2578378 #> 170 Francis Howell Central (MO) 00-0031331 16948 #> 171 Potomac (MD) 00-0032770 2976244 #> 172 Colton (CA) 00-0027965 13963 #> 173 Colony (CA) 00-0036124 4027919 #> 174 Long Beach Poly (CA) 00-0034979 3912545 #> 175 Hoover (AL) 00-0033281 3126356 #> 176 Woodbury (NJ) 00-0034265 3054841 #> 177 Wichita South (KS) 00-0034388 3047188 #> 178 Oakleaf (FL) 00-0035422 3915255 #> 179 Peachtree Ridge (GA) 00-0036127 NA #> 180 Whitehouse (TX) 00-0035485 3914477 #> 181 South Fort Myers (FL) 00-0032454 3045130 #> 182 Rockwall-Heath (TX) 00-0034277 3929846 #> 183 Globe Tech (NY) 00-0033046 3115914 #> 184 Stephenson (GA) 00-0036076 3915186 #> 185 Friendship Collegiate Academy (DC) 00-0033123 3053044 #> 186 Beaver Local (OH) 00-0029586 14964 #> 187 McKinney North (TX) 00-0036130 4035245 #> 188 Stone Bridge (VA) 00-0036191 3895837 #> 189 Pelham (AL) 00-0035518 3115492 #> 190 Longview (TX) 00-0036081 3915837 #> 191 Denver South (CO) 00-0026190 11284 #> 192 <NA> 00-0035131 3125872 #> 193 North Fort Myers (FL) 00-0030112 15973 #> 194 David Prouty (MA) 00-0033376 2975417 #> 195 T. Wingate Andrews (NC) 00-0027988 14018 #> 196 Kapaun Mt. Carmel Catholic (OK) 00-0034978 4037650 #> 197 <NA> 00-0035124 3912157 #> 198 Arrowhead (WI) 00-0036132 4046551 #> 199 Rockford (MI) 00-0032771 2576569 #> 200 Foley (AL) 00-0030505 15792 #> 201 East Mississippi (MS) 00-0036214 4242247 #> 202 Handley 00-0034281 3054842 #> 203 Westlake (TX) 00-0029597 15683 #> 204 Cypress Falls (TX) 00-0035103 3122141 #> 205 Iola-Scandinavia (WI) 00-0036157 4036153 #> 206 Pahokee (FL) 00-0028103 14202 #> 207 Livonia (LA) 00-0036323 4242207 #> 208 Marion (IL) 00-0035136 2579634 #> 209 West Feliciana (LA) 00-0035651 3122766 #> 210 John Tyler (TX) 00-0033283 3040037 #> 211 Walnut Ridge (OH) 00-0036280 4040615 #> 212 St. Thomas Aquinas (FL) 00-0034881 3042445 #> 213 Waynesville (MO) 00-0028932 15264 #> 214 West Bloomfield (MI) 00-0032415 3961466 #> 215 Timber Creek (FL) 00-0034787 3060403 #> 216 Brookwood (GA) 00-0035408 3915184 #> 217 Evangelical Christian (TN) 00-0027557 13848 #> 218 Rockwood Summit (MO) 00-0030511 15875 #> 219 Neville (LA) 00-0031346 16857 #> 220 Boone (FL) 00-0034684 3054971 #> 221 Seward (NE) 00-0024417 9789 #> 222 Hallandale (FL) 00-0035993 4035671 #> 223 Boynton Beach (FL) 00-0034796 3916387 #> 224 Copperas Cove (TX) 00-0029665 14875 #> 225 Briar Woods (VA) 00-0035146 3116172 #> 226 Southwestern Academy (MI) 00-0027966 13981 #> 227 Crestwood (SC) 00-0036457 NA #> 228 Tottenville (NY) 00-0034184 3051926 #> 229 La Grange (TX) 00-0036158 4241985 #> 230 Booker T. Washington (OK) 00-0034975 4038441 #> 231 Folsom (CA) 00-0031559 2577139 #> 232 Richard J. Reynolds (NC) 00-0027539 13845 #> 233 King's Fork (VA) 00-0033294 3045463 #> 234 Albemarle (NC) 00-0034699 3039713 #> 235 Assumption (LA) 00-0030046 16004 #> 236 Huffman (AL) 00-0026982 12622 #> 237 Gorman (NV) 00-0032965 2980153 #> 238 Peachtree Ridge (GA) 00-0034752 3116370 #> 239 Shadle Park (WA) 00-0031621 2517074 #> 240 Trabuco Hills (CA) 00-0036154 3915136 #> 241 Desert Mountain (AZ) 00-0034753 3116365 #> 242 Minster (OH) 00-0036129 3915400 #> 243 Klein (TX) 00-0031690 2511973 #> 244 High Point Regional (NJ) 00-0031598 2574591 #> 245 Bishop Gorman (NV) 00-0031035 17348 #> 246 Providence Catholic (IL) 00-0035703 3932423 #> 247 Cibolo Steele (TX) 00-0035126 4043161 #> 248 Lufkin (TX) 00-0027902 13215 #> 249 Thomas Jefferson (FL) 00-0032398 2576581 #> 250 DeSoto (TX) 00-0036133 3916204 #> 251 North Shore (TX) 00-0031511 2515962 #> 252 Chaminade-Madonna (FL) 00-0035662 4241372 #> 253 Tampa Bay Tech (FL) 00-0034406 3728254 #> 254 Mitchell (TN) 00-0036125 3909416 #> 255 Crenshaw (CA) 00-0031060 16945 #> 256 Coconut Creek (FL) 00-0035819 4040628 #> 257 Sachse (TX) 00-0036331 4039050 #> 258 Muskegon Heights (MI) 00-0030663 17258 #> 259 St. Michael's Academy (TX) 00-0031936 2514122 #> 260 Archbishop Wood (PA) 00-0035382 3929631 #> 261 American Fork (UT) 00-0030011 16385 #> 262 Green Oaks (LA) 00-0033884 3042717 #> 263 Greenwood (SC) 00-0029285 15124 #> 264 Copperas Cove (TX) 00-0032735 2971734 #> 265 Woodland Hills (PA) 00-0032617 2576665 #> 266 Cornell (PA) 00-0036166 3895791 #> 267 Consortium Prep (MI) 00-0035357 3916577 #> 268 Fort Osage (MO) 00-0031394 16898 #> 269 Tucson (AZ) 00-0034514 3133440 #> 270 Eufaula (AL) 00-0034391 3057524 #> 271 Sheldon (CA) 00-0034376 3121003 #> 272 Miami Killian (FL) 00-0035290 3672862 #> 273 Fostoria (OH) 00-0030090 15960 #> 274 Camden County (GA) 00-0035306 3957672 #> 275 Austin (TX) 00-0027881 13245 #> 276 Brophy (AZ) 00-0031300 16751 #> 277 Edwardsville (IL) 00-0036192 4240585 #> 278 Countryside (FL) 00-0034511 3051371 #> 279 Tarrant (AL) 00-0028339 14320 #> 280 St. Thomas Aquinas (FL) 00-0033408 2980098 #> 281 Bingham (UT) 00-0030455 15802 #> 282 Woodland Hills (PA) 00-0032416 2577078 #> 283 Millard West (NE) 00-0034782 3117255 #> 284 Omaha North (NE) 00-0032660 2982857 #> 285 <NA> 00-0035560 4262273 #> 286 North Pike (MS) 00-0032967 2971883 #> 287 Greenville (MI) 00-0032518 3057899 #> 288 Westfield (TX) 00-0035230 4039303 #> 289 Western (FL) 00-0032151 2512577 #> 290 Hudson (OH) 00-0030066 15879 #> 291 Cedar Falls (IA) 00-0034505 3040166 #> 292 Dutch Fork (SC) 00-0036162 3917232 #> 293 Damien (CA) 00-0034909 3127313 #> 294 Dan River (VA) 00-0034673 3929950 #> 295 Trinity Christian Academy (FL) 00-0034430 3895831 #> 296 Cass Tech (MI) 00-0035202 4240528 #> 297 New Albany (OH) 00-0033147 3051398 #> 298 Talladega (AL) 00-0034933 3127075 #> 299 Centennial (TN) 00-0035352 4035232 #> 300 Kimberly (WI) 00-0030463 15964 #> 301 St. Joseph (CT) 00-0032366 2976249 #> 302 Hueytown (AL) 00-0030197 16475 #> 303 Dr. Phillips (FL) 00-0033571 3046287 #> 304 Buford (GA) 00-0032497 2976549 #> 305 Mayfair (CA) 00-0034721 4039396 #> 306 Mater Dei (CA) 00-0030533 15948 #> 307 Houston County (GA) 00-0036197 4240689 #> 308 Prosper (TX) 00-0033550 3052600 #> 309 Firebaugh (CA) 00-0034857 3918298 #> 310 Hallandale (FL) 00-0036251 4035676 #> 311 Daphne (AL) 00-0032209 2976516 #> 312 Miami Central (FL) 00-0031285 16944 #> 313 Deer Valley (CA) 00-0028063 14167 #> 314 Royal Grammar (GBR) 00-0035728 4420894 #> 315 North Stanly (NC) 00-0036188 4040629 #> 316 American Heritage (FL) 00-0035250 4040761 #> 317 Astoria (OR) 00-0030114 15979 #> 318 Holy Cross (NY) 00-0031870 2519038 #> 319 Montgomery Academy (AL) 00-0036189 3917159 #> 320 Wenatchee (WA) 00-0036185 3886808 #> 321 Pineville (LA) 00-0035238 3707061 #> 322 Rahway (NJ) 00-0033904 3051324 #> 323 Lake Dallas (TX) 00-0031567 2514244 #> 324 Grissom (AL) 00-0033816 2977954 #> 325 James Bowie (TX) 00-0029709 15724 #> 326 Brentwood Academy (TN) 00-0035689 3930086 #> 327 Downingtown East (PA) 00-0032214 2582410 #> 328 Carmel (IN) 00-0035322 3125999 #> 329 Westland (OH) 00-0036187 4039505 #> 330 Powell (TN) 00-0028097 14215 #> 331 Don Bosco Prep (NJ) 00-0035308 3122818 #> 332 Reserve (LA) East St. John 00-0032945 3115315 #> 333 American Heritage (FL) 00-0033466 3128724 #> 334 South Elgin (IL) 00-0031787 3085107 #> 335 Good Counsel (MD) 00-0031588 2976212 #> 336 Homestead (FL) 00-0031051 16804 #> 337 Grandview (CO) 00-0033633 3043841 #> 338 La Costa Canyon (CA) 00-0030085 16016 #> 339 Little Elm (TX) 00-0029000 15349 #> 340 Spring Valley (SC) 00-0027691 13226 #> 341 Seminole (FL) 00-0036196 4243537 #> 342 Berean Christian (CA) 00-0036165 4242540 #> 343 Council (ID) 00-0031349 16847 #> 344 Jordan (UT) 00-0030869 17196 #> 345 Plano (TX) 00-0035958 3928936 #> 346 Riverdale (LA) 00-0034356 3843769 #> 347 East Orange (NJ) 00-0033551 3943270 #> 348 Edison (CA) 00-0029690 14989 #> 349 Greer (SC) 00-0036299 4046679 #> 350 The Ensworth School (TN) 00-0033289 3051929 #> 351 Charlotte (FL) 00-0036315 4046353 #> 352 Vanguard (FL) 00-0034398 3121552 #> 353 Eastern (PA) 00-0032379 3040506 #> 354 Imani Christian (PA) 00-0036283 4241889 #> 355 East Coast Prep (NJ) 00-0035950 4035290 #> 356 Camden (NJ) 00-0034496 3138733 #> 357 North Fort Myers (FL) 00-0031261 16877 #> 358 Bishop Maginn (NY) 00-0035095 3126238 #> 359 Fishers (IN) 00-0036293 4043169 #> 360 Nacogdoches (TX) 00-0035082 3139108 #> 361 University Christian (FL) 00-0034382 3115456 #> 362 Dougherty Valley (CA) 00-0034559 4035726 #> 363 Spring Valley (SC) 00-0035257 3126362 #> 364 Shiloh (GA) 00-0032448 2972362 #> 365 Chancellor (VA) 00-0036288 4259594 #> 366 American Heritage (FL) 00-0035713 4035631 #> 367 Stephenson (GA) 00-0034223 3051766 #> 368 Lambeth College (GBR) 00-0031500 3734467 #> 369 Raleigh (MS) 00-0032578 2577392 #> 370 Quince Orchard (MD) 00-0031105 17071 #> 371 Lanier (GA) 00-0036220 4035495 #> 372 Lake Park West (IL) 00-0036170 4046721 #> 373 Robinson (FL) 00-0034461 3051369 #> 374 Central (IN) 00-0030448 15862 #> 375 Spring (TX) 00-0036311 4035407 #> 376 Dacula (GA) 00-0033296 4212884 #> 377 Brockton (MA) 00-0035344 3915304 #> 378 Central (FL) 00-0032149 2576639 #> 379 Lakeside (GA) 00-0035952 3916943 #> 380 Ridge View (SC) 00-0035300 4259480 #> 381 Central (NE) 00-0031734 3163375 #> 382 Carl Sandburg (IL) 00-0031353 16741 #> 383 North Stafford (VA) 00-0035192 3124084 #> 384 Wesleyan (GA) 00-0035772 NA #> 385 Xavier (OH) 00-0029248 14938 #> 386 West Side (NJ) 00-0029212 15070 #> 387 Bloomfield (CT) 00-0029061 15373 #> 388 Grant Union (CA) 00-0031550 2978313 #> 389 Lake Gibson (FL) 00-0031120 17401 #> 390 Friendship Collegiate Academy (DC) 00-0034396 3053047 #> 391 Wylie (TX) 00-0036432 3928928 #> 392 DeSoto (TX) 00-0035954 3917673 #> 393 Nashville Christian (TN) 00-0035929 4035177 #> 394 Brophy Prep (AZ) 00-0026027 11759 #> 395 St. Thomas Aquinas (FL) 00-0031363 17475 #> 396 A.C. Flora 00-0036320 3924357 #> 397 Miami Northwestern (FL) 00-0031237 16728 #> 398 Elizabeth (NJ) 00-0033275 3051308 #> 399 Davidson Day School (NC) 00-0035251 3115252 #> 400 Decatur Central (IN) 00-0036433 3791110 #> 401 Trinity (KY) 00-0034578 3116642 #> 402 Kecoughtan (VA) 00-0034164 4261020 #> 403 Mundy's Mill (GA) 00-0035957 NA #> 404 Valor Christian (CO) 00-0033280 3117251 #> 405 Stephenson (GA) 00-0032063 3025433 #> 406 Citrus (FL) 00-0036037 4044133 #> 407 Broughton (NC) 00-0032403 2577740 #> 408 Lee (AL) 00-0034571 3123303 #> 409 Allen (TX) 00-0035694 4047661 #> 410 Okemos (MI) 00-0033284 2973051 #> 411 George Bush (TX) 00-0027859 13242 #> 412 New Trier (IL) 00-0035613 3912487 #> 413 Digital Harbor (MD) 00-0034365 4045305 #> 414 Archbishop Wood (PA) 00-0033720 2980120 #> 415 Donaldsonville (LA) 00-0036438 4035426 #> 416 Loveland (OH) 00-0035956 3916749 #> 417 Cardinal Spellman (NY) 00-0031484 2531358 #> 418 Dowling Catholic (IA) 00-0033937 2977629 #> 419 Cleveland Heights (OH) 00-0033573 3042417 #> 420 Laurel (MS) 00-0035947 3917166 #> 421 New London Spicer (MN) 00-0034052 4294520 #> 422 Havelock (NC) 00-0033111 3048897 #> 423 St. John Vianney (NJ) 00-0034922 3039968 #> 424 Plantation (FL) 00-0032688 2574808 #> 425 Erasmus Hall (NY) 00-0033282 3121427 #> 426 Jefferson (FL) 00-0035548 3138760 #> 427 Imhotep Institute Charter (PA) 00-0034827 3915416 #> 428 Neptune (NJ) 00-0034317 3046401 #> 429 American Heritage (FL) 00-0032609 2591718 #> 430 Abilene (KS) 00-0032768 2577346 #> 431 Good Counsel (MD) 00-0035062 3129307 #> 432 Etowah (GA) 00-0028075 14139 #> 433 Tucker (GA) 00-0035696 3916126 #> 434 Lawrence Central (IN) 00-0032849 2578317 #> 435 Pittsburg (CA) 00-0035293 3860287 #> 436 Mount Saint Joseph (MD) 00-0031041 16715 #> 437 Central East (CA) 00-0036292 4243253 #> 438 Northwestern (FL) 00-0033103 3051921 #> 439 Plantation (FL) 00-0033612 3045278 #> 440 Oswego (IL) 00-0034607 4294837 #> 441 North Clayton (GA) 00-0036307 4036651 #> 442 Friendship Collegiate Academy (DC) 00-0033545 3115257 #> 443 Kimball (TX) 00-0028924 15235 #> 444 Columbus (FL) 00-0032774 2969944 #> 445 Spring (TX) 00-0032786 3960454 #> 446 Massaponax (VA) 00-0032790 2566034 #> 447 Lincoln Park Academy (FL) 00-0036205 4257195 #> 448 Fort Dorchester (SC) 00-0027952 13984 #> 449 <NA> 00-0035064 NA #> 450 Billy Ryan (TX) 00-0032265 2969921 #> 451 South Grand Prairie (TX) 00-0032667 2574891 #> 452 East St. Louis (IL) 00-0035302 3924310 #> 453 Lorne Park Secondary (CAN) 00-0031177 16831 #> 454 Del Campo (CA) 00-0029657 14984 #> 455 Peoria (IL) 00-0036204 4376288 #> 456 Warren G. Harding (OH) 00-0034347 3894849 #> 457 Choate Rosemary Hall (CT) 00-0036202 4032052 #> 458 Westside (TX) 00-0032384 2972304 #> 459 Selma (AL) 00-0036318 3912245 #> 460 Montgomery Bell Academy (TN) 00-0035061 3129290 #> 461 Chartiers Valley (PA) 00-0030094 16035 #> 462 Belleville (MI) 00-0036317 4241422 #> 463 St. Joseph's Academy (FL) 00-0031203 17427 #> 464 Sunset (FL) 00-0034173 4034949 #> 465 Macon County (GA) 00-0034874 3915189 #> 466 Cedar Hill (TX) 00-0036305 3917016 #> 467 South Warren (KY) 00-0034372 3124779 #> 468 West Monroe (LA) 00-0030558 15805 #> 469 Tucker (GA) 00-0031838 2577145 #> 470 Leesburg (FL) 00-0029577 15074 #> 471 McDonogh (MD) 00-0034801 3128303 #> 472 Westwood (FL) 00-0031040 16710 #> 473 Foothill (CA) 00-0032789 3116368 #> 474 Punahou (HI) 00-0030278 15867 #> 475 Weber (UT) 00-0028284 14572 #> 476 Maloney (CT) 00-0030070 15846 #> 477 Hodgson Vo-Tech (DE) 00-0034387 3117922 #> 478 Friendship Collegiate Academy (DC) 00-0031551 2969924 #> 479 Southeast Raleigh (NC) 00-0031193 16952 #> 480 Palm Beach Central (FL) 00-0031079 16863 #> 481 Mentor (OH) 00-0033869 3039707 #> 482 Westlake (TX) 00-0029567 14877 #> 483 Kingsburg (CA) 00-0030151 16252 #> 484 Central Catholic (OR) 00-0034597 3127335 #> 485 Auburndale (FL) 00-0036208 4042808 #> 486 Bunn (NC) 00-0033556 3066158 #> 487 Mount Healthy (OH) 00-0035685 4035538 #> 488 Princeton (OH) 00-0030414 16020 #> 489 Boyd Anderson (FL) 00-0033784 3054847 #> 490 Richwoods (IL) 00-0027743 13419 #> 491 New Rochelle (NY) 00-0032797 2979595 #> 492 Sheepshead Bay (NY) 00-0033631 3060134 #> 493 Concord (IN) 00-0032766 2979499 #> 494 San Leandro (CA) 00-0031095 16848 #> 495 Hargrave Military Academy (VA) 00-0029528 15096 #> 496 Matignon (MA) 00-0036210 4362648 #> 497 Oak Hill Academy (VA) 00-0035756 2982484 #> 498 Shaler (PA) 00-0032986 2970262 #> 499 St. Viator (IL) 00-0036290 4258595 #> 500 Roseville (MN) 00-0035562 3940587 #> 501 Charis Prep (NC) 00-0027696 13232 #> 502 Jacksonville (AR) 00-0030155 16318 #> 503 Glenville (OH) 00-0025396 10453 #> 504 Washington (CA) 00-0031763 2580216 #> 505 Madison Memorial (WI) 00-0034633 3045164 #> 506 Deerfield Beach (FL) 00-0035590 4035015 #> 507 Ed White (FL) 00-0034426 4035019 #> 508 <NA> 00-0033815 3043134 #> 509 Lakewood (FL) 00-0033957 3059918 #> 510 Gadsden City (AL) 00-0036309 4040655 #> 511 Tucker (GA) 00-0028114 14100 #> 512 Hinsdale Central (IL) 00-0035074 3909300 #> 513 Christian Brothers (TN) 00-0034353 3050487 #> 514 Orchard Lake St. Mary's (MI) 00-0031428 16799 #> 515 Northwestern (SC) 00-0030578 15807 #> 516 North Shore (TX) 00-0030781 17172 #> 517 Andale (KS) 00-0031779 2512172 #> 518 Fitch (OH) 00-0034762 3051407 #> 519 Bradford (WI) 00-0031546 2576283 #> 520 Central (LA) 00-0034998 3126245 #> 521 St. Genevieve (CA) 00-0032757 3042619 #> 522 Immokalee (FL) 00-0032389 3045120 #> 523 Ozen (TX) 00-0034540 3115308 #> 524 Robichaud (MI) 00-0034683 3042785 #> 525 Wheatley (TX) 00-0033107 3061106 #> 526 Helix (CA) 00-0034446 3125356 #> 527 Andre Agassi Prep (NV) 00-0032783 2575171 #> 528 Columbus (FL) 00-0035799 4240624 #> 529 Calvary Baptist Academy (LA) 00-0033791 2982632 #> 530 Snider (IN) 00-0034675 3919512 #> 531 Milton (GA) 00-0033463 3051911 #> 532 Grandview (MO) 00-0035600 3116082 #> 533 Archbishop Moeller (OH) 00-0034834 3121416 #> 534 Harrison (MI) 00-0036341 4039029 #> 535 Lawrence (KS) 00-0035513 4037633 #> 536 Grandview (MO) 00-0031713 2508191 #> 537 Highland Regional (NJ) 00-0029284 14994 #> 538 St. Thomas Aquinas (FL) 00-0027720 13311 #> 539 <NA> 00-0030449 15844 #> 540 Clayton Valley (CA) 00-0034731 3915388 #> 541 Petersburg (VA) 00-0032043 2515319 #> 542 Garland (TX) 00-0036310 4046557 #> 543 Los Alamitos (CA) 00-0032549 3047571 #> 544 <NA> 00-0034441 3128752 #> 545 Marcus (TX) 00-0035400 3895869 #> 546 Plymouth (MI) 00-0035266 4040622 #> 547 Timpview (UT) 00-0031410 16801 #> 548 Belleville West (IL) 00-0035145 3821683 #> 549 Klein (TX) 00-0029421 15091 #> 550 Thomasville (NC) 00-0036298 3917142 #> 551 High Point Central (NC) 00-0035697 3116724 #> 552 Anderson (FL) 00-0028278 14519 #> 553 Hilliard Davidson (OH) 00-0036314 3917992 #> 554 Maumelle (AR) 00-0034287 3112083 #> 555 Good Counsel (MD) 00-0036203 4040621 #> 556 Norman North (OK) 00-0033790 3052660 #> 557 Natrona County (WY) 00-0036294 3918330 #> 558 Southern Regional (NJ) 00-0025630 10686 #> 559 Ottawa-Glandorf (OH) 00-0035472 3929801 #> 560 Buena Park (CA) 00-0033347 2979632 #> 561 Grimsley (NC) 00-0032424 2977670 #> 562 Lutheran (MO) 00-0035260 3128815 #> 563 Vancouver College Prep (CAN) 00-0031619 2580666 #> 564 Archbishop McNicholas (OH) 00-0027103 12669 #> 565 La Salle College (PA) 00-0035163 3915776 #> 566 Athens (OH) 00-0036442 3915511 #> 567 Paradise Valley (AZ) 00-0035652 3042876 #> 568 Gonzaga College (DC) 00-0032784 2577128 #> 569 Fayetteville (AR) 00-0032434 2574511 #> 570 C.E. King (TX) 00-0035291 4035222 #> 571 Timber Creek (FL) 00-0035760 3693033 #> 572 Hendrickson (TX) 00-0033526 3116389 #> 573 Freedom (CA) 00-0033897 3116385 #> 574 St. Thomas Aquinas (FL) 00-0030456 15826 #> 575 Early County (GA) 00-0030471 15877 #> 576 Ridgeland (GA) 00-0032939 3051388 #> 577 Grant Union (CA) 00-0034533 3046382 #> 578 Eleanor Roosevelt (MD) 00-0035295 3915532 #> 579 Folsom (CA) 00-0035629 4040726 #> 580 St. Thomas Aquinas (FL) 00-0031622 2576789 #> 581 Royal Palm Beach (FL) 00-0034951 3915106 #> 582 Northside (LA) 00-0035395 3914371 #> 583 Archbishop Shaw (LA) 00-0033338 3040470 #> 584 Medina (OH) 00-0033798 2972331 #> 585 North Gwinnett (GA) 00-0032134 2574576 #> 586 Newport (WA) 00-0035631 3127310 #> 587 Tarpon Springs (FL) 00-0035771 3923392 #> 588 Summerville (SC) 00-0027942 13983 #> 589 St. Augustine (LA) 00-0035399 3699902 #> 590 Wharton (FL) 00-0034686 3921564 #> 591 St. John's (DC) 00-0035769 3919557 #> 592 Oak Ridge (TN) 00-0036410 4239993 #> 593 Darlington (WI) 00-0032543 2977800 #> 594 Clairton (PA) 00-0033009 3045144 #> 595 DuSable (IL) 00-0033114 3123986 #> 596 Hart (CA) 00-0035341 3931391 #> 597 Long Beach Jordan (CA) 00-0033460 3052177 #> 598 Akron Central (NY) 00-0030076 16001 #> 599 Petal (MS) 00-0035005 3691031 #> 600 JSerra Catholic (CA) 00-0036236 4039016 #> 601 Wakefield (MA) 00-0032567 2566591 #> 602 Lehigh Senior (FL) 00-0034088 4036898 #> 603 Calvary Baptist Academy (LA) 00-0035638 4035437 #> 604 Luther Burbank (CA) 00-0031097 16927 #> 605 La Marque (TX) 00-0033467 2971632 #> 606 Macedonia Nordonia (OH) 00-0034856 3915535 #> 607 DeSoto (TX) 00-0036114 4038437 #> 608 Salpointe Catholic (AZ) 00-0034562 3153653 #> 609 Yorktown (VA) 00-0034355 3116679 #> 610 River Hill (MD) 00-0031548 2511523 #> 611 Allen Academy (MI) 00-0034488 4334405 #> 612 IMG Academy (FL) 00-0036282 4242208 #> 613 Valencia (CA) 00-0033554 3052125 #> 614 Smithson Valley (TX) 00-0027914 13939 #> 615 Miami Killian (FL) 00-0034977 3917852 #> 616 Hamshire-Fannett (TX) 00-0033403 2981511 #> 617 Salem Hills (UT) 00-0035404 3912553 #> 618 Gulliver Prep (FL) 00-0035281 4037459 #> 619 St. Anthony (CA) 00-0036216 4048257 #> 620 McKinley (OH) 00-0035449 4046907 #> 621 Arlington Martin (TX) 00-0033868 3122132 #> 622 Tracy (CA) 00-0036119 3120964 #> 623 American (FL) 00-0029693 14982 #> 624 Webster Groves (MO) 00-0027958 13965 #> 625 Westside (TX) 00-0036266 4039052 #> 626 Gateway Tech (MO) 00-0030573 15811 #> 627 James Madison (TX) 00-0033469 3046343 #> 628 Pasco (FL) 00-0033590 3043112 #> 629 Warren Central (IN) 00-0033010 2976194 #> 630 Ragsdale (NC) 00-0033905 3050122 #> 631 Santa Margarita Catholic (CA) 00-0034311 3040499 #> 632 Gretna (NE) 00-0032956 2974317 #> 633 Long Beach Wilson (CA) 00-0031426 16740 #> 634 Central Islip (NY) 00-0035463 4040626 #> 635 Liberty (VA) 00-0034399 3045474 #> 636 North Forsyth (GA) 00-0034165 3049575 #> 637 Westfield (TX) 00-0036066 3676763 #> 638 Brownwood (TX) 00-0034479 3052413 #> 639 Jupiter (FL) 00-0030850 17082 #> 640 Carver (AL) 00-0035144 4040983 #> 641 Taft (CA) 00-0028180 14214 #> 642 Blue Springs (MO) 00-0033973 3125073 #> 643 East Nashville (TN) 00-0036276 4242206 #> 644 Lincoln (IA) 00-0034811 3116667 #> 645 Heritage (CA) 00-0035646 3138834 #> 646 Lamar (SC) 00-0033121 2576489 #> 647 Oxford (AL) 00-0034500 3131775 #> 648 Hillsborough (FL) 00-0029008 15379 #> 649 Waco (TX) 00-0033066 3051775 #> 650 Leonardtown (MD) 00-0035042 3936185 #> 651 Downingtown East (PA) 00-0034369 3049872 #> 652 Wylie (TX) 00-0028986 15168 #> 653 Lake Travis (TX) 00-0034855 3052587 #> 654 Oak Park (MI) 00-0034808 3915381 #> 655 <NA> 00-0035546 3929828 #> 656 Cedartown (GA) 00-0034791 3128720 #> 657 Immokalee (FL) 00-0035628 3139602 #> 658 South (OH) 00-0033923 3059915 #> 659 Union City (TN) 00-0036118 3914450 #> 660 Palo Duro (TX) 00-0034255 3046700 #> 661 Liberty Christian Academy (VA) 00-0036109 3910402 #> 662 Florida State University School (FL) 00-0034779 3859006 #> 663 Edgewater (FL) 00-0032888 2976639 #> 664 Lafayette (KY) 00-0036267 4241482 #> 665 Carver (GA) 00-0029963 16076 #> 666 Jacksonville (IL) 00-0035355 3116135 #> 667 St. Aloysius (MS) 00-0036113 NA #> 668 Butler (NC) 00-0031921 2509370 #> 669 Whitman (MD) 00-0033995 2976213 #> 670 Berkeley (SC) 00-0036120 4384564 #> 671 North County (MO) 00-0034991 3910156 #> 672 Plainwell (MI) 00-0033057 2979534 #> 673 John Milledge Academy (GA) 00-0036232 4040774 #> 674 De La Salle (CA) 00-0032392 3043275 #> 675 Jamestown (NY) 00-0035039 3948283 #> 676 Cedar Grove (NJ) 00-0033885 3123076 #> 677 Wakulla (FL) 00-0034532 3128439 #> 678 St. John Vianney (MO) 00-0035817 3924367 #> 679 Boyd Anderson (FL) 00-0033266 2971830 #> 680 Pleasure Ridge Park (KY) 00-0033911 3059760 #> 681 Rock Island (IL) 00-0034258 3040137 #> 682 George Washington (WV) 00-0033562 3039725 #> 683 Isidore Newman (LA) 00-0031235 16733 #> 684 Mendenhall (MS) 00-0034854 3047876 #> 685 Lutcher (LA) 00-0031382 16790 #> 686 Dorsey (CA) 00-0033094 2578369 #> 687 Cass Tech (MI) 00-0036233 4258195 #> 688 Mesquite (TX) 00-0032977 3042910 #> 689 Yazoo County (MS) 00-0035104 4249496 #> 690 Choctaw County (MS) 00-0036110 3917569 #> 691 Bellevue (WA) 00-0032877 2573307 #> 692 Amherst (WI) 00-0036376 4035788 #> 693 Big Foot (WI) 00-0030546 15793 #> 694 Walsh Jesuit (OH) 00-0032354 2566609 #> 695 Lake Worth (FL) 00-0029278 15108 #> 696 Varina (VA) 00-0032438 2979655 #> 697 Calhoun City (MS) 00-0035542 4243831 #> 698 Avalon School (MD) 00-0036361 4040966 #> 699 Hillsborough (FL) 00-0033047 2977756 #> 700 Carman-Ainsworth (MI) 00-0026280 11363 #> 701 Manhattan (KS) 00-0033222 2977689 #> 702 Oak Grove (CA) 00-0033548 3052101 #> 703 Linsly School (WV) 00-0031357 17474 #> 704 Cass Tech (MI) 00-0033928 3045207 #> 705 Ely (FL) 00-0032410 3042718 #> 706 IMG Academy (FL) 00-0035370 4035425 #> 707 West Monroe (LA) 00-0033579 3040572 #> 708 Jenks (OK) 00-0034736 3116387 #> 709 Paraclete (CA) 00-0033083 2573317 #> 710 Cleburne (TX) 00-0036372 3917006 #> 711 Raytown (MO) 00-0027945 13988 #> 712 Long Reach (MD) 00-0036029 3930024 #> 713 Silver Bluff (SC) 00-0031411 16802 #> 714 Kahuku (HI) 00-0036379 4035660 #> 715 Hamilton Southeastern (IN) 00-0032197 3040479 #> 716 North Shore (TX) 00-0034373 3928979 #> 717 Catholic Central (CAN) 00-0029641 14987 #> 718 Wooddale (TN) 00-0029688 14939 #> 719 Red Lion Christian Academy (DE) 00-0033598 3008150 #> 720 Suwannee (FL) 00-0035247 4042141 #> 721 Taft (CA) 00-0032871 2577278 #> 722 Natchez (MS) 00-0031636 2574009 #> 723 Hardaway (GA) 00-0035462 4241221 #> 724 Canada Prep Football Academy (CAN) 00-0036366 3892883 #> 725 Long Beach Poly (CA) 00-0029492 15653 #> 726 Bishop Chatard (IN) 00-0031402 16709 #> 727 Lake-Lehman (PA) 00-0035679 4033748 #> 728 Coppell (TX) 00-0034352 3821577 #> 729 Lincoln Pius X (NE) 00-0029621 14993 #> 730 Danville (IL) 00-0031999 2574282 #> 731 Salmon River (ID) 00-0034674 3138677 #> 732 Bishop Luers (IN) 00-0033052 3052896 #> 733 Lincoln Southeast (NE) 00-0035413 3116097 #> 734 Blackville-Hilda (SC) 00-0030761 17266 #> 735 Herriman (UT) 00-0036028 3932336 #> 736 Central (AZ) 00-0036137 NA #> 737 Upper St. Clair (PA) 00-0027663 13284 #> 738 Corrigan-Camden (TX) 00-0036030 4039075 #> 739 Notre Dame (CAN) 00-0023298 9349 #> 740 Woodridge (OH) 00-0036458 NA #> 741 Coosa (GA) 00-0028664 14723 #> 742 Lansing Catholic (MI) 00-0033662 2972515 #> 743 Katy (TX) 00-0027973 14012 #> 744 Pine-Richland (PA) 00-0036384 3895785 #> 745 Haughton (LA) 00-0033077 2577417 #> 746 Lake Travis (TX) 00-0031395 16809 #> 747 Melrose (TN) 00-0035261 3916148 #> 748 A.C. Reynolds (NC) 00-0036139 4038815 #> 749 Kingwood (TX) 00-0036033 4038539 #> 750 John Burroughs (MO) 00-0033045 3051392 #> 751 Woodlawn (LA) 00-0035301 3122135 #> 752 Noblesville (IN) 00-0035418 3929795 #> 753 Columbia (GA) 00-0033414 3048698 #> 754 Elmont (NY) 00-0034280 4034522 #> 755 First Coast (FL) 00-0035492 3895830 #> 756 UANL (MEX) 00-0036448 4686629 #> 757 North Gwinnett (GA) 00-0035416 3728250 #> 758 Colquitt County (GA) 00-0032145 2512504 #> 759 Rancho Verde (CA) 00-0027947 13978 #> 760 Salem (VA) 00-0034186 3120738 #> 761 Redemptorist (LA) 00-0031534 2577302 #> 762 Steele (TX) 00-0036036 3915834 #> 763 Tuttle (OK) 00-0033658 2991767 #> 764 Bingham (UT) 00-0034383 3117256 #> 765 Bishop Carroll (KS) 00-0032062 2514206 #> 766 Shepherd Hill Regional (MA) 00-0036032 4036275 #> 767 Pleasant Grove (CA) 00-0033315 2968204 #> 768 Sacred Heart-Griffin (IL) 00-0034867 3115928 #> 769 DeSoto (TX) 00-0034593 3122430 #> 770 White Station (TN) 00-0034418 4036335 #> 771 Pope John XXIII (NJ) 00-0033591 3121409 #> 772 Northwestern (FL) 00-0031544 2976499 #> 773 Monroe (GA) 00-0034764 4036348 #> 774 Foster (TX) 00-0036358 4241389 #> 775 Livonia (LA) 00-0036136 NA #> 776 West Side (IN) 00-0035417 3126095 #> 777 Gwynn Park (MD) 00-0036034 4032749 #> 778 Dutchtown (LA) 00-0036391 4035448 #> 779 Guyer (TX) 00-0034118 3040013 #> 780 St. Petersburg Catholic (FL) 00-0031185 16842 #> 781 Cy Woods High School (TX) 00-0031904 2515641 #> 782 H.D. Woodson (DC) 00-0036106 4037647 #> 783 Hogan Prep (MO) 00-0031991 2613234 #> 784 Columbus (GA) 00-0035862 4037216 #> 785 Harrison (MI) 00-0036390 3894830 #> 786 Governor Thomas Jefferson (MD) 00-0033568 2976259 #> 787 Westside (GA) 00-0027872 13254 #> 788 Trinity Christian Academy (FL) 00-0034603 3843234 #> 789 Tucker (GA) 00-0030228 16562 #> 790 Dixie County (FL) 00-0034744 3115250 #> 791 Germantown (PA) 00-0032958 2971248 #> 792 Central (TX) 00-0035227 3929850 #> 793 Oceanside (CA) 00-0034948 3117249 #> 794 Martin County (FL) 00-0032971 2969860 #> 795 Mequon Homestead (WI) 00-0031270 16837 #> 796 Sandalwood (FL) 00-0033782 3045377 #> 797 Waubonsie Valley (IL) 00-0035073 4422407 #> 798 Hillgrove (GA) 00-0034832 3116733 #> 799 Eaglecrest (CO) 00-0035557 3145343 #> 800 St. Ignatius (OH) 00-0035678 3915525 #> 801 Daniel (SC) 00-0031795 2576508 #> 802 Jefferson City (MO) 00-0030577 15816 #> 803 Columbia (FL) 00-0031170 16785 #> 804 Northwest Whitfield (GA) 00-0035519 3131784 #> 805 La Habra (CA) 00-0032463 3134288 #> 806 Weddington (NC) 00-0032138 2512544 #> 807 Hope (AR) 00-0036420 4035566 #> 808 Long Beach Poly (CA) 00-0028015 14047 #> 809 Leilehua (HI) 00-0036399 4040910 #> 810 Brenham (TX) 00-0034112 4038544 #> 811 Wiggins (CO) 00-0035702 3125082 #> 812 Marmion Academy (IL) 00-0032395 2576245 #> 813 North Penn (PA) 00-0029822 16339 #> 814 Archbishop Rummel (LA) 00-0036459 NA #> 815 St. Paul's (AL) 00-0029670 14932 #> 816 Alonso (FL) 00-0031956 2579601 #> 817 Dothan (AL) 00-0034954 3124634 #> 818 De Soto (TX) 00-0027940 13976 #> 819 East Lake (FL) 00-0036428 3919548 #> 820 Mays (GA) 00-0035615 3728310 #> 821 Archbishop Carroll (DC) 00-0031258 16761 #> 822 Wakulla (FL) 00-0029272 15075 #> 823 Decorah (IA) 00-0034368 3040150 #> 824 Plano (IL) 00-0033659 2974344 #> 825 Blue Springs South (MO) 00-0034956 2512419 #> 826 Warner (SD) 00-0036440 3930915 #> 827 Gainesville (GA) 00-0034887 2577712 #> 828 Danbury (FL) 00-0033452 2982304 #> 829 Cheyenne East (WY) 00-0035757 3925443 #> 830 Highlands Ranch (CO) 00-0029890 16377 #> 831 Starr's Mill (GA) 00-0030092 15928 #> 832 Lee's Summit (MO) 00-0035704 3924327 #> 833 Hagerty (FL) 00-0032436 2574630 #> 834 Shadle Park (WA) 00-0034955 3722362 #> 835 Little Rock Christian Academy (AR) 00-0035448 4035102 #> 836 Pike (IN) 00-0035912 3916721 #> 837 Denver South (CO) 00-0034109 3052117 #> 838 South View (NC) 00-0035427 3914534 #> 839 Bradford (WI) 00-0032144 2576434 #> 840 Imperial (CA) 00-0034838 3122672 #> 841 Iona Prep (NY) 00-0034085 3912343 #> 842 Columbia (FL) 00-0034111 3116602 #> 843 Higley (AZ) 00-0034929 3128773 #> 844 Downingtown (PA) 00-0033676 3059839 #> 845 Alexandria (LA) 00-0026814 13050 #> 846 Westlake (TX) 00-0034957 3123867 #> 847 Westlake (CA) 00-0033538 4035662 #> 848 North Gwinnett (GA) 00-0031417 16722 #> 849 Grant Union (CA) 00-0036024 3912573 #> 850 Waubonsie Valley (IL) 00-0034393 3045264 #> 851 Omaha South (NE) 00-0035644 4036131 #> 852 Pickerington North (OH) 00-0033564 3045225 #> 853 Sacred Heart Griffin (IL) 00-0036423 4035115 #> 854 Central (OH) 00-0032394 2576399 #> 855 Campbell County (WY) 00-0034932 3125402 #> 856 Plant (FL) 00-0034959 3125107 #> 857 Navarre (FL) 00-0033953 3045118 #> 858 Brenham (TX) 00-0034348 3128429 #> 859 Jim Hill (MS) 00-0033994 2971397 #> 860 Deerfield Beach (FL) 00-0036407 4241463 #> 861 Mountain View (VA) 00-0034370 3057987 #> 862 University City (CA) 00-0033375 3134353 #> 863 Southern Durham (NC) 00-0035864 3700815 #> 864 Lewisville (TX) 00-0034930 4422214 #> 865 Westfield (TX) 00-0036439 4034964 #> 866 IMG Academy (FL) 00-0036412 4240380 #> 867 Westgate (LA) 00-0031319 17463 #> 868 Brebeuf Jesuit (IN) 00-0034058 2971093 #> 869 Chanhassen (MN) 00-0034345 3128689 #> 870 Fork Union Military Academy (VA) 00-0031306 16876 #> 871 Tampa Gaither (FL) 00-0035270 3116175 #> 872 South Grand Prairie (TX) 00-0036274 4241984 #> 873 Lakeland (FL) 00-0031628 2515490 #> 874 Glenn (NC) 00-0032635 2575523 #> 875 Long Beach (MS) 00-0027375 13681 #> 876 Wilson (WA) 00-0030562 15812 #> 877 Scotland (NC) 00-0032934 2969422 #> 878 Marquette (IL) 00-0034639 3050916 #> 879 Brunswick (GA) 00-0031796 2577707 #> 880 Bishop Sullivan (VA) 00-0036011 4030779 #> 881 Foothill (NV) 00-0032399 2575164 #> 882 College Park (TX) 00-0035188 4039292 #> 883 Lloyd C. Bird (VA) 00-0036010 4046680 #> 884 Brunswick (GA) 00-0034745 3042499 #> 885 Bassfield (MS) 00-0035327 NA #> 886 Ardrey Kell (NC) 00-0036249 4046690 #> 887 Mount Healthy (OH) 00-0032727 2576267 #> 888 Cretin-Derham Hall (MN) 00-0036444 3873928 #> 889 Thomas County Central (GA) 00-0035531 3728253 #> 890 Ardrey Kell (NC) 00-0032655 2980147 #> 891 Woodbridge (VA) 00-0034371 3126352 #> 892 Memphis Central (TN) 00-0034590 3042746 #> 893 Columbia (AL) 00-0031566 2574519 #> 894 Rockdale County (GA) 00-0034326 3128264 #> 895 Agua Fria Union (AZ) 00-0027701 13373 #> 896 Thomson (GA) 00-0034586 3043127 #> 897 Orangeburg-Wilkinson (SC) 00-0035455 3728248 #> 898 West Jordan (UT) 00-0036238 4243257 #> 899 Auburn (WA) 00-0032143 2578384 #> 900 Cleveland (TX) 00-0035334 3124052 #> 901 Minor (AL) 00-0030500 2317118 #> 902 Southlake Carroll (TX) 00-0034495 3128412 #> 903 Penncrest (PA) 00-0036258 3930040 #> 904 Xaverian (NY) 00-0030083 15972 #> 905 University (WA) 00-0032418 2978331 #> 906 James Clemens (AL) 00-0036234 3915252 #> 907 Estero (FL) 00-0023853 11122 #> 908 Lampeter-Strasburg (PA) 00-0035189 3128444 #> 909 Birmingham Groves (MI) 00-0035330 4423367 #> 910 Northeast (TN) 00-0033557 3044729 #> 911 Hunterdon Central (NJ) 00-0034171 3116158 #> 912 Mira Costa (CA) 00-0035240 3124587 #> 913 Carver (AL) 00-0034336 3115310 #> 914 Franklin County (MS) 00-0030421 15830 #> 915 Camden County (GA) 00-0033539 3054951 #> 916 Bob Jones (AL) 00-0033058 2979855 #> 917 Roanoke Rapids (NC) 00-0031050 16764 #> 918 Lake Howell (FL) 00-0031130 17070 #> 919 Lufkin (TX) 00-0022455 8362 #> 920 Ladue Horton Watkins (MO) 00-0035156 3916370 #> 921 Highland Park (TX) 00-0026498 12483 #> 922 Carroll (TX) 00-0026544 12471 #> 923 Creekview (TX) 00-0035040 3116188 #> 924 Madison Academy (AL) 00-0034349 3916925 #> 925 St. Joseph's Prep (PA) 00-0036275 4259545 #> 926 Seminole Ridge (FL) 00-0035596 3919104 #> 927 Palestine (TX) 00-0025394 10452 #> 928 Trinity (KY) 00-0034654 3052449 #> 929 Los Gatos (CA) 00-0034433 3125232 #> 930 Caesar Rodney (DE) 00-0030383 15842 #> 931 Choate Rosemary Hall (CT) 00-0035655 3915297 #> 932 Pickerington North (OH) 00-0034614 3045238 #> 933 Ralston Valley (CO) 00-0033863 3046435 #> 934 Haltom (TX) 00-0032785 2971557 #> 935 Xavier (IA) 00-0035328 3145005 #> 936 Butler (OH) 00-0032381 2976292 #> 937 Green Valley (NV) 00-0034390 3122687 #> 938 Western Tech (MD) 00-0031922 3144062 #> 939 Scott's Branch (SC) 00-0032429 2978727 #> 940 South Allegheny (PA) 00-0032135 2979590 #> 941 Bishop Gorman (NV) 00-0035309 3932433 #> 942 Eastside Catholic (WA) 00-0036008 4243318 #> 943 Chariton (IA) 00-0035229 4036133 #> 944 Point Loma (CA) 00-0033572 3061612 #> 945 Farmingdale (NY) 00-0035544 3126997 #> 946 South Brunswick (NJ) 00-0029632 14922 #> 947 Eitwanda (CA) 00-0029293 15072 #> 948 The Woodlands (TX) 00-0026035 11674 #> 949 Stratford Academy (GA) 00-0036277 4035793 #> 950 Los Osos (CA) 00-0033306 3056476 #> 951 Spoto (FL) 00-0032626 3115913 #> 952 St. Rita of Cascia (IL) 00-0033932 2974858 #> 953 Boardman (OH) 00-0031019 16864 #> 954 Eureka (CA) 00-0036273 3915139 #> 955 West Jefferson (LA) 00-0034274 3041098 #> 956 Winder-Barrow (GA) 00-0034468 3124849 #> 957 Bishop O'Dowd (CA) 00-0033524 3052170 #> 958 Mariner (WA) 00-0033091 2980150 #> 959 Assumption (LA) 00-0024061 5432 #> 960 Rocky River (NC) 00-0034728 3895429 #> 961 Burlington Township (NJ) 00-0034990 3916676 #> 962 Corinth Lake (TX) 00-0034751 3144984 #> 963 Dollarway (AR) 00-0035079 4040870 #> 964 Calvert Hall (MD) 00-0031584 2582132 #> 965 Woodlawn (LA) 00-0035962 3928920 #> 966 Summit (TX) 00-0036243 4038538 #> 967 First Colonial (VA) 00-0034179 3049331 #> 968 Flanagan (FL) 00-0035970 4240024 #> 969 Boylan Catholic (IL) 00-0032412 2974348 #> 970 Las Vegas (NV) 00-0029303 15021 #> 971 Nimitz (TX) 00-0035971 3916220 #> 972 Dooly County (GA) 00-0033929 3051894 #> 973 Trinity (TX) 00-0035965 3676832 #> 974 George Ranch (TX) 00-0034984 3917340 #> 975 Cary (NC) 00-0035390 4239817 #> 976 Orange (NJ) 00-0035969 3930048 #> 977 Lake Charles Boston (LA) 00-0029040 15380 #> 978 McCutcheon (IN) 00-0032649 3040661 #> 979 Martin (TX) 00-0030273 16549 #> 980 Rockford (MI) 00-0033490 2977626 #> 981 Nathan Hale (WI) 00-0029893 15900 #> 982 Spring Lake Park (MN) 00-0036015 3930912 #> 983 Clarksdale (MS) 00-0035526 3115485 #> 984 Brentwood (TN) 00-0033082 2576736 #> 985 St. Joseph's Prep (PA) 00-0036246 3929936 #> 986 Ross (OH) 00-0036242 3929794 #> 987 Georgetown (TX) 00-0025580 10636 #> 988 John Ehret (LA) 00-0036090 4035577 #> 989 Stephenson (GA) 00-0031935 2577446 #> 990 Paramus Catholic (NJ) 00-0034967 4046523 #> 991 Lake Worth (FL) 00-0036239 4240655 #> 992 South County (VA) 00-0034754 3051746 #> 993 Reagan (TX) 00-0034999 3116431 #> 994 Greenville (AL) 00-0031576 3043168 #> 995 Liberty (CA) 00-0035961 4035817 #> 996 Burnsville (MN) 00-0036270 4034781 #> 997 Dillard (FL) 00-0035085 3128675 #> 998 Homestead (FL) 00-0032627 2970181 #> 999 Hazelwood East (MO) 00-0031361 16767 #> 1000 Collierville (TN) 00-0034168 2980350 #> 1001 Wilmer Amina Carter (CA) 00-0033120 3122752 #> 1002 Plainfield East (IL) 00-0034185 3045242 #> 1003 La Salle College (PA) 00-0034606 3045166 #> 1004 Mullen (CO) 00-0034162 3126368 #> 1005 Pleasant Valley (CA) 00-0023459 8439 #> 1006 Xavier (CT) 00-0034177 3045169 #> 1007 Liberty (CA) 00-0036264 4036378 #> 1008 DeMatha Catholic (MD) 00-0035161 3118906 #> 1009 West Orange (FL) 00-0034995 3932449 #> 1010 Cass Tech (MI) 00-0035303 3915536 #> 1011 Atascocita (TX) 00-0035973 4039358 #> 1012 Burges (TX) 00-0033293 3042519 #> 1013 Colton (CA) 00-0032404 2573974 #> 1014 Lawrence Academy (MA) 00-0036265 4239934 #> 1015 Summit (CA) 00-0033948 2980453 #> 1016 Caravel Academy (DE) 00-0034968 3915419 #> 1017 East (TN) 00-0033124 2971364 #> 1018 Lakewood (CA) 00-0035331 3917563 #> 1019 Mounds View (MN) 00-0031433 16759 #> 1020 Columbia (NJ) 00-0035084 3871880 #> 1021 Junipero Serra (CA) 00-0030074 15963 #> 1022 Forest Hills (MI) 00-0027674 13302 #> 1023 Long Beach Poly (CA) 00-0024243 9614 #> 1024 Kingfisher (OK) 00-0035671 3917962 #> 1025 Valley (IA) 00-0036456 4036129 #> 1026 Folsom (CA) 00-0036332 3914151 #> 1027 IMG Academy (FL) 00-0035539 4035014 #> 1028 Timpview (UT) 00-0033117 2980444 #> 1029 McHenry East (IL) 00-0033757 2975674 #> 1030 <NA> 00-0035083 3116573 #> 1031 Palo Alto (CA) 00-0031381 16800 #> 1032 Hill-McCloy (MI) 00-0035480 4408988 #> 1033 West Brook (TX) 00-0035750 2974503 #> 1034 Servite (CA) 00-0034279 3932442 #> 1035 North Gwinnett (GA) 00-0034243 3122167 #> 1036 McClay (FL) 00-0031166 17402 #> 1037 Blue Springs (MO) 00-0035181 3120588 #> 1038 Urbandale (IA) 00-0034521 3128390 #> 1039 Dunbar (MD) 00-0030525 15786 #> 1040 Lakewood (FL) 00-0034272 3051738 #> 1041 Dwight Morrow (NJ) 00-0035593 3128317 #> 1042 Harrison (MI) 00-0032055 2977609 #> 1043 Bishop Chatard (IN) 00-0032969 2579850 #> 1044 Los Osos (CA) 00-0035930 4047834 #> 1045 Grafton (WI) 00-0035323 3121537 #> 1046 Christian Brothers College 00-0034485 4331768 #> 1047 Wharton (FL) 00-0032758 3054955 #> 1048 St. Joseph's Prep (PA) 00-0036304 3929653 #> 1049 West Side Leadership Academy (IN) 00-0035244 4240780 #> 1050 William A. Hough (NC) 00-0035155 3728261 #> 1051 Peachtree Ridge (GA) 00-0031372 16719 #> 1052 Bassfield (MS) 00-0034792 3123963 #> 1053 Judson (MA) 00-0031015 16750 #> 1054 Royal (TX) 00-0032769 16313 #> 1055 Northampton County (NC) 00-0034435 3117135 #> 1056 Massillon Washington (OH) 00-0033882 3051391 #> 1057 Riverside (WI) 00-0033038 2970716 #> 1058 Bassfield (MS) 00-0034594 3128746 #> 1059 New Castle (PA) 00-0036199 4240575 #> 1060 Cherokee Trail (CO) 00-0034163 3138764 #> 1061 Rowlett (TX) 00-0035279 3929865 #> 1062 Chase (NC) 00-0033563 2977681 #> 1063 Pewaukee (WI) 00-0027949 13979 #> 1064 Elkins (TX) 00-0036289 4038557 #> 1065 Seguin (TX) 00-0034262 3050754 #> 1066 Hialeah (FL) 00-0027956 13989 #> 1067 Glenville (OH) 00-0032409 2977625 #> 1068 Auburn Placer (CA) 00-0033924 3047570 #> 1069 Alpharetta (GA) 00-0036065 3911982 #> 1070 IMG Academy (FL) 00-0035258 3886633 #> 1071 Evergreen (WA) 00-0029546 15123 #> 1072 Homewood-Flossmoor (IL) 00-0030997 16923 #> 1073 Honolulu Punahou (HI) 00-0032726 2971573 #> 1074 Logan-Rogersville (MO) 00-0033765 2986109 #> 1075 Vista Murrieta (CA) 00-0035076 3116367 #> 1076 Rosa Fort (MS) 00-0031553 2577429 #> 1077 Southview (OH) 00-0035415 3116134 #> 1078 Butler (NC) 00-0034421 3043276 #> 1079 Pinson Valley (AL) 00-0033547 3051750 #> 1080 Garfield (OH) 00-0029643 14936 #> 1081 Mays (GA) 00-0032094 3895228 #> 1082 Hiram (GA) 00-0036224 3916409 #> 1083 Alief Taylor (TX) 00-0034402 3039783 #> 1084 Strake Jesuit (TX) 00-0034139 3123863 #> 1085 Central Catholic (OR) 00-0032734 2576885 #> 1086 Schuyler Central (NE) 00-0032110 2508212 #> 1087 Perry (OH) 00-0033444 2577854 #> 1088 Westlake (GA) 00-0027224 13729 #> 1089 Pleasure Ridge Park (KY) 00-0031127 17061 #> 1090 Oscar Smith (VA) 00-0034394 3116761 #> 1091 Camarillo (CA) 00-0029692 14950 #> 1092 Gainesville (GA) 00-0033537 3122840 #> 1093 St. Paul's Episcopal (AL) 00-0031288 16810 #> 1094 Jacksonville (TX) 00-0021206 3609 #> 1095 Scotlandville Magnet (LA) 00-0034253 3126246 #> 1096 Coral Gables (FL) 00-0034449 3122716 #> 1097 Clinton (IA) 00-0032187 2508176 #> 1098 South Jones (MS) 00-0036069 4362878 #> 1099 Miami Norland (FL) 00-0032257 2969962 #> 1100 Taylor (TX) 00-0035304 3122143 #> 1101 Nimitz (TX) 00-0028908 15231 #> 1102 Dutchtown (LA) 00-0034361 3931399 #> 1103 Williston (ND) 00-0031031 17087 #> 1104 Monroe County (AL) 00-0035234 3131498 #> 1105 Hazelwood Central (MO) 00-0033569 3122923 #> 1106 Green Bay Southwest (WI) 00-0035245 3126035 #> 1107 Columbia (FL) 00-0032380 3051890 #> 1108 Rockhurst (MO) 00-0036195 3895840 #> 1109 Two Rivers (WI) 00-0036102 3921964 #> 1110 Union Grove (GA) 00-0034364 3128452 #> 1111 Brush (OH) 00-0033439 2971281 #> 1112 Fullerton (CA) 00-0029738 15773 #> 1113 Sonora (CA) 00-0035660 3933327 #> 1114 Alcoa (TN) 00-0028002 14053 #> 1115 Bishop Alemany (CA) 00-0034081 3043225 #> 1116 Moorpark (CA) 00-0033840 3066074 #> 1117 Lufkin (TX) 00-0034366 3915823 #> 1118 Yoakum (TX) 00-0034273 3895857 #> 1119 Gwynn Park (MD) 00-0036308 4248504 #> 1120 Elkins (TX) 00-0034268 3051857 #> 1121 Philadelphia Roman Catholic (PA) 00-0033127 3052876 #> 1122 East Lake (FL) 00-0033706 3122839 #> 1123 Lincoln (CA) 00-0031236 16731 #> 1124 Lakota West (OH) 00-0032383 2578475 #> 1125 El Campo (TX) 00-0032443 2971563 #> 1126 ThunderRidge (CO) 00-0034405 3128790 #> 1127 De La Salle (CA) 00-0031269 16808 #> 1128 Brother Martin (LA) 00-0035437 3917058 #> 1129 Saks (AL) 00-0034278 3134448 #> 1130 Southwest DeKalb (GA) 00-0035637 3910229 #> 1131 Suitland (MD) 00-0034767 3124574 #> 1132 Norland (FL) 00-0030575 15810 #> 1133 Gwynn Park (MD) 00-0035393 3910754 #> 1134 Blake (FL) 00-0036222 4044540 #> 1135 Lowndes (GA) 00-0033393 4218312 #> 1136 Encino Crespi (CA) 00-0035534 3912544 #> 1137 Clovis West (CA) 00-0034623 3125287 #> 1138 Chestnut Hill (PA) 00-0032198 2511090 #> 1139 Midwest City (OK) 00-0035972 3821692 #> 1140 Layton (UT) 00-0036253 4035661 #> 1141 Millington Central (TN) 00-0034091 3050199 #> 1142 New Castle (PA) 00-0033877 3121415 #> 1143 Tarboro (NC) 00-0034359 3040513 #> 1144 Albemarle (NC) 00-0031254 17447 #> 1145 Barringer (NJ) 00-0034354 3047512 #> 1146 Statesboro (GA) 00-0028008 14048 #> 1147 Don Bosco Prep (NJ) 00-0033964 3051942 #> 1148 Prosper (TX) 00-0034969 3124970 #> 1149 Lafayette (NY) 00-0035857 4034530 #> 1150 Patrick Henry (CA) 00-0035850 4041572 #> 1151 Murphy (AL) 00-0034325 3126489 #> 1152 Fond du Lac (WI) 00-0036227 3929658 #> 1153 Honolulu Punahou (HI) 00-0032378 2971282 #> 1154 G.A.R. Memorial (PA) 00-0031581 2976632 #> 1155 Red Bank Catholic (NJ) 00-0034342 3129308 #> 1156 John Adams (IN) 00-0036215 3915470 #> 1157 Bellevue (WA) 00-0033245 2978298 #> 1158 Sprayberry (GA) 00-0035849 3915165 #> 1159 Lake View (SC) 00-0034846 3056362 #> 1160 Hightower (TX) 00-0034424 3126179 #> 1161 Monsignor Edward Pace (FL) 00-0033570 3045251 #> 1162 Benedictine (OH) 00-0029418 15068 #> 1163 NSU University School (FL) 00-0034090 3048912 #> 1164 Foothill (CA) 00-0035687 3117253 #> 1165 Marmion Academy (IL) 00-0036229 3929928 #> 1166 Al Raby (IL) 00-0034410 3128252 #> 1167 North Crowley (TX) 00-0034987 3071353 #> 1168 La Salle College (PA) 00-0034431 3124005 #> 1169 Hollidaysburg Area (PA) 00-0032753 2566045 #> 1170 Mitchell County (GA) 00-0033952 4058825 #> 1171 Central Valley (WA) 00-0033619 3060187 #> 1172 Hamilton Union (CA) 00-0033269 3914922 #> 1173 West Salem (OR) 00-0029984 16382 #> 1174 William T. Dwyer (FL) 00-0033119 2578570 #> 1175 St. Joseph's Collegiate Institute (NY) 00-0033597 2977665 #> 1176 Lake Stevens (WA) 00-0036226 4035003 #> 1177 Athens (AL) 00-0022942 5529 #> 1178 Garner (NC) 00-0034367 3916430 #> 1179 St. Benedict at Auburndale (TN) 00-0034400 3051891 #> 1180 George Ranch (TX) 00-0036027 4038533 #> 1181 Salem (NJ) 00-0036223 4242335 #> 1182 Booker (FL) 00-0033951 3139605 #> 1183 Chandler (AZ) 00-0032417 2971589 #> 1184 Sparta (IL) 00-0033049 2980197 #> 1185 Lumen Christi Catholic (MI) 00-0035530 3929835 #> 1186 H.D. Woodson (DC) 00-0029410 14977 #> 1187 Lake Wales (FL) 00-0032830 3916678 #> 1188 Rockdale (TX) 00-0033065 2577631 #> 1189 Lindsay Thurber (CAN) 00-0035853 4611135 #> 1190 Lake Zurich (IL) 00-0027960 13970 #> 1191 Hamilton (AZ) 00-0035641 3117259 #> 1192 Clay (FL) 00-0033788 2972351 #> 1193 Tampa Catholic (FL) 00-0032204 2516053 #> 1194 Olathe South (KS) 00-0034836 3121595 #> 1195 Mason (OH) 00-0034664 3059936 #> 1196 North (TX) 00-0027609 13483 #> 1197 Sumrall (MS) 00-0034420 4035379 #> 1198 St. Ignatius (CA) 00-0034491 4032479 #> 1199 Cathedral (IN) 00-0030181 16504 #> 1200 Middleburg Academy (VA) 00-0033217 2998565 #> 1201 Hunter (UT) 00-0036005 3930298 #> 1202 Venice (FL) 00-0030710 16974 #> 1203 Wesson Attendance Center (MS) 00-0035852 3930097 #> 1204 Patrick Henry (CA) 00-0036228 4054085 #> 1205 St. Vincent–St. Mary (OH) 00-0035639 3121410 #> 1206 St. Aloysius (MS) 00-0035848 4374496 #> 1207 Midfield (AL) 00-0032112 2515759 #> 1208 James Madison Memorial (WI) 00-0034395 3120659 #> 1209 Reynoldsburg (OH) 00-0035021 4061956 #> 1210 Colonial Forge (VA) 00-0035589 3916071 #> 1211 Henry Wise (MD) 00-0033251 2978109 #> 1212 Miami Springs (FL) 00-0029608 14924 #> 1213 Oaks Christian (CA) 00-0036252 4035687 #> 1214 Lee's Summit West (MO) 00-0032777 2971418 #> 1215 Elkins (TX) 00-0030572 15794 #> 1216 Calvary Christian Academy (FL) 00-0033430 2979515 #> 1217 Waukegan (IL) 00-0029901 16270 #> 1218 San Gorgonio (CA) 00-0035108 3886327 #> 1219 Eastern Christian Academy (MD) 00-0035375 3115968 #> 1220 Fairfield (OH) 00-0036303 4241977 #> 1221 West Covina (CA) 00-0033543 3127299 #> 1222 Castle Park (CA) 00-0036101 4361499 #> 1223 Del Norte (CA) 00-0034523 3931400 #> 1224 Columbus (FL) 00-0036281 4240596 #> 1225 McGavock (TN) 00-0036316 4371737 #> 1226 East Hamilton (TN) 00-0034516 3122160 #> 1227 Ralston Valley (CO) 00-0035378 3918331 #> 1228 Parkland (NC) 00-0032697 2567725 #> 1229 Sandy Creek (GA) 00-0036126 4249092 #> 1230 Kew (AUS) 00-0033064 2971498 #> 1231 Fairfax (AZ) 00-0032633 2576755 #> 1232 Montclair (NJ) 00-0035642 3915239 #> 1233 North Shore (TX) 00-0036286 4242205 #> 1234 Groveport Madison (OH) 00-0033907 3042476 #> 1235 Haines City (FL) 00-0032131 2507719 #> 1236 Dunnellon (FL) 00-0029799 16090 #> 1237 Elton (LA) 00-0027723 13493 #> 1238 Nuuuli Poly Tech (ASM) 00-0034251 3052059 #> 1239 Natrona County (WY) 00-0034842 3115249 #> 1240 Northside (GA) 00-0029946 16376 #> 1241 Bishop Shanahan (PA) 00-0035822 4038987 #> 1242 Mount Saint Michael (NY) 00-0031071 16853 #> 1243 Jeffersontown (KY) 00-0033535 4220624 #> 1244 Carver (GA) 00-0031574 2574579 #> 1245 Woodstock (GA) 00-0028149 14083 #> 1246 East Burke (NC) 00-0030827 17037 #> 1247 Bamberg-Ehrhardt (SC) 00-0032255 2516325 #> 1248 Anderson (OH) 00-0031122 17388 #> 1249 St. Thomas Aquinas (FL) 00-0031369 16770 #> 1250 East St. Louis (IL) 00-0035832 4035113 #> 1251 Needham (MA) 00-0025944 11923 #> 1252 Clinton (MS) 00-0032835 3135726 #> 1253 Middleton (WI) 00-0032087 2998120 #> 1254 Orland (CA) 00-0032870 3068939 #> 1255 Lakewood (NJ) 00-0036434 3923413 #> 1256 Oakleaf (FL) 00-0036235 4037468 #> 1257 Waukesha West (WI) 00-0033125 2977819 #> 1258 Wenonah (AL) 00-0035680 3110565 #> 1259 St. Joseph Regional (NJ) 00-0035363 3917797 #> 1260 Summer Creek (TX) 00-0035670 3139453 #> 1261 St. Louis (HI) 00-0032386 3042874 #> 1262 Golden Valley (CA) 00-0034428 3045267 #> 1263 Bellevue (WA) 00-0032968 3047566 #> 1264 John Curtis Christian (LA) 00-0035824 4042125 #> 1265 Island Coast (FL) 00-0030993 16941 #> 1266 McKinney Boyd (TX) 00-0035827 3928931 #> 1267 Pickerington Central (OH) 00-0036262 3915520 #> 1268 Carrollton (GA) 00-0035312 3121587 #> 1269 Freedom (VA) 00-0035742 3072765 #> 1270 Columbia (MS) 00-0034437 3115480 #> 1271 Marysville-Pilchuck (WA) 00-0036312 3124900 #> 1272 Westfield (VA) 00-0030520 15837 #> 1273 Brandon (MS) 00-0035289 4038524 #> 1274 Sachse (TX) 00-0035184 3699935 #> 1275 Millville (NJ) 00-0035268 3923397 #> 1276 Madison County (FL) 00-0030404 15966 #> 1277 Knoxville West (TN) 00-0035835 3917812 #> 1278 Rockford Lutheran (IL) 00-0035831 4052042 #> 1279 Abington (PA) 00-0035567 4421446 #> 1280 Marquette (WI) 00-0033854 2983509 #> 1281 Buchtel (OH) 00-0032525 2970661 #> 1282 Robert E. Lee (AL) 00-0036306 4035505 #> 1283 Walled Lake Western (MI) 00-0033903 3051716 #> 1284 Florida State University School (FL) 00-0035558 3126153 #> 1285 Blanchet Catholic (OR) 00-0036272 4611506 #> 1286 Palm Beach Central (FL) 00-0034522 3123064 #> 1287 Hugh M. Cummings (NC) 00-0034380 3116739 #> 1288 Friendship Collegiate Academy (DC) 00-0035220 3115949 #> 1289 West Monroe (LA) 00-0033889 3115313 #> 1290 Dawson-Bryant Coal Grove (OH) 00-0035829 3920814 #> 1291 Cocoa (FL) 00-0035237 4034961 #> 1292 Hoffman Estates (IL) 00-0033576 2975863 #> 1293 Naperville North (IL) 00-0031951 2508079 #> 1294 West Morris Mendham (NJ) 00-0034101 3047488 #> 1295 Bishop Dwenger (IN) 00-0030549 15788 #> 1296 Hawley (MN) 00-0035823 3930900 #> 1297 Mepham (NY) 00-0036250 3914240 #> 1298 Paso Robles (CA) 00-0035249 3921690 #> 1299 Callaway (GA) 00-0035313 3915174 #> 1300 Central (KY) 00-0033681 3071572 #> 1301 Naples (FL) 00-0035374 3915296 #> 1302 Southeast Lauderdale (MS) 00-0035401 4241723 #> 1303 Hallandale (FL) 00-0035826 4034944 #> 1304 C.H. Yoe (TX) 00-0033839 3892889 #> 1305 DeSoto (TX) 00-0036268 4243160 #> 1306 Alexandria (LA) 00-0034777 3115394 #> 1307 North Paulding (GA) 00-0032128 2578533 #> 1308 Wilcox County (GA) 00-0033261 3039720 #> 1309 Valley Christian (CA) 00-0036254 4039043 #> 1310 Dobyns-Bennett (TN) 00-0028101 14110 #> 1311 Bessemer City (AL) 00-0035892 3917290 #> 1312 Lakewood Ranch (FL) 00-0031958 2514816 #> 1313 Strom Thurmond (SC) 00-0032933 3056354 #> 1314 Lake Marion (SC) 00-0035634 3140141 #> 1315 Allendale-Fairfax (SC) 00-0031052 16890 #> 1316 Laurel (MS) 00-0036385 4040652 #> 1317 Minden (LA) 00-0036374 4040432 #> 1318 Miami Carol City (FL) 00-0035147 3924364 #> 1319 Plantation (FL) 00-0034145 3128630 #> 1320 McComb (MS) 00-0034573 4037361 #> 1321 Miami Northwestern (FL) 00-0035684 3915163 #> 1322 Altavista (VA) 00-0035625 3917909 #> 1323 Colton (CA) 00-0030665 17259 #> 1324 Taylor (TX) 00-0035878 3916207 #> 1325 Pflugerville (TX) 00-0030503 15976 #> 1326 High Point Central (NC) 00-0035135 3914553 #> 1327 Central (OH) 00-0033541 3045210 #> 1328 Glenville (OH) 00-0032210 2576242 #> 1329 Bishop Timon (NY) 00-0034612 3052926 #> 1330 Wissahickon (PA) 00-0033902 2982313 #> 1331 Warren De La Salle (MI) 00-0036378 3915487 #> 1332 Waverly (MI) 00-0035779 4408979 #> 1333 Parkway Central (MO) 00-0035656 3121634 #> 1334 Americus-Sumter (GA) 00-0035796 NA #> 1335 University City (MO) 00-0035890 4058925 #> 1336 Houston (MS) 00-0032762 3044859 #> 1337 Somerset (WI) 00-0031152 17377 #> 1338 Langham Creek (TX) 00-0029259 14957 #> 1339 Central Catholic (PA) 00-0027986 169 #> 1340 Collège Andre-Grasset (CAN) 00-0031022 16958 #> 1341 St. Francis DeSales (OH) 00-0029889 16327 #> 1342 Lincoln-Way East (IL) 00-0035149 3115922 #> 1343 Westminster (GA) 00-0033303 3055899 #> 1344 Our Lady of Good Counsel (MD) 00-0034781 3045132 #> 1345 Starkville (MS) 00-0036362 4259804 #> 1346 Amite County (MS) 00-0032215 3040207 #> 1347 Clearview (OH) 00-0031348 16883 #> 1348 Sycamore (IL) 00-0034296 3140643 #> 1349 Oakland (TN) 00-0034153 3122169 #> 1350 Horn Lake (MS) 00-0035157 3122906 #> 1351 Treasure Coast (FL) 00-0035879 4043618 #> 1352 Washington (OK) 00-0030615 16665 #> 1353 Grandview (CO) 00-0030757 17230 #> 1354 Ocean Lakes (VA) 00-0034818 3122930 #> 1355 Bearden (TN) 00-0023534 8513 #> 1356 Boone (FL) 00-0035889 3915398 #> 1357 Whitehouse (TX) 00-0033873 3139477 #> 1358 Hart (CA) 00-0025708 11128 #> 1359 Wilson (PA) 00-0026197 11291 #> 1360 Pearl City (HI) 00-0035735 4242418 #> 1361 Mira Mesa (CA) 00-0030874 17359 #> 1362 North Attleboro (MA) 00-0028074 14135 #> 1363 Jenks (OK) 00-0035148 4361606 #> 1364 Vandebilt Catholic (LA) 00-0033295 3042494 #> 1365 John Ehret (LA) 00-0034301 3115375 #> 1366 Groveport Madison (OH) 00-0030496 15825 #> 1367 Catholic (LA) 00-0036360 4242214 #> 1368 North Forney (TX) 00-0034680 3122136 #> 1369 St. Augustine (LA) 00-0030459 15851 #> 1370 Jesuit (OR) 00-0029164 15422 #> 1371 Midland (MI) 00-0033831 3042702 #> 1372 Stoney Creek (MI) 00-0030584 15790 #> 1373 New Canaan (CT) 00-0036367 NA #> 1374 Imhotep Institute Charter (PA) 00-0035881 4241213 #> 1375 Mendenhall (MS) 00-0034824 3894924 #> 1376 Palisades Charter (CA) 00-0029253 14951 #> 1377 Edgewood Academy (AL) 00-0036230 4035518 #> 1378 Southern (KY) 00-0034319 3059766 #> 1379 Sealy (TX) 00-0033611 3051806 #> 1380 Cleveland Heights (OH) 00-0030506 15847 #> 1381 Christian (FL) 00-0033696 2971426 #> 1382 Grandview (CO) 00-0033763 2971280 #> 1383 Portage Northern (MI) 00-0034192 4329472 #> 1384 Peach County (GA) 00-0032775 3043116 #> 1385 New Brunswick (NJ) 00-0035883 4036055 #> 1386 Piscataway (NJ) 00-0032778 2982828 #> 1387 Fort Myers South (FL) 00-0031325 16725 #> 1388 Madison Prep (LA) 00-0033933 3066052 #> 1389 South Park (NY) 00-0035547 4408854 #> 1390 Washington (FL) 00-0034772 3915097 #> 1391 Elbert County (GA) 00-0035140 4035004 #> 1392 Washington (IN) 00-0033474 2980460 #> 1393 Robinson (FL) 00-0034297 4036416 #> 1394 Coffee (GA) 00-0033040 3116406 #> 1395 Layton (UT) 00-0033481 3046399 #> 1396 Williamsburg (IA) 00-0032455 2582448 #> 1397 Hinsdale Central (IL) 00-0034804 3134666 #> 1398 St. Bonaventure (CA) 00-0031785 2525933 #> 1399 Loyola (CA) 00-0035665 4046536 #> 1400 Summit (CA) 00-0032641 2972896 #> 1401 Brentwood Academy (TN) 00-0033055 3045373 #> 1402 Creekside (FL) 00-0034203 4239833 #> 1403 Hanford (CA) 00-0036077 4040901 #> 1404 Northwestern (MD) 00-0033927 3046292 #> 1405 Fairfax (VA) 00-0035669 3116179 #> 1406 Old Tappan (NJ) 00-0036431 4040613 #> 1407 Prestonwood Christian (TX) 00-0035830 3917012 #> 1408 Peach County (GA) 00-0035938 4035013 #> 1409 Kinston (NC) 00-0033920 3049268 #> 1410 Fountain-Fort Carson (CO) 00-0032671 3059620 #> 1411 Rocky Mountain (ID) 00-0035944 4032481 #> 1412 Chavez (TX) 00-0029630 14944 #> 1413 East (TN) 00-0035928 4040703 #> 1414 Penn Hills (PA) 00-0031388 16716 #> 1415 Arlington Heights (TX) 00-0032889 3054857 #> 1416 Oakwood (OH) 00-0035933 NA #> 1417 Bedford (OH) 00-0035607 3914150 #> 1418 Vineland (NJ) 00-0034809 3120552 #> 1419 Fallbrook Union (CA) 00-0034080 3043198 #> 1420 Plano (TX) 00-0034803 3040008 #> 1421 Downers Grove North (IL) 00-0035668 3917660 #> 1422 Edward C. Reed (NV) 00-0034261 3056608 #> 1423 Loyola (CA) 00-0034114 3052180 #> 1424 Notre Dame (CA) 00-0028787 14816 #> 1425 Pratville (AL) 00-0035759 3053774 #> 1426 Orem (UT) 00-0035269 4249087 #> 1427 John Curtis Christian (LA) 00-0034266 3134310 #> 1428 Prattville (AL) 00-0035751 3115317 #> 1429 Salesianum (DE) 00-0035617 3116177 #> 1430 Alief Taylor (TX) 00-0034807 3052667 #> 1431 Dodge County (GA) 00-0033072 3043136 #> 1432 Gilman School (MD) 00-0034806 3048692 #> 1433 Pottsboro (TX) 00-0034813 3040109 #> 1434 Martin (TX) 00-0035591 3122678 #> 1435 David Douglas (OR) 00-0033945 3045527 #> 1436 Soiux Center (IA) 00-0035942 3909013 #> 1437 St. John's (DC) 00-0036419 4040968 #> 1438 Mainland (FL) 00-0035528 4034967 #> 1439 Longview (TX) 00-0034812 3116424 #> 1440 Mount Carmel (IL) 00-0036014 4035542 #> 1441 Eastern (KY) 00-0033531 3040072 #> 1442 Elder (OH) 00-0028394 14676 #> 1443 La Habra (CA) 00-0035667 3127294 #> 1444 Stroudsburg (PA) 00-0034810 3047495 #> 1445 KIPP Atlanta Collegiate (GA) 00-0035833 NA #> 1446 Bothell (WA) 00-0028872 15153 #> 1447 Bishop Kenny (FL) 00-0034899 3124092 #> 1448 Mortimer-Jordan (AL) 00-0035577 3127051 #> 1449 Oviedo (FL) 00-0031407 16724 #> 1450 Chandler (AZ) 00-0035939 3675812 #> 1451 Marin Catholic (CA) 00-0033106 3046779 #> 1452 Clinton (MS) 00-0036414 4240021 #> 1453 Cecilia (LA) 00-0036435 NA #> 1454 Spring (TX) 00-0036078 3916209 #> 1455 South Panola (MS) 00-0035664 4039359 #> 1456 Byron P. Steele (TX) 00-0031806 2570986 #> 1457 Sehome (WA) 00-0035663 4039007 #> 1458 Assumption (IA) 00-0035609 3144988 #> 1459 San Marcos (CA) 00-0036421 4035663 #> 1460 Linganore (MD) 00-0032242 2515613 #> 1461 Florence (AL) 00-0035623 3914440 #> 1462 McEachern (GA) 00-0036437 4035478 #> 1463 West Monroe (LA) 00-0024270 9641 #> 1464 Allen (TX) 00-0035666 3706968 #> 1465 Columbia (GA) 00-0033895 3918639 #> 1466 Ensworth (TN) 00-0036424 3918003 #> 1467 East Lake (FL) 00-0033110 2573401 #> 1468 Blue Springs South (MO) 00-0035603 3122103 #> 1469 Central Catholic (CA) 00-0033246 3052096 #> 1470 Junipero Serra (CA) 00-0030431 15880 #> 1471 Ravenwood (TN) 00-0036415 3930066 #> 1472 West Bloomfield (MI) 00-0035934 4046715 #> 1473 San Ramon Valley (CA) 00-0035935 3910287 #> 1474 Davis (WA) 00-0033908 2977187 #> 1475 Jay (TX) 00-0033943 3115306 #> 1476 Deer Valley (CA) 00-0035621 3119317 #> 1477 Lakeland (FL) 00-0027953 13974 #> 1478 Roncalli (IN) 00-0032787 2969262 #> 1479 <NA> 00-0034903 4410136 #> 1480 Northgate (GA) 00-0034545 3045458 #> 1481 Glendale (CA) 00-0033697 3053795 #> 1482 Perry (GA) 00-0029261 14966 #> 1483 Bixby (OK) 00-0028224 14398 #> 1484 Great Valley (PA) 00-0035677 3912028 #> 1485 Riverview (FL) 00-0030312 16039 #> 1486 South Mecklenburg (NC) 00-0035899 4032484 #> 1487 Whitehaven (TN) 00-0035911 4046687 #> 1488 Haines City (FL) 00-0034790 3691739 #> 1489 Hialeah (FL) 00-0035906 4365493 #> 1490 St. Thomas Aquinas (FL) 00-0033156 3051389 #> 1491 Richmond (NC) 00-0029249 14926 #> 1492 Eagle's Landing Christian (GA) 00-0033588 3052894 #> 1493 Xaverian Brothers (MA) 00-0035903 3915990 #> 1494 Narbonne (CA) 00-0034350 3120358 #> 1495 Evangel Christian Academy (LA) 00-0035674 3863182 #> 1496 Colquitt County (GA) 00-0035910 3916917 #> 1497 South Cobb (GA) 00-0034677 3116746 #> 1498 Veterans (GA) 00-0035315 3139036 #> 1499 Sandburg (IL) 00-0033910 2979482 #> 1500 La Costa Canyon (CA) 00-0034392 3047572 #> 1501 Farragut (TN) 00-0035904 3919555 #> 1502 Middleton (WI) 00-0031128 17063 #> 1503 St. Augustine (LA) 00-0031362 16789 #> 1504 Venice (FL) 00-0033542 2981439 #> 1505 Canisius (NY) 00-0034289 3045779 #> 1506 Summit (NJ) 00-0034084 3123052 #> 1507 Carroll (IN) 00-0035262 3129310 #> 1508 Poteet (TX) 00-0034835 3821576 #> 1509 Emmaus (PA) 00-0034375 4039254 #> 1510 Elkins (TX) 00-0036441 4241394 #> 1511 Fremont (UT) 00-0032892 2971816 #> 1512 Coral Gables (FL) 00-0032103 2579621 #> 1513 Nansemond-Suffolk Academy (VA) 00-0035900 4036959 #> 1514 North Shore (TX) 00-0035538 3914613 #> 1515 Lincoln-Way West (IL) 00-0033642 2970622 #> 1516 Liberty (CA) 00-0034917 3054855 #> 1517 Santa Fe (FL) 00-0027885 13281 #> 1518 Yates (TX) 00-0030148 16231 #> 1519 Farrington (HI) 00-0035927 3674831 #> 1520 Mornington (VIC) 00-0032449 3061740 #> 1521 Roswell (GA) 00-0031543 2582324 #> 1522 Hampton (VA) 00-0028118 14163 #> 1523 Creighton Prep (NE) 00-0035282 3120590 #> 1524 Sheldon (OR) 00-0036355 4038941 #> 1525 Eastside (CA) 00-0036370 3910544 #> 1526 Eaton (CO) 00-0033699 3068267 #> 1527 Godby (FL) 00-0035898 4040640 #> 1528 Anniston (AL) 00-0033164 2983319 #> 1529 Falcon (CO) 00-0034799 3128774 #> 1530 Lowndes (GA) 00-0035908 4035611 #> 1531 Glenbard North (IL) 00-0034440 3116136 #> 1532 Kahuku (HI) 00-0036380 4039413 #> 1533 Cape Coral (FL) 00-0031173 16919 #> 1534 Admiral Farragut Academy (FL) 00-0033941 2969961 #> 1535 Trinity (TX) 00-0033578 3052513 #> 1536 Apple Valley (MN) 00-0035688 4411189 #> 1537 Whitmer (OH) 00-0033752 2973014 #> 1538 Marian Central Central (IL) 00-0027875 13247 #> 1539 IMG Academy (FL) 00-0034958 3917870 #> 1540 Pulaski (AR) 00-0033090 3046439 #> 1541 Lake Gibson (FL) 00-0035329 3912092 #> 1542 Tulare Union (CA) 00-0028142 14085 #> 1543 Adams (MI) 00-0035436 3121378 #> 1544 Piedmont Hills (CA) 00-0032725 2576854 #> 1545 Cambridge (GA) 00-0036104 4683123 #> 1546 Warren Easton (LA) 00-0035457 3894912 #> 1547 Oberlin (OH) 00-0035432 4069806 #> 1548 Northern Guilford (NC) 00-0030279 15818 #> 1549 North Little Rock (AR) 00-0036382 3915522 #> 1550 Pima (AZ) 00-0035901 4282647 #> 1551 Randolph-Henry (VA) 00-0036377 4037591 #> 1552 Allen (TX) 00-0035414 3932430 #> 1553 Santee Lake Marion (SC) 00-0033536 3045138 #> 1554 La Costa Canyon (CA) 00-0033317 2977627 #> 1555 Rain (AL) 00-0027993 14013 #> 1556 Herriman (UT) 00-0035127 3932244 #> 1557 Salesian (CA) 00-0035133 4259493 #> 1558 Thibodaux (LA) 00-0036375 4239694 #> 1559 St. Thomas Aquinas (FL) 00-0031389 16769 #> 1560 Union Grove (GA) 00-0032788 2971478 #> 1561 William Penn Charter (PA) 00-0032891 3042436 #> 1562 St. Thomas Aquinas (FL) 00-0036359 3915506 #> 1563 First Coast (FL) 00-0033390 3054031 #> 1564 Coconut Creek (FL) 00-0035695 4035458 #> 1565 Rudder (TX) 00-0034980 3126182 #> 1566 Piper (FL) 00-0031176 16929 #> 1567 Cypress Ridge (TX) 00-0036062 NA #> 1568 McClymonds (CA) 00-0036085 3921709 #> 1569 Central Catholic (OR) 00-0034726 3053801 #> 1570 New Oxford (PA) 00-0032320 4010714 #> 1571 Malvern Prep (PA) 00-0033129 2614825 #> 1572 Channel Island (CA) 00-0033758 2976151 #> 1573 San Jacinto (CA) 00-0031997 2577162 #> 1574 Kennedy (CA) 00-0033540 3152371 #> 1575 West Rowan (NC) 00-0031264 16917 #> 1576 Benedictine (VA) 00-0035692 3728258 #> 1577 Hapeville Charter (GA) 00-0034825 3843843 #> 1578 Colleyville Heritage (TX) 00-0034973 3916655 #> 1579 Greenville (MS) 00-0034997 3115469 #> 1580 Compton (CA) 00-0030576 15798 #> 1581 Xaverian Brothers (MA) 00-0034746 3045220 #> 1582 Southeastern (MI) 00-0030063 15841 #> 1583 Havelock (NC) 00-0034125 3044732 #> 1584 Center (MO) 00-0033131 3040471 #> 1585 Bay Port (WI) 00-0035125 3917668 #> 1586 Gaffney (SC) 00-0031632 2985235 #> 1587 Amite County (MS) 00-0031367 16753 #> 1588 Mountain Ridge (AZ) 00-0023516 8495 #> 1589 Central (AL) 00-0035117 3925344 #> 1590 Fort Dorchester (SC) 00-0036369 4035479 #> 1591 Redondo Union (CA) 00-0036168 3932960 #> 1592 The Classical Academy (CO) 00-0034161 3051909 #> 1593 Adairsville (GA) 00-0032240 2512400 #> 1594 Huntsville (AL) 00-0033445 4232830 #> 1595 Bethel Park (PA) 00-0032773 2581818 #> 1596 South Point (NC) 00-0036368 3728263 #> 1597 Liberty County (GA) 00-0033461 3121423 #> 1598 Mount Miguel (CA) 00-0032677 2978304 #> 1599 Apopka (FL) 00-0029647 15038 #> 1600 Stone Mountain (GA) 00-0033468 2969922 #> 1601 Cretin-Derham Hall (MN) 00-0033704 3052889 #> 1602 Eaton (CO) 00-0034198 3052357 #> 1603 Elkton (MD) 00-0034077 4329484 #> 1604 Woodward Academy (GA) 00-0035190 3686689 #> 1605 Bakersfield Christian (CA) 00-0031280 16757 #> 1606 Mount Pisgah Christian (GA) 00-0033672 2972092 #> 1607 Bartram Trail (FL) 00-0033958 2972236 #> 1608 St. Louis (HI) 00-0032268 2576980 #> 1609 Grant Union (CA) 00-0032972 3122866 #> 1610 McLain (OK) 00-0035700 4047365 #> 1611 Peabody Magnet (LA) 00-0033025 2972091 #> 1612 Immaculata (NJ) 00-0030107 15994 #> 1613 Lake Orion (MI) 00-0030196 16473 #> 1614 Independence (TN) 00-0034362 3115333 #> 1615 East Marion (MS) 00-0035693 3728305 #> 1616 A.L. Brown (NC) 00-0034763 3072292 #> 1617 Grand Street Campus (NY) 00-0036134 3930054 #> 1618 Westover (GA) 00-0032071 3043109 #> 1619 West Catholic (PA) 00-0034628 3045160 #> 1620 Roseville (CA) 00-0034759 3134312 #> 1621 St. Thomas Aquinas (FL) 00-0027778 13496 #> 1622 Kittanning (PA) 00-0036083 3929633 #> 1623 Dwyer (FL) 00-0032117 2576804 #> 1624 North Cobb (GA) 00-0031610 2576925 #> 1625 Elizabethton (TN) 00-0022127 4527 #> 1626 Edgerton (WI) 00-0029119 15403 #> 1627 Jesuit (LA) 00-0034981 3843945 #> 1628 West Potomac 00-0034103 3121398 #> 1629 Northside (GA) 00-0033530 3042373 #> 1630 Lee (AL) 00-0036357 4241475 #> 1631 Barbe (LA) 00-0034339 3115365 #> 1632 Cascade (OR) 00-0032160 2587819 #> 1633 Stephen F. Austin (TX) 00-0033891 3059722 #> 1634 <NA> 00-0032694 3051400 #> 1635 Socastee (SC) 00-0034983 3135321 #> 1636 Wylie East (TX) 00-0034747 3046320 #> 1637 Conway (SC) 00-0036365 4038818 #> 1638 Berkeley Prep (FL) 00-0031549 2971618 #> 1639 Alameda (CA) 00-0035120 3120980 #> 1640 Catholic (LA) 00-0033505 3060000 #> 1641 Venice (FL) 00-0034963 3917868 #> 1642 Genoa Area 00-0035686 3121541 #> 1643 Cathedral (IN) 00-0032445 2576188 #> 1644 North Shore (TX) 00-0033734 3892777 #> 1645 St. Paul Catholic (CT) 00-0032239 2513035 #> 1646 Nipomo (CA) 00-0031630 2509574 #> 1647 Hewitt-Trussville (AL) 00-0036287 4242516 #> 1648 Buena Park (CA) 00-0035346 3124702 #> 1649 Wheatley (TX) 00-0033050 2978935 #> 1650 Oxford (AL) 00-0031587 2575606 #> 1651 Nacogdoches (TX) 00-0036221 4039059 #> 1652 Heritage (MI) 00-0036353 NA #> 1653 Grand Rapids Christian (MI) 00-0033048 2972505 #> 1654 Ed White (FL) 00-0035880 NA #> 1655 Whitmer (OH) 00-0034802 3052527 #> 1656 DeMatha Catholic (MD) 00-0035858 4036214 #> 1657 Pinckney (MI) 00-0034285 3057956 #> 1658 Asheboro (NC) 00-0036089 4047458 #> 1659 Westlake (GA) 00-0035845 3914456 #> 1660 Suffield Academy (CT) 00-0035231 3728266 #> 1661 George Bush (TX) 00-0033073 2977740 #> 1662 Deerfield Beach (FL) 00-0036160 3895843 #> 1663 Tucker (GA) 00-0035343 3728308 #> 1664 <NA> 00-0035727 4421391 #> 1665 Wayne County (GA) 00-0035841 4035299 #> 1666 Cathedral Catholic (CA) 00-0035332 3915309 #> 1667 Apopka (FL) 00-0035310 3843217 #> 1668 Hamilton (OH) 00-0033359 2976649 #> 1669 Miami Norland (FL) 00-0032259 2969952 #> 1670 Raines (FL) 00-0036131 4035008 #> 1671 Villa Park (CA) 00-0034794 3124679 #> 1672 Rock Valley (IA) 00-0035272 3133487 #> 1673 Central Daniel (SC) 00-0033096 2977679 #> 1674 Lincoln (WI) 00-0033939 2977798 #> 1675 Kamehameha (HI) 00-0032437 3050851 #> 1676 Francis Howell (OR) 00-0033716 3047530 #> 1677 Robert McQueen (NV) 00-0031360 16772 #> 1678 Lakeview Centennial (TX) 00-0034902 2577637 #> 1679 Skyline (TX) 00-0035840 3915107 #> 1680 Benedictine (OH) 00-0034797 3915507 #> 1681 Memorial (TX) 00-0032442 2987743 #> 1682 Landmark Christian (GA) 00-0033420 3048402 #> 1683 Bay (OH) 00-0036443 NA #> 1684 Buford (GA) 00-0036217 3843470 #> 1685 Meridian (MS) 00-0036213 4040965 #> 1686 Plaquemine (LA) 00-0033860 3115383 #> 1687 Dowling Catholic (IA) 00-0033400 3043237 #> 1688 St. Thomas Aquinas (FL) 00-0032431 2582424 #> 1689 St. Louis (HI) 00-0036212 4241479 #> 1690 Johnston (IA) 00-0036052 3926936 #> 1691 Highland (AZ) 00-0023682 8664 #> 1692 Mission Prep (CA) 00-0035342 3127211 #> 1693 Juanita (WA) 00-0036020 4243315 #> 1694 Nature Coast Technical (FL) 00-0033308 3049916 #> 1695 Seattle O'Dea (WA) 00-0035311 3886818 #> 1696 Kenwood (TN) 00-0036245 4039436 #> 1697 Thurgood Marshall (TX) 00-0032940 2577654 #> 1698 St. Thomas Aquinas (FL) 00-0035275 3915115 #> 1699 Warren G. Harding (OH) 00-0036364 4259979 #> 1700 Lemont (IL) 00-0032807 3042455 #> 1701 Klein (TX) 00-0031555 2576002 #> 1702 Burkeville (TX) 00-0036325 3917592 #> 1703 Kilgore (TX) 00-0035839 3929752 #> 1704 Paulsboro (NJ) 00-0033560 3047614 #> 1705 North Canyon (AZ) 00-0036248 4271632 #> 1706 Asotin (WA) 00-0031893 2517316 #> 1707 Belton (TX) 00-0034798 3052897 #> 1708 Big Walnut (OH) 00-0033896 4198676 #> 1709 Cheltenham (PA) 00-0035345 3138744 #> 1710 Southern Regional (NJ) 00-0034829 3116164 #> 1711 Port St. Lucie (FL) 00-0030669 17051 #> 1712 Destrehan (LA) 00-0035844 3915145 #> 1713 Thomas Sprigg Wootton (MD) 00-0033555 2991662 #> 1714 Horn (TX) 00-0032791 2577641 #> 1715 Ballard (KY) 00-0031547 2576623 #> 1716 Carol City (FL) 00-0030821 17177 #> 1717 St. Elizabeth (DE) 00-0033705 3047504 #> 1718 Trinity Christian Academy (FL) 00-0033471 3124069 #> 1719 Lovejoy (GA) 00-0035350 3915399 #> 1720 Charlotte Christian (NC) 00-0035588 3116729 #> 1721 Weyburn Comprehensive (CAN) 00-0031489 3173563 #> 1722 St. Thomas Aquinas (LA) 00-0036330 4035385 #> 1723 New Bern (NC) 00-0034843 3895841 #> 1724 Cherry Hill West (NJ) 00-0036344 4259170 #> 1725 New Boston (TX) 00-0036324 3676819 #> 1726 Lamar (TX) 00-0034213 3929847 #> 1727 Nordonia (OH) 00-0035130 3909365 #> 1728 Chattahoochee (GA) 00-0033628 4220625 #> 1729 Sandalwood (FL) 00-0034641 3116104 #> 1730 Aiken Silver Bluff (SC) 00-0033462 3045136 #> 1731 Decatur (AL) 00-0035365 3917147 #> 1732 Gilmer (TX) 00-0035150 3929845 #> 1733 Kempner (TX) 00-0029215 15085 #> 1734 Lloyd C. Bird (VA) 00-0031799 2577814 #> 1735 University (FL) 00-0032042 2525492 #> 1736 Vance (NC) 00-0035979 4037511 #> 1737 Flanagan (FL) 00-0036348 4046537 #> 1738 Garland (TX) 00-0036138 3908608 #> 1739 Centerville (OH) 00-0033969 2974353 #> 1740 Morton Ranch (TX) 00-0031565 2976560 #> 1741 Lake Taylor (VA) 00-0034264 3121414 #> 1742 Grandview (CO) 00-0032480 2576040 #> 1743 Absegami (NJ) 00-0034587 3119119 #> 1744 Northpointe Christian (MI) 00-0036350 3929833 #> 1745 Stephenson (GA) 00-0036335 4038849 #> 1746 Round Rock (TX) 00-0036337 4259181 #> 1747 Lahainaluna (HI) 00-0034215 3127274 #> 1748 Montini Catholic (IL) 00-0033940 2979523 #> 1749 Denfeld (MN) 00-0032918 4012556 #> 1750 Summerville (SC) 00-0035468 3924352 #> 1751 San Ramon Valley (CA) 00-0034976 3821678 #> 1752 Brookland-Cayce (SC) 00-0031017 16861 #> 1753 Bethel (WA) 00-0036327 4048231 #> 1754 Liberty (AZ) 00-0036354 4682831 #> 1755 Southwest Covenant (OK) 00-0028660 14322 #> 1756 Exeter Township (PA) 00-0032669 2578718 #> 1757 American Heritage (FL) 00-0034450 3975763 #> 1758 Granite Bay (CA) 00-0034986 3701669 #> 1759 Bishop O'Dowd (CA) 00-0033344 2978211 #> 1760 Hoover (CA) 00-0031554 2510863 #> 1761 Gilmer (TX) 00-0035984 3892773 #> 1762 Hudson (OH) 00-0033944 3045212 #> 1763 Lee M. Thurston (MI) 00-0033336 3056916 #> 1764 Eden Prairie (MN) 00-0035533 3121538 #> 1765 Loyola (CA) 00-0031256 16711 #> 1766 Booker T. Washington (OK) 00-0035319 3122420 #> 1767 Paraclete (CA) 00-0031427 17497 #> 1768 Norco (CA) 00-0036338 4038946 #> 1769 Central (TX) 00-0035709 4038201 #> 1770 Parkton (MD) 00-0029714 15726 #> 1771 Long Island Lutheran (NY) 00-0031242 16866 #> 1772 Daphne (AL) 00-0032574 2972144 #> 1773 Christian Brothers College (MO) 00-0034992 3128685 #> 1774 Bearden (TN) 00-0026516 12773 #> 1775 Folsom (CA) 00-0035100 3886812 #> 1776 Holland Christian (MI) 00-0029604 14880 #> 1777 Menomonie (WI) 00-0036279 4036149 #> 1778 Foothill (CA) 00-0032245 2517017 #> 1779 Homewood (AL) 00-0032104 2576336 #> 1780 St. Andrews (FL) 00-0035975 3895835 #> 1781 Baker County (FL) 00-0034208 3139033 #> 1782 Miami Central (FL) 00-0033893 3116593 #> 1783 San Bernardino (CA) 00-0034972 4048244 #> 1784 Knoxville Catholic (TN) 00-0029606 14945 #> 1785 Ed White (FL) 00-0032520 2575446 #> 1786 Parkston (SD) 00-0029672 14930 #> 1787 Salesianum (DE) 00-0034158 3123954 #> 1788 Sanford (NC) 00-0034994 3120502 #> 1789 Central Catholic (OR) 00-0036347 3930270 #> 1790 Carroll (IN) 00-0035102 4411192 #> 1791 Elder (OH) 00-0027981 14054 #> 1792 Brother Martin (LA) 00-0034970 4040980 #> 1793 Helias (MO) 00-0035025 3925348 #> 1794 L'Anse Creuse North (MI) 00-0034270 3915486 #> 1795 Aurora Christian (IL) 00-0034309 3047968 #> 1796 IMG Academy (FL) 00-0036345 3916566 #> 1797 Detroit Lakes (MN) 00-0030035 16460 #> 1798 Bear Creek (CO) 00-0035006 3917067 #> 1799 Downingtown-East (PA) 00-0035976 3929637 #> 1800 Destrehan (LA) 00-0036322 4262921 #> 1801 Dacula (GA) 00-0033793 2973637 #> 1802 Chandler (AZ) 00-0036200 4039374 #> 1803 Iowa City (IA) 00-0031039 17361 #> 1804 Wesleyan (GA) 00-0031852 2578529 #> 1805 Crenshaw (CA) 00-0031337 16788 #> 1806 Blythewood (SC) 00-0029530 15089 #> 1807 South Hills (CA) 00-0034966 3139389 #> 1808 South Pointe (SC) 00-0029542 14942 #> 1809 Spain Park (AL) 00-0035277 3917853 #> 1810 St. Joseph (NJ) 00-0027136 12691 #> 1811 Carrollton (GA) 00-0032580 2971027 #> 1812 Father Ryan (TN) 00-0035241 4035286 #> 1813 Immokalee (FL) 00-0034591 3121649 #> 1814 Seminole County (GA) 00-0033779 2973647 #> 1815 Whitewater (GA) 00-0036231 4401811 #> 1816 Loyola (CA) 00-0036087 4039010 #> 1817 St. Joseph (NJ) 00-0027647 13236 #> 1818 Lake Highlands (TX) 00-0034723 3040031 #> 1819 Cardinal Mooney (OH) 00-0030442 16010 #> 1820 Hebron (TX) 00-0033947 2980080 #> 1821 Thomas Jefferson (PA) 00-0035654 3115974 #> 1822 Immaculata (NJ) 00-0033324 3042726 #> 1823 Delbarton (NJ) 00-0036093 3912189 #> 1824 Duncanville (TX) 00-0033381 2972342 #> 1825 Western (NV) 00-0028171 14185 #> 1826 Woodland (SC) 00-0036455 3728306 #> 1827 Fort Walton Beach (FL) 00-0030402 15958 #> 1828 Armwood (FL) 00-0035278 3916922 #> 1829 Wheaton Warrenville South (IL) 00-0032794 2974365 #> 1830 Jean Ribault (FL) 00-0035726 3115349 #> 1831 Columbia Central (TN) 00-0031580 2576917 #> 1832 Waukee (IA) 00-0035036 3144994 #> 1833 Cass Tech (MI) 00-0036198 4046545 #> 1834 Celina (TX) 00-0033740 2977779 #> 1835 North Shore (TX) 00-0034097 3117420 #> 1836 Notre Dame (CA) 00-0025565 10621 #> 1837 Clifton Park (NY) 00-0036161 3913295 #> 1838 Groveland South Lake (FL) 00-0033102 2978887 #> 1839 King (GA) 00-0034962 3924319 #> 1840 Dadeville (AL) 00-0036193 3925350 #> 1841 Thompson (AL) 00-0031856 3051905 #> 1842 Paramount (CA) 00-0036164 4048736 #> 1843 Middletown (NJ) 00-0033122 2576257 #> 1844 Columbus (FL) 00-0036159 4046528 #> 1845 DeMatha Catholic (MD) 00-0034385 3116187 #> 1846 Marshall County (TN) 00-0029669 14933 #> 1847 Gilman School (MD) 00-0030010 16393 #> 1848 Granite Hills (CA) 00-0032228 2575907 #> 1849 Adlai E. Stevenson (MI) 00-0031938 2511690 #> 1850 Minnetonka (MN) 00-0031089 16912 #> 1851 Santa Fe Christian (CA) 00-0035280 3931395 #> 1852 Westlake (GA) 00-0027939 13994 #> 1853 St. Ignatius (OH) 00-0026625 12477 #> 1854 Milford Academy (NY) 00-0035394 3921586 #> 1855 Stephenville (TX) 00-0035264 3892775 #> 1856 St. Thomas Aquinas (FL) 00-0031062 16913 #> 1857 American Heritage (FL) 00-0034845 3128721 #> 1858 Plano (TX) 00-0030288 15971 #> 1859 Madison Southern (KY) 00-0035657 3925347 #> 1860 Scotlandville Magnet (LA) 00-0029239 15478 #> 1861 Centennial (CA) 00-0036096 4039607 #> 1862 Rancho Cucamonga (CA) 00-0027010 12527 #> 1863 Stephenville (TX) 00-0029764 16286 #> 1864 Garland (TX) 00-0031404 17487 #> 1865 Dunnellon (FL) 00-0031338 16768 #> 1866 Bullis (MD) 00-0036163 3124112 #> 1867 Miramar (FL) 00-0035252 3116455 #> 1868 Montevallo (AL) 00-0034687 3056899 #> 1869 Morris Knolls (NJ) 00-0033290 3115303 #> 1870 Archbishop Alter (OH) 00-0032391 2577773 #> 1871 Odessa (TX) 00-0028076 14116 #> 1872 Seven Lakes (TX) 00-0032779 3047575 #> 1873 Lakewood (FL) 00-0034833 3128713 #> 1874 Clovis North (CA) 00-0034575 3047536 #> 1875 Chatfield (CO) 00-0036225 4240861 #> 1876 Naperville North (IL) 00-0031744 2576179 #> 1877 De La Salle (CA) 00-0036194 4046522 #> 1878 Pope John XXIII (NJ) 00-0034439 3122920 #> 1879 St. John's Prep (MA) 00-0036088 3915308 #> 1880 Lorain (OH) 00-0036086 3915508 #> 1881 Cedar Hill (TX) 00-0033366 3051869 #> 1882 Timber Creek Regional (NJ) 00-0031868 2577667 #> 1883 Arabia Mountain (GA) 00-0034960 3916433 #> 1884 Stephenson (GA) 00-0036100 3916129 #> 1885 Woodside (CA) 00-0027150 12649 #> 1886 Washington (OH) 00-0031934 2576395 #> 1887 Bishop Alemany (CA) 00-0034667 3052122 #> 1888 Alvin (TX) 00-0035645 4424106 #> 1889 Craigmont (TN) 00-0036183 3910176 #> 1890 Raleigh (MS) 00-0031339 16791 #> 1891 Servite (CA) 00-0026293 11387 #> 1892 Junipero Serra (CA) 00-0031431 16787 #> 1893 Chandler (AZ) 00-0035624 4047839 #> 1894 Brother Martin (LA) 00-0034436 3115387 #> 1895 Lufkin (TX) 00-0035242 3917331 #> 1896 Gulliver Prep (FL) 00-0027882 13238 #> 1897 Pahokee (FL) 00-0029681 14974 #> 1898 The Lovett School (GA) 00-0034502 3116166 #> 1899 Glenville (OH) 00-0033874 3121421 #> 1900 Glenville (OH) 00-0033770 2970625 #> 1901 H.D. Woodson (DC) 00-0032875 2979612 #> 1902 Gonzaga College (DC) 00-0029065 15359 #> 1903 Vanguard (FL) 00-0032059 2977661 #> 1904 Eastvale Eleanor Roosevelt (CA) 00-0033894 3122882 #> 1905 Prattville (AL) 00-0035896 3929920 #> 1906 Greenwood (SC) 00-0030566 15865 #> 1907 Jenkins (GA) 00-0032369 2585962 #> 1908 Taylor Allderdice (PA) 00-0031304 16758 #> 1909 Apopka (FL) 00-0033935 3052743 #> 1910 Bishop McDevitt (PA) 00-0032952 2976313 #> 1911 Chandler (AZ) 00-0027962 13971 #> 1912 John Paul Stevens (TX) 00-0034344 3124058 #> 1913 Grant (CA) 00-0035402 3918310 #> 1914 Durham Riverside (NC) 00-0036128 4027908 #> 1915 Madison Prep (LA) 00-0035763 4039064 #> 1916 North Davidson (NC) 00-0035409 3886601 #> 1917 West Forsyth (NC) 00-0035179 3895834 #> 1918 Marmion Academy (IL) 00-0033786 2977635 #> 1919 Ogemaw Heights (MI) 00-0032435 2582150 #> 1920 Chrisland (NGA) 00-0033051 4002046 #> 1921 Forest Hill (MS) 00-0031615 2574023 #> 1922 Eastside (GA) 00-0032759 2970204 #> 1923 Brenham (TX) 00-0032261 2971698 #> 1924 West Morris Central (NJ) 00-0031595 2515270 #> 1925 Corona del Sol (AZ) 00-0032203 2978278 #> 1926 East Gadsden (FL) 00-0035407 3122925 #> 1927 IMG Academy (FL) 00-0036408 4258199 #> 1928 Plainfield (IN) 00-0030694 17178 #> 1929 Hibriten (NC) 00-0031765 2507667 #> 1930 Cardinal Gibbons (FL) 00-0029576 15058 #> 1931 Northgate (GA) 00-0032569 2985659 #> 1932 Lone Peak (UT) 00-0034944 2971641 #> 1933 Brandon (MS) 00-0029607 14958 #> 1934 Brown Deer (WI) 00-0036418 3917657 #> 1935 Wyomissing (PA) 00-0033914 3043107 #> 1936 Stafford (TX) 00-0028834 14860 #> 1937 Judge Memorial Catholic (UT) 00-0035316 3124890 #> 1938 Oxford (AL) 00-0032109 2976541 #> 1939 St. Edward (OH) 00-0035412 3929818 #> 1940 Horizon (CO) 00-0023173 9287 #> 1941 Rowlett (TX) 00-0033063 2575788 #> 1942 The Westminster Schools (GA) 00-0035859 4045180 #> 1943 Pearland (TX) 00-0027114 12701 #> 1944 Hueytown (AL) 00-0031503 2969939 #> 1945 Westlake (TX) 00-0020531 2580 #> 1946 Highland (ID) 00-0033357 2468609 #> 1947 Olympia (FL) 00-0032156 2511109 #> 1948 St. Mark's (TX) 00-0032200 2577134 #> 1949 IMG Academy (FL) 00-0035860 4046676 #> 1950 Norcross (GA) 00-0033906 3054850 #> 1951 <NA> 00-0035405 3911993 #> 1952 Onondaga Central (FL) 00-0030513 15920 #> 1953 Gahr (CA) 00-0032450 3002265 #> 1954 Clarksdale (MS) 00-0034116 3115481 #> 1955 Piscataway (NJ) 00-0026990 12426 #> 1956 Cocoa (FL) 00-0035253 4034953 #> 1957 Riverhead (NY) 00-0035403 3938169 #> 1958 Newport (WA) 00-0035764 3915147 #> 1959 Stevens Point (WI) 00-0033888 3917676 #> 1960 Cahokia (IL) 00-0030067 15821 #> 1961 Elk Rapids (MI) 00-0036422 3911853 #> 1962 Blackfoot (ID) 00-0030216 16143 #> 1963 Minster (OH) 00-0034672 3115360 #> 1964 Sacred Heart Catholic (TX) 00-0032562 2982151 #> 1965 North Gwinnett (GA) 00-0027061 12537 #> 1966 Louisburg (KS) 00-0033095 2987440 #> 1967 Chicago Christian (IL) 00-0032689 3057863 #> 1968 Woodland Hills Taft (CA) 00-0032765 2976316 #> 1969 Detroit Country Day (MI) 00-0030670 16995 #> 1970 Village Academy (FL) 00-0034765 3128451 #> 1971 Archbishop Curley (MD) 00-0035215 4411193 #> 1972 Tift County (GA) 00-0035031 3917200 #> 1973 Southlake Carroll (TX) 00-0035406 4039057 #> 1974 Benicia (CA) 00-0033382 2974339 #> 1975 W.T. Dwyer (FL) 00-0032881 2574918 #> 1976 Glassboro (NJ) 00-0036040 3929645 #> 1977 Bellville (TX) 00-0027685 13295 #> 1978 Warner Robins (GA) 00-0036219 4035170 #> 1979 Haslett (MI) 00-0033021 3057850 #> 1980 Bishop Gorman (NV) 00-0034445 3116096 #> 1981 Evangelical Christian (TN) 00-0032911 2577792 #> 1982 South Lake (FL) 00-0030649 17066 #> 1983 Doherty (MA) 00-0034780 3122797 #> 1984 Ottawa Hills (MI) 00-0034839 3916720 #> 1985 Eastlake (WA) 00-0033608 2970264 #> 1986 University School (FL) 00-0033544 3121660 #> 1987 Calabasas (CA) 00-0036394 4242973 #> 1988 Pleasant Grove (AL) 00-0032890 2572841 #> 1989 Olentangy (OH) 00-0035925 3911073 #> 1990 Mineral Wells (TX) 00-0033302 2971699 #> 1991 Nazareth Academy (IL) 00-0034974 4046675 #> 1992 Lamar (TX) 00-0036084 4038440 #> 1993 Eastern (NJ) 00-0030411 15861 #> 1994 Roswell (GA) 00-0036388 4241470 #> 1995 Callaway (MS) 00-0034774 3128740 #> 1996 Cardinal Gibbons (FL) 00-0034848 3917872 #> 1997 St. Vincent-St. Mary (OH) 00-0035816 4030955 #> 1998 Wake Forest (NC) 00-0035683 4035483 #> 1999 Hollywood Hills (FL) 00-0027975 14036 #> 2000 Mainland (FL) 00-0031933 2971622 #> 2001 West Stanly (NC) 00-0034800 3116748 #> 2002 Kearny (CA) 00-0035985 3127587 #> 2003 Norwalk (CA) 00-0032813 2575965 #> 2004 Moody (AL) 00-0031928 2516029 #> 2005 Chaparral (NV) 00-0034346 3042516 #> 2006 Wisconsin Lutheran (WI) 00-0029592 14931 #> 2007 West Valley (WA) 00-0036397 3915142 #> 2008 Elk Grove (CA) 00-0028240 14460 #> 2009 Tate (FL) 00-0026858 12460 #> 2010 Scappoose (OR) 00-0031596 2972400 #> 2011 Bullis (MD) 00-0036400 4045165 #> 2012 Norcross (GA) 00-0034360 3128715 #> 2013 Winter Park (FL) 00-0034588 3123054 #> 2014 Harris County (GA) 00-0036167 3915171 #> 2015 Eden Prairie (MN) 00-0036402 4034766 #> 2016 Hertford County (NC) 00-0035708 3123233 #> 2017 Mountlake Terrace (WA) 00-0034167 3122593 #> 2018 Canyon del Oro (AZ) 00-0032408 2978273 #> 2019 Miramar (FL) 00-0033242 3051924 #> 2020 Richland Northeast (SC) 00-0036404 4038811 #> 2021 Mesa (AZ) 00-0032955 2574229 #> 2022 Riverdale (TN) 00-0029959 16359 #> 2023 Central (IA) 00-0030957 17304 #> 2024 St. Augustine Prep (NJ) 00-0032763 2979591 #> 2025 Henry County (GA) 00-0033546 2979860 #> 2026 Pace (FL) 00-0034648 3040204 #> 2027 Christian Brothers Academy (NY) 00-0032943 2577619 #> 2028 Charlotte Latin (NC) 00-0035710 3917792 #> 2029 Jim Ned (TX) 00-0027688 13199 #> 2030 Wenonah (AL) 00-0027796 13484 #> 2031 Wheaton North (IL) 00-0035283 3116144 #> 2032 Lexington (IL) 00-0029623 15693 #> 2033 IMG Academy (FL) 00-0036449 4683485 #> 2034 Albany Academy (NY) 00-0028087 14198 #> 2035 Grayson (GA) 00-0033950 3045127 #> 2036 Bayside (VA) 00-0033373 3048680 #> 2037 Madison County (AL) 00-0034551 3053732 #> 2038 Paul Harding (IN) 00-0031900 2512197 #> 2039 Whitehall (PA) 00-0034844 3929630 #> 2040 Pine Forest (FL) 00-0029141 15009 #> 2041 Paramus Catholic (NJ) 00-0033883 3115962 #> 2042 Hilliard Davidson (OH) 00-0029570 15125 #> 2043 Crisp County (GA) 00-0035339 3915970 #> 2044 Governor's Academy (MA) 00-0036392 3921936 #> 2045 Brighton (UT) 00-0035003 3122865 #> 2046 Center Grove (IN) 00-0034128 3040210 #> 2047 Pace Academy (GA) 00-0036386 4259566 #> 2048 Cypress Creek (TX) 00-0031067 16932 #> 2049 Attleboro (MA) 00-0035870 4032758 #> 2050 Buena Vista (CO) 00-0027955 13964 #> 2051 Hillgrove (GA) 00-0033881 3051876 #> 2052 Marcus (TX) 00-0034988 4044452 #> 2053 Vancouver College (BC) 00-0035991 4045062 #> 2054 Helix (CA) 00-0030443 15980 #> 2055 Cathedral (CA) 00-0034256 3056577 #> 2056 Pope John Paul II (TN) 00-0027891 13217 #> 2057 Coconut Grove (FL) 00-0032935 3056906 #> 2058 West Creek (TN) 00-0033367 2973626 #> 2059 Bishop Luers (IN) 00-0035869 4040623 #> 2060 Greater Atlanta Christian (GA) 00-0035535 3916945 #> 2061 Oaks Christian (CA) 00-0035602 3919510 #> 2062 Eastern Christian Academy (MD) 00-0035359 3871102 #> 2063 JSerra Catholic (CA) 00-0034860 3127306 #> 2064 Auburn (AL) 00-0032795 2980378 #> 2065 Heritage Hall (OK) 00-0032385 2976592 #> 2066 J.J. Pearce (TX) 00-0032966 2978929 #> 2067 Shanley (ND) 00-0033011 2577367 #> 2068 Sacred Heart Prep (CA) 00-0033750 2980597 #> 2069 Loyola Academy (IL) 00-0034295 3048026 #> 2070 Boynton Beach (FL) 00-0035499 3125705 #> 2071 Southeast (FL) 00-0032596 2980115 #> 2072 Shawnee Heights (KS) 00-0035633 4411769 #> 2073 Bonnabel (LA) 00-0033503 3916144 #> 2074 Campus Magnet (NY) 00-0035294 3870072 #> 2075 Christian (NC) 00-0032496 2579840 #> 2076 Trinity Episcopal (VA) 00-0036021 4239965 #> 2077 Bishop McDevitt (PA) 00-0036241 NA #> 2078 Holy Trinity (FL) 00-0033892 2980110 #> 2079 Vista Murrieta (CA) 00-0036149 4243250 #> 2080 Franklin (CA) 00-0036152 4034849 #> 2081 Raritan (NJ) 00-0031188 16879 #> 2082 Nottingham (NJ) 00-0035288 3127367 #> 2083 St. Paul Central (MN) 00-0034248 3932901 #> 2084 Hillsboro (TN) 00-0035507 3886528 #> 2085 Greenville (TX) 00-0034805 3120464 #> 2086 Sprayberry (GA) 00-0036296 3915123 #> 2087 St. Paul's Episcopal (AL) 00-0036151 4039375 #> 2088 Woodward Academy (GA) 00-0032269 2517752 #> 2089 Beach Channel (NY) 00-0034275 3045172 #> 2090 Miramar (FL) 00-0032566 2982880 #> 2091 Scotlandville Magnet (LA) 00-0033963 3041112 #> 2092 J. Clarke Richardson (ON) 00-0034760 4076951 #> 2093 Colony (CA) 00-0030706 16963 #> 2094 Pickerington North (OH) 00-0033909 2976295 #> 2095 Chaminade (NY) 00-0029685 15718 #> 2096 La Joya (TX) 00-0031385 NA #> 2097 Cypress Woods (TX) 00-0035358 3150744 #> 2098 Valparaiso (IN) 00-0033138 2582139 #> 2099 Newnan (GA) 00-0030527 15806 #> 2100 Novi (MI) 00-0033997 3057876 #> 2101 Concord (DE) 00-0029792 16243 #> 2102 Inglewood (CA) 00-0032573 2576761 #> 2103 Theodore (AL) 00-0031296 16720 #> 2104 Rockdale County (GA) 00-0031740 3059880 #> 2105 Eden Prairie (MN) 00-0035276 3728281 #> 2106 Franklin County (VA) 00-0033917 3052977 #> 2107 James F. Byrnes (SC) 00-0035549 3911689 #> 2108 Harris County (GA) 00-0032970 2977647 #> 2109 Tafuna (ASM) 00-0034302 3127273 #> 2110 Bingham (UT) 00-0033392 2570996 #> 2111 Westlake (TX) 00-0032248 2512999 #> 2112 Henrico (VA) 00-0034659 3051333 #> 2113 Don Bosco Prep (NJ) 00-0033260 2983155 #> 2114 Wenonah (AL) 00-0035718 4040982 #> 2115 Cy-Fair (TX) 00-0036313 4035239 #> 2116 <NA> 00-0034918 3042565 #> 2117 Palma (CA) 00-0031076 16821 #> 2118 NSU University School (FL) 00-0034401 3051381 #> 2119 Audubon (NJ) 00-0026158 11252 #> 2120 Ashwaubenon (WI) 00-0036301 3914395 #> 2121 San Clemente (CA) 00-0034869 3912547 #> 2122 Fort Hill (MD) 00-0035537 3915411 #> 2123 Lyndhurst (NJ) 00-0036454 4262315 #> 2124 Theodore (AL) 00-0036269 4034952 #> 2125 Crest 00-0035505 3123675 #> 2126 Coral Gables (FL) 00-0023500 8479 #> 2127 Central Bucks South (PA) 00-0034457 3932420 #> 2128 Astronaut (FL) 00-0035044 4264341 #> 2129 Santa Cruz (CA) 00-0036329 3858271 #> 2130 Scioto (OH) 00-0030161 16269 #> 2131 Ben L. Smith (NC) 00-0036263 3914277 #> 2132 Mountain Pointe (AZ) 00-0032407 3116110 #> 2133 The Ensworth School (TN) 00-0033300 2971584 #> 2134 Warren Central (KY) 00-0032466 2583951 #> 2135 Highland Springs (VA) 00-0036284 4240090 #> 2136 McEachern (GA) 00-0035698 3701582 #> 2137 Chaska (MN) 00-0032319 3936647 #> 2138 Norcross (GA) 00-0034766 3123050 #> 2139 Musselman (WV) 00-0035259 4039253 #> 2140 Fallston (MD) 00-0036451 NA #> 2141 Londonderry (NH) 00-0030108 15887 #> 2142 Monroe (NC) 00-0031941 2576716 #> 2143 Leesville Road (NC) 00-0034419 3123075 #> 2144 Station Camp (TN) 00-0033859 3115330 #> 2145 Madison Central (MS) 00-0035045 4249030 #> 2146 Mansfield Legacy (TX) 00-0032760 2576019 #> 2147 Clearwater Central Catholic (FL) 00-0035510 3929118 #> 2148 Daingerfield (TX) 00-0036255 4035403 #> 2149 Rock Hill (SC) 00-0034267 4040792 #> 2150 Calvert Hall (MD) 00-0036145 3917849 #> 2151 Ramapo (NJ) 00-0028237 14402 #> 2152 Westwood (SC) 00-0034631 3155188 #> 2153 Isle of Wight (VA) 00-0032098 2519013 #> 2154 Arabia Mountain (GA) 00-0032054 2972460 #> 2155 Marmion Academy (IL) 00-0035999 3916744 #> 2156 Cleveland Heights (OH) 00-0028129 14124 #> 2157 Cedar Falls (IA) 00-0035274 3126364 #> 2158 Brunswick (GA) 00-0030062 15863 #> 2159 Muir (CA) 00-0032942 2971603 #> 2160 Frostproof (FL) 00-0030041 16217 #> 2161 Glades Central (FL) 00-0032581 2982870 #> 2162 Edwardsville (IL) 00-0034310 3116058 #> 2163 Martin Luther King (MI) 00-0034377 3123938 #> 2164 Central (TX) 00-0035998 3917576 #> 2165 Martin Luther King (MI) 00-0035885 4046538 #> 2166 DeMatha Catholic (MD) 00-0028899 15222 #> 2167 Chaparral (AZ) 00-0035172 3935064 #> 2168 Newfield (NY) 00-0036002 4036924 #> 2169 Highland Springs (VA) 00-0036395 4035463 #> 2170 Kountze (TX) 00-0035995 4035389 #> 2171 St. Michael's Academy (TX) 00-0036116 NA #> 2172 Oscar Smith (VA) 00-0034381 3693166 #> 2173 Crockett (MI) 00-0027865 13239 #> 2174 Neptune (NJ) 00-0029412 14959 #> 2175 St. Michael's (AUS) 00-0036446 4241264 #> 2176 LaSalle (MI) 00-0034463 3044706 #> 2177 Brentwood Academy (TN) 00-0033876 3115336 #> 2178 DePaul College Prep (IL) 00-0036007 3929834 #> 2179 Yazoo City (MS) 00-0029653 14941 #> 2180 North Rowan (NC) 00-0033109 2983055 #> 2181 Mansfield (TX) 00-0032402 2971725 #> 2182 Birmingham (CA) 00-0029568 15047 #> 2183 Wayne County (GA) 00-0032162 2577757 #> 2184 Penn Hills (PA) 00-0033976 2973027 #> 2185 Corvallis (OR) 00-0032954 2978247 #> 2186 Riverside (WI) 00-0029679 14962 #> 2187 St. Louis (HI) 00-0035383 4044438 #> 2188 Fern Creek (KY) 00-0032244 2576647 #> 2189 Lakewood (CA) 00-0034417 3055886 #> 2190 Stansbury (UT) 00-0035384 3121009 #> 2191 Lyons Township (IL) 00-0033787 3050478 #> 2192 Grenada (MS) 00-0034682 3126204 #> 2193 Lakes Community (IL) 00-0035386 3121544 #> 2194 Rancocas Valley (NJ) 00-0036401 4038902 #> 2195 Glades Central (FL) 00-0032895 2971929 #> 2196 John Curtis Christian (LA) 00-0033549 3042725 #> 2197 Homestead (FL) 00-0036209 4040762 #> 2198 Thousand Oaks (CA) 00-0031898 2612151 #> 2199 South Pike (MS) 00-0036393 4360645 #> 2200 Washington (SD) 00-0033577 3040475 #> 2201 Berea (OH) 00-0035895 4036507 #> 2202 Middletown (NJ) 00-0031911 2565971 #> 2203 St. Joseph's (AUS) 00-0033729 3051397 #> 2204 Hallam Secondary (AUS) 00-0036013 4371989 #> 2205 Modesto Christian (CA) 00-0032792 2979501 #> 2206 Channelview (TX) 00-0036389 4040715 #> 2207 Century (ND) 00-0032950 2573079 #> 2208 <NA> 00-0035387 NA #> 2209 Gardendale (AL) 00-0032780 3060022 #> 2210 Woodward Academy (GA) 00-0035442 4035006 #> 2211 Woodland Hills (PA) 00-0035243 4045163 #> 2212 Mainland (FL) 00-0036000 4042112 #> 2213 Zachary (LA) 00-0034414 3051439 #> 2214 Glassboro (NJ) 00-0033725 3045260 #> 2215 Martin (TX) 00-0036278 4040790 #> 2216 Edison (CA) 00-0034993 3139368 #> 2217 New Hope (AL) 00-0033792 3051901 #> 2218 Desoto (TX) 00-0032803 2976540 #> 2219 Our Lady of Good Counsel (MD) 00-0032793 2576229 #> 2220 Groveton (TX) 00-0030561 15797 #> 2221 Condell Park (AUS) 00-0034429 4334215 #> 2222 West Ashley (SC) 00-0035743 3129116 #> 2223 Daniel Hand (CT) 00-0036396 3932668 #> 2224 Woodinville (WA) 00-0035233 3127264 #> 2225 Queen City (TX) 00-0022531 6012 #> 2226 Monte Vista (CA) 00-0030061 15835 #> 2227 Gahr (CA) 00-0032599 2578377 #> 2228 Mona Shores (MI) 00-0035356 3916564 #> 2229 Norcross (GA) 00-0033627 2972240 #> 2230 Britton-Hecla (SD) 00-0034351 3121023 #> 2231 Junipero Serra (CA) 00-0035320 3932936 #> 2232 Travis (TX) 00-0035529 3917940 #> 2233 St. John's (MA) 00-0031384 16786 #> 2234 Rowlett (TX) 00-0030068 15839 #> 2235 John Tyler (TX) 00-0033733 3040035 #> 2236 Serra (CA) 00-0034653 3932935 #> 2237 Broad Run (VA) 00-0035592 3139522 #> 2238 Waxahachie (TX) 00-0036387 4241802 #> 2239 North Pontotoc (MS) 00-0035296 3124964 #> 2240 Athens (AL) 00-0036271 4050373 #> 2241 Dorman (SC) 00-0035246 3931397 #> 2242 Calhoun County (SC) 00-0029137 14912 #> 2243 Long Beach Poly (CA) 00-0026189 11283 #> 2244 Riverdale Baptist (MD) 00-0036398 4373673 #> 2245 Lakeland (FL) 00-0027870 13250 #> 2246 East Ridge (MN) 00-0034142 3126353 #> 2247 Benedictine (OH) 00-0035650 4046719 #> 2248 Calvert Hall (MD) 00-0032916 2979605 #> 2249 Jonesboro (GA) 00-0033930 3044724 #> 2250 Friendly (MD) 00-0027860 13249 #> 2251 Sandy Creek (GA) 00-0032521 2980383 #> 2252 Deerfield Beach (FL) 00-0035795 4259252 #> 2253 James S. Rickards (FL) 00-0035598 4408864 #> 2254 Northside (GA) 00-0032150 3045287 #> 2255 Duval (MD) 00-0036346 4036213 #> 2256 Maret (DC) 00-0033053 2976210 #> 2257 Henry Wise (MD) 00-0034335 3116149 #> 2258 Whitmer (OH) 00-0033913 2977615 #> 2259 Oaks Christian (CA) 00-0031175 16873 #> 2260 Jesuit (OR) 00-0034318 3122690 #> 2261 Ruston (LA) 00-0035219 4241451 #> 2262 St. Louis (HI) 00-0027862 13233 #> 2263 Monroe (GA) 00-0031412 16798 #> 2264 Augusta Christian (GA) 00-0035820 3915253 #> 2265 Peachtree Ridge (GA) 00-0027969 13977 #> 2266 Blue Springs (MO) 00-0036352 3699462 #> 2267 Manatee (FL) 00-0035595 3122915 #> 2268 Pewaukee (WI) 00-0032897 2576450 #> 2269 Plaquemine (LA) 00-0036339 3917599 #> 2270 Cypress Bay (FL) 00-0033960 2969959 #> 2271 Bellevue (WA) 00-0029678 14935 #> 2272 Fossil Ridge (TX) 00-0031136 17372 #> 2273 George Bush (TX) 00-0034204 3126081 #> 2274 Fenwick (IL) 00-0034720 3129446 #> 2275 Ridge Community (FL) 00-0030434 15934 #> 2276 Wilkinson County (GA) 00-0032146 2576702 #> 2277 Colerain (OH) 00-0034121 3128268 #> 2278 Charles W. Flanagan (FL) 00-0035525 4036261 #> 2279 Pewaukee (WI) 00-0033886 3045282 #> 2280 Milan (TN) 00-0031263 16920 #> 2281 Chartiers Valley (PA) 00-0034051 2978524 #> 2282 Eugene Ashley (NC) 00-0036333 4037333 #> 2283 Trinity Catholic (FL) 00-0035223 3920867 #> 2284 Glenville (OH) 00-0030752 16991 #> 2285 Sheldon (OR) 00-0032486 2967885 #> 2286 Melbourne (AUS) 00-0031502 2472364 #> 2287 Milton (FL) 00-0035821 3125280 #> 2288 Alpharetta (GA) 00-0033949 3044720 #> 2289 Findlay (OH) 00-0022924 5536 #> 2290 Northwestern (SC) 00-0034771 3116407 #> 2291 Bullis School (NJ) 00-0035232 4040616 #> 2292 Mallard Creek (NC) 00-0034331 3116721 #> 2293 DeMatha Catholic (MD) 00-0036336 4241941 #> 2294 Westerville Central (OH) 00-0035217 4035072 #> 2295 Dan River (VA) 00-0033838 2970090 #> 2296 Eastern Christian Academy (MD) 00-0032782 3042429 #> 2297 McDowell (PA) 00-0033553 3045147 #> 2298 Royal Palm Beach (FL) 00-0030023 16179 #> 2299 Dan River (VA) 00-0034858 3124067 #> 2300 Hallandale (FL) 00-0035498 3115371 #> 2301 St. Peter's Prep (NJ) 00-0034789 3925345 #> 2302 Willowridge (TX) 00-0033326 2971556 #> 2303 Lakes (WA) 00-0033785 2971616 #> 2304 Tottenville (NY) 00-0034625 3119215 #> 2305 West St. Mary (LA) 00-0033085 2976554 #> 2306 Aquinas Institute (NY) 00-0033715 2980142 #> 2307 Lampeter-Strasburg (PA) 00-0031142 17404 #> 2308 Southfield (MI) 00-0034768 3129473 #> 2309 SHAPE High School (BEL) 00-0030648 16706 #> 2310 Seminole (FL) 00-0036123 4040778 #> 2311 Holy Savior Menard Central (LA) 00-0034937 3126261 #> 2312 Smith (NC) 00-0031387 16732 #> 2313 East Chambers (TX) 00-0030470 15853 #> 2314 Pine-Richland (PA) 00-0034193 3049290 #> 2315 Eldorado (NM) 00-0035222 3929924 #> 2316 Timpview (UT) 00-0035058 3932963 #> 2317 St. Augustine (LA) 00-0035553 3126263 #> 2318 Abbotsford (CAN) 00-0036326 4046692 #> 2319 Earl J. Lennard (FL) 00-0035216 3932905 #> 2320 South Pointe (SC) 00-0035474 4049301 #> 2321 Stamford (TX) 00-0034676 3122449 #> 2322 Walled Lake Western (MI) 00-0035891 4241983 #> 2323 Sickles (FL) 00-0034407 3728262 #> 2324 Long Beach Poly (CA) 00-0033857 3120348 #> 2325 Lemont (IL) 00-0033901 3042738 #> 2326 Liberty Christian (TX) 00-0034239 3122432 #> 2327 Creekside (GA) 00-0035207 3915190 #> 2328 Merrillville (IN) 00-0034527 3121344 #> 2329 Lakewood (FL) 00-0033926 3054026 #> 2330 Booker T. Washington (FL) 00-0032007 2516049 #> 2331 Oceanside (CA) 00-0035285 3886824 #> 2332 Tucker (GA) 00-0029329 15535 #> 2333 Judson (TX) 00-0034756 3046326 #> 2334 Wooster (OH) 00-0035139 4243244 #> 2335 Archbishop Stepinac (NY) 00-0036056 3912347 #> 2336 Angleton (TX) 00-0031608 2577553 #> 2337 Overton (TN) 00-0035142 3886834 #> 2338 Independence (CA) 00-0034384 3139387 #> 2339 Pensacola (FL) 00-0032251 3043258 #> 2340 Euclid (OH) 00-0034130 3125816 #> 2341 Hopewell (VA) 00-0036413 3915396 #> 2342 Judson (TX) 00-0036426 4254276 #> 2343 McKeesport (PA) 00-0033024 2577642 #> 2344 Crest (NC) 00-0033093 2980097 #> 2345 Junipero Serra (CA) 00-0034831 3912562 #> 2346 Fort Dorchester (SC) 00-0027662 13274 #> 2347 Munday (TX) 00-0035636 3116449 #> 2348 Inglewood (CA) 00-0030380 16528 #> 2349 Rowlett (TX) 00-0030069 15858 #> 2350 East English Village Prep (MI) 00-0036058 4036138 #> 2351 Goldsboro (NC) 00-0032387 3115312 #> 2352 Whitefish Bay (WI) 00-0028292 14471 #> 2353 Western (CA) 00-0027869 13246 #> 2354 Canton (MS) 00-0036417 4362647 #> 2355 Westlake (GA) 00-0030593 15814 #> 2356 Raleigh Enloe (NC) 00-0035141 3136374 #> 2357 Wylie (TX) 00-0033592 2978933 #> 2358 Crespi (CA) 00-0033446 2971614 #> 2359 St. Edward (OH) 00-0026762 12910 #> 2360 Mater Dei Catholic (CA) 00-0031492 2473037 #> 2361 Sacred Heart Prep (CA) 00-0035143 3886816 #> 2362 Stratford (TX) 00-0036409 4043130 #> 2363 Brighton (UT) 00-0035672 3926229 #> 2364 Lakewood (FL) 00-0034755 3054029 #> 2365 Sanford (FL) 00-0030050 16463 #> 2366 Langston Hughes (GA) 00-0035284 3915196 #> 2367 Colony (CA) 00-0029255 14979 #> 2368 University Lab (LA) 00-0033915 3054862 #> 2369 Stephenson (GA) 00-0029193 14946 #> 2370 Olive Branch (MS) 00-0028037 14140 #> 2371 Jenks (OK) 00-0031156 17378 #> 2372 Highland (UT) 00-0035094 3115979 #> 2373 Hilton Head (SC) 00-0034234 3125114 #> 2374 Kirrawee (AUS) 00-0034160 3929851 #> 2375 Gaither (FL) 00-0034732 3128843 #> 2376 Miramar (FL) 00-0030565 15864 #> 2377 South Vigo (IN) 00-0034423 3052450 #> 2378 Collegiate (VA) 00-0029263 14881 #> 2379 Tuscaloosa County (AL) 00-0034432 3126367 #> 2380 Norwalk (CA) 00-0034750 3139925 #> 2381 South Plantation (FL) 00-0032426 3046409 #> 2382 Naples (FL) 00-0031045 16777 #> 2383 The Woodlands (TX) 00-0036054 3915427 #> 2384 Glynn Academy (GA) 00-0036425 4240631 #> 2385 Oxbridge Academy (FL) 00-0035594 4037457 #> 2386 Parkview (GA) 00-0033594 3919596 #> 2387 Carrollton Hebron (TX) 00-0033872 3115373 #> 2388 Cass Tech (MI) 00-0033931 3045214 #> 2389 De La Salle (IL) 00-0034729 3121417 #> 2390 Santa Monica (CA) 00-0033744 2971615 #> 2391 Allen (TX) 00-0032233 2511825 #> 2392 Hermitage (VA) 00-0026166 11260 #> 2393 Copiah-Lincoln (MS) 00-0035986 4242246 #> 2394 Goose Creek (SC) 00-0032420 2577690 #> 2395 Coffee (GA) 00-0035504 3128449 #> 2396 Wayne Hills (NJ) 00-0025418 10475 #> 2397 IMG Academy (FL) 00-0036059 3916587 #> 2398 St. Thomas of Villanova (CAN) 00-0030089 16121 #> 2399 Oaks Christian (CA) 00-0036244 4242557 #> 2400 Bozeman (MT) 00-0034159 3127292 #> 2401 Mountain View (OR) 00-0033387 3125404 #> 2402 Booker T. Washington (OK) 00-0032211 2577327 #> 2403 Cedar City (UT) 00-0035597 3933064 #> 2404 Lovejoy (TX) 00-0035987 4039000 #> 2405 North Marion (FL) 00-0036247 4034950 #> 2406 King's Ridge Christian (GA) 00-0035022 3917546 #> 2407 Elkins (TX) 00-0034710 3051650 #> 2408 Crete-Monee (IL) 00-0033992 3049249 #> 2409 Gainesville (TX) 00-0033589 4212909 #> 2410 Oxford (MS) 00-0035640 4047650 #> 2411 St. Thomas Aquinas (FL) 00-0032208 2579604 #> 2412 Huron (OH) 00-0035164 3126115 #> 2413 Lamar (TX) 00-0029664 15705 #> 2414 Hanford (WA) 00-0032459 2565338 #> 2415 Central (CO) 00-0027282 13802 #> 2416 Bushland (TX) 00-0031238 16746 #> 2417 Plano East (TX) 00-0032701 2577185 #> 2418 Elkhorn (NE) 00-0031047 16743 #> 2419 Crespi (CA) 00-0031561 2516984 #> 2420 Varina (VA) 00-0034996 3048681 #> 2421 Dominguez (CA) 00-0028092 14086 #> 2422 Christian Brothers (CA) 00-0033783 3122630 #> 2423 Dudley (NC) 00-0034096 3115337 #> 2424 Stockbridge (GA) 00-0035318 3128743 #> 2425 Helix (CA) 00-0030484 15866 #> 2426 St. Joseph Regional (NJ) 00-0031253 17444 #> 2427 Rodriguez (CA) 00-0031334 16726 #> 2428 Independence (NC) 00-0034840 3871875 #> 2429 Pennington Prep (NJ) 00-0031061 16893 #> 2430 Sachse (TX) 00-0035808 4040975 #> 2431 Grafton (MA) 00-0033900 2974247 #> 2432 Quitman (MS) 00-0034263 4039278 #> 2433 Wilmington Delcastle Tech (DE) 00-0032517 2970694 #> 2434 Davidson (AL) 00-0031298 16717 #> 2435 Rockhurst (CA) 00-0033912 3052434 #> 2436 Pleasant Grove (CA) 00-0032164 2971275 #> 2437 Rose (NC) 00-0034320 3116726 #> 2438 Coppell (TX) 00-0033870 3117258 #> 2439 Presbyterian Boys' Secondary (GHA) 00-0030059 15785 #> 2440 Desert Ridge (AZ) 00-0033746 2976114 #> 2441 St. Thomas Aquinas (FL) 00-0035717 4040605 #> 2442 Chandler (AZ) 00-0030555 15800 #> 2443 Greene County (GA) 00-0032413 2567711 #> 2444 Lyndon B. Johnson (TX) 00-0030946 17068 #> 2445 St. Clair County (AL) 00-0031297 16707 #> 2446 Lancaster (TX) 00-0033285 3051807 #> 2447 Chapel Hill (GA) 00-0035874 NA #> 2448 Goose Creek (SC) 00-0036260 4259491 #> 2449 Bishop Dunne (TX) 00-0035802 3919607 #> 2450 Wren (SC) 00-0033297 3894915 #> 2451 Altoona (PA) 00-0035026 3929641 #> 2452 Cloverleaf (OH) 00-0029892 16002 #> 2453 Lane Technical (IL) 00-0032234 2512477 #> 2454 Skyline (UT) 00-0029699 14976 #> 2455 Valley Center (CA) 00-0033221 2976117 #> 2456 John Adams (OH) 00-0033161 2574302 #> 2457 Central Mountain (PA) 00-0023252 9354 #> 2458 Ansbach (DEU) 00-0031961 2576030 #> 2459 Los Gatos (CA) 00-0030401 15819 #> 2460 Mission Hills (CA) 00-0034815 3138826 #> 2461 Academy at Shawnee (KY) 00-0035804 3908558 #> 2462 Palos Verdes (CA) 00-0032809 3043184 #> 2463 Hillsborough (FL) 00-0035166 3919117 #> 2464 Fayetteville (AR) 00-0034982 3916903 #> 2465 Saline (MI) 00-0033199 2979553 #> 2466 China Spring (TX) 00-0028374 14426 #> 2467 Walsh Jesuit (OH) 00-0032896 2578698 #> 2468 Lumen Christi College (AUS) 00-0034941 4035685 #> 2469 Oakland Tech (CA) 00-0026300 11394 #> 2470 Spain Park (AL) 00-0033319 3059989 #> 2471 Rolling Meadows (IL) 00-0031345 16760 #> 2472 St. John Bosco (CA) 00-0034343 3886377 #> 2473 Battle Ground Academy (TN) 00-0033936 2979520 #> 2474 Clovis (CA) 00-0035807 4049391 #> 2475 Sprayberry (GA) 00-0031376 16782 #> 2476 Cathedral Catholic (CA) 00-0031190 16838 #> 2477 Elkhart (TX) 00-0034115 3122976 #> 2478 New Smyrna Beach (FL) 00-0031687 2576414 #> 2479 Crosby (TX) 00-0035187 3123857 #> 2480 Oak Forest (IL) 00-0032058 2979477 #> 2481 Longview (TX) 00-0035806 3928925 #> 2482 Dr. Phillips (FL) 00-0034730 3043110 #> 2483 Mountain View (AZ) 00-0035020 3931424 #> 2484 Southfield (MI) 00-0033022 3124889 #> 2485 Davidson (AL) 00-0032057 2509844 #> 2486 Liberty (NV) 00-0033649 3053804 #> 2487 North Miami Beach (FL) 00-0030538 15831 #> 2488 Longview (TX) 00-0027857 13241 #> 2489 Timpview (UT) 00-0034945 2970513 #> 2490 Centerville (VA) 00-0034989 3915777 #> 2491 William Penn Charter (PA) 00-0034847 3052885 #> 2492 Olive Branch (MS) 00-0033097 2574573 #> 2493 Plainfield North (IL) 00-0035515 3916465 #> 2494 Rosemount (MN) 00-0029144 15082 #> 2495 Union Local (OH) 00-0036256 3916075 #> 2496 Holy Names (CAN) 00-0034229 4335942 #> 2497 Glenwood (IL) 00-0035428 3115359 #> 2498 Oakridge (CA) 00-0034073 3120303 #> 2499 Hargrave (TX) 00-0035805 3880416 #> 2500 New London (CT) 00-0030472 15860 #> 2501 Rabun County (GA) 00-0036429 4035020 #> 2502 Norman (OK) 00-0033288 3040151 #> 2503 Evangel Christian Academy (LA) 00-0033292 3040569 #> 2504 Beech (TN) 00-0034971 3115328 #> 2505 Centennial (AZ) 00-0035035 4039604 #> 2506 Milwaukie Arts Academy (WI) 00-0033307 3045523 #> 2507 Madison Academy (AL) 00-0031299 16763 #> 2508 Inman Chapman (SC) 00-0035719 3126486 #> 2509 Blackman (TN) 00-0036259 3886598 #> 2510 Curie (IL) 00-0035838 4041703 #> 2511 Glades Central (FL) 00-0029269 15062 #> 2512 Emmaus (PA) 00-0031545 3042435 #> 2513 Providence (NC) 00-0034442 3116680 #> 2514 Riverview (FL) 00-0034286 3122899 #> 2515 Santa Margarita Catholic (CA) 00-0034054 3052056 #> 2516 McQueen (NV) 00-0036261 4360438 #> 2517 Gainesville (FL) 00-0033855 3054970 #> 2518 Moon Area (PA) 00-0026950 12726 #> 2519 Fort Morgan (CO) 00-0029895 16038 #> 2520 Chippewa Valley (MI) 00-0035239 3932886 #> 2521 Wise (MD) 00-0032772 2574666 #> 2522 Plant (FL) 00-0035714 3139613 #> 2523 Cocoa (FL) 00-0035699 3873935 #> 2524 Miami Norland (FL) 00-0034778 3916923 #> 2525 Charlotte Latin (NC) 00-0031016 16843 #> 2526 Trinity Christian Academy (FL) 00-0036046 3920823 #> 2527 Miramar (FL) 00-0035210 3919107 #> 2528 Winton Woods (OH) 00-0035681 3155647 #> 2529 The Woodlands (TX) 00-0036411 4034790 #> 2530 St. Rita (IL) 00-0033595 2980206 #> 2531 Lakes (WA) 00-0036050 3886826 #> 2532 Grant (OR) 00-0027855 13234 #> 2533 Deerfield Beach (FL) 00-0027867 13256 #> 2534 Costa Mesa (CA) 00-0035000 3933407 #> 2535 Southeastern (MI) 00-0030386 16019 #> 2536 Gainesville (GA) 00-0033582 3892689 #> 2537 Archer (GA) 00-0036180 4038840 #> 2538 Blue Springs (MO) 00-0036430 3699530 #> 2539 Central (AL) 00-0031957 2575453 #> 2540 New Smyrna Beach (FL) 00-0035586 3121542 #> 2541 Faith Lutheran (NV) 00-0036048 3722375 #> 2542 St. Anne's-Belfield (VA) 00-0034668 3049339 #> 2543 Hastings (NY) 00-0032243 3165702 #> 2544 Concord (NC) 00-0036105 3920591 #> 2545 Simon Gratz (PA) 00-0030504 15901 #> 2546 Palm Harbor University (FL) 00-0027607 13403 #> 2547 Dublin (CA) 00-0034678 3059021 #> 2548 Hickory (NC) 00-0026968 12731 #> 2549 Hill Murray (MN) 00-0034415 3045259 #> 2550 Peachtree Ridge (GA) 00-0030382 15856 #> 2551 Vanden (CA) 00-0031366 16723 #> 2552 Waukee (IA) 00-0035254 3894856 #> 2553 Boys Town (NE) 00-0031101 16967 #> 2554 Chapel Hill (GA) 00-0036045 4034496 #> 2555 North Webster (LA) 00-0035707 4035434 #> 2556 Northwestern (FL) 00-0029562 14985 #> 2557 Jesuit (FL) 00-0026844 13078 #> 2558 Marshfield (MA) 00-0033196 3065813 #> 2559 Carroll (AL) 00-0026564 12895 #> 2560 Milpitas (CA) 00-0034773 3134362 #> 2561 Northwest Cabarrus (NC) 00-0032065 2977680 #> 2562 <NA> 00-0034908 2973605 #> 2563 Francis W. Parker (CA) 00-0031876 2576240 #> 2564 Chaminade College Prep (CA) 00-0029857 16140 #> 2565 Harrison (MI) 00-0025430 10487 #> 2566 Parkway West (MO) 00-0027948 13987 #> 2567 Junipero Serra (CA) 00-0019596 2330 #> 2568 McKinney North (TX) 00-0034816 3912550 #> 2569 Bishop McDevitt (PA) 00-0027029 12514 #> 2570 Pearl-Cohn (TN) 00-0036450 3917612 #> 2571 Cedar Hill (TX) 00-0035716 3912551 #> 2572 St. Augustine (LA) 00-0033856 3115364 #> 2573 Notre Dame (CA) 00-0030465 15921 #> 2574 Woodberry Forest (VA) 00-0032393 2980148 #> 2575 Northern Guilford (NC) 00-0033789 3039723 #> 2576 Central Valley (PA) 00-0034374 3895798 #> 2577 Woodward Academy (GA) 00-0032637 2576599 #> 2578 Stone (MS) 00-0033898 3895859 #> 2579 Owings Mills (MD) 00-0032217 2582147 #> 2580 Hanover (VA) 00-0030829 17283 #> 2581 Brunswick (CT) 00-0033795 2982323 #> 2582 Mount Vernon (IA) 00-0036406 4240589 #> 2583 Brainerd (MN) 00-0032419 2573103 #> 2584 Autauga Academy (AL) 00-0033879 3043080 #> 2585 Camden Central (TN) 00-0034613 3050481 #> 2586 Champlain-Lennoxville (CAN) 00-0033421 4081127 #> 2587 Naperville Central (IL) 00-0031273 17453 #> 2588 Woodland Hills (PA) 00-0027656 13229 #> 2589 Chattanooga (OK) 00-0034735 3951441 #> 2590 Dorsey (CA) 00-0033006 2978308 #> 2591 Rummel (LA) 00-0033215 4217370 #> 2592 Middletown (PA) 00-0033921 3116165 #> 2593 Austin (AL) 00-0036107 4368796 #> 2594 Norland (FL) 00-0027793 13934 #> 2595 South Plantation (FL) 00-0034705 4035496 #> 2596 Servite (CA) 00-0036047 NA #> 2597 North (MN) 00-0036427 2310331 #> 2598 Ball (TX) 00-0031408 16737 #> 2599 Barrington (IL) 00-0035298 3914397 #> 2600 South Fayette (PA) 00-0034386 3118892 #> 2601 Bibb County (AL) 00-0029413 15109 #> 2602 Notre Dame (CA) 00-0032192 2511330 #> 2603 Skyline (TX) 00-0036171 4040537 #> 2604 Alief Taylor (TX) 00-0034662 3116105 #> 2605 East English Village (MI) 00-0033566 3040145 #> 2606 Statesville (NC) 00-0033435 3048663 #> 2607 Vicksburg (MS) 00-0031218 17435 #> 2608 Archbishop Rummel (LA) 00-0036416 4035433 #> 2609 Florida A&M University (FL) 00-0036240 4043605 #> 2610 Charlton County (GA) 00-0032353 2576895 #> 2611 Wakefield (NC) 00-0031597 2588098 #> 2612 Notre Dame (TN) 00-0035573 3675805 #> 2613 Junipero Serra (CA) 00-0033878 3120347 #> 2614 Park Center (MN) 00-0035632 4036134 #> 2615 Fort Bend Dulles (TX) 00-0033415 3054859 #> 2616 Martin Luther King (GA) 00-0033132 2574056 #> 2617 South Pointe (SC) 00-0031364 16734 #> 2618 St. Thomas Aquinas (FL) 00-0035048 3915285 #> 2619 Highland (UT) 00-0031556 3052511 #> 2620 Noxubee County (MS) 00-0035643 4035369 #> 2621 West Philadelphia (PA) 00-0036181 4374269 #> 2622 Gladewater (TX) 00-0034985 3917316 #> 2623 Williamstown (NJ) 00-0034283 3051320 #> 2624 St. Augustine Prep (NJ) 00-0029627 15090 #> 2625 E. Bladen (NC) 00-0036237 4240123 #> 2626 Junipero Serra (CA) 00-0034657 3134316 #> 2627 Buckhorn (AL) 00-0035099 3122154 #> 2628 Bedford (OH) 00-0027648 13294 #> 2629 La Costa Canyon (CA) 00-0030097 15946 #> 2630 Stone Bridge (VA) 00-0035649 3120070 #> 2631 Cypress (CA) 00-0031575 2516927 #> 2632 Campolindo (CA) 00-0028907 15245 #> 2633 O'Fallon (IL) 00-0036177 4035098 #> 2634 Pace Academy (GA) 00-0036436 4038994 #> 2635 Madison Central (MS) 00-0024333 9704 #> 2636 Brennan (TX) 00-0035521 3125126 #> 2637 Mission Viejo (CA) 00-0032081 2518789 #> 2638 North County (MO) 00-0029869 16324 #> 2639 Pine Forest (NC) 00-0034828 3122793 #> 2640 Olive Branch (MS) 00-0029794 16299 #> 2641 Chamblee (GA) 00-0034622 3043128 #> 2642 Norwich Academy (CT) 00-0035579 4039521 #> 2643 Auburn (AL) 00-0034743 3126349 #> 2644 Sabino (AZ) 00-0027980 13997 #> 2645 Long Beach Poly (CA) 00-0033954 3047559 #> 2646 Winton Woods (OH) 00-0035292 3916074 #> 2647 Paloma Valley (CA) 00-0035118 4422336 #> 2648 Kearney (MO) 00-0029134 15355 #> 2649 Tracy (CA) 00-0027187 13186 #> 2650 Johnson City (NY) 00-0031054 16910 #> 2651 Sidwell Friends (DC) 00-0035486 3913020 #> 2652 Grand Island (NY) 00-0025825 11555 #> 2653 Dickson County (TN) 00-0034626 3044725 #> 2654 Big Spring (TX) 00-0029701 14876 #> 2655 Toledo Central Catholic (OH) 00-0033899 3129302 #> 2656 Franklin County (KY) 00-0034438 3042749 #> 2657 New Smyrna Beach (FL) 00-0036297 4036431 #> 2658 Santa Margarita Catholic (CA) 00-0033955 3127586 #> 2659 Yulee (FL) 00-0032764 3043078 #> 2660 Texas City (TX) 00-0033925 3125116 #> 2661 Chattooga (GA) 00-0031209 17421 #> 2662 Early (TX) 00-0030060 15813 #> 2663 Ayala (CA) 00-0034389 3931422 #> 2664 Poly Prep (NY) 00-0036445 4259568 #> 2665 Chaparral (AZ) 00-0031442 16708 #> 2666 Lake Highlands (TX) 00-0027768 13428 #> 2667 Columbia (GA) 00-0036175 4408915 #> 2668 Marian Central Catholic (IL) 00-0029419 15054 #> 2669 Christ Presbyterian (TN) 00-0035007 3122099 #> 2670 St. Francis Catholic (CA) 00-0032147 2514397 #> 2671 Harlem (IL) 00-0036178 NA #> 2672 Kirkwood (MO) 00-0031585 2508256 #> 2673 Waukon (IA) 00-0035572 3144991 #> 2674 Pleasant Valley (CA) 00-0032141 3046704 #> 2675 Manalapan (NJ) 00-0033455 3049698 #> 2676 Norcross (GA) 00-0035787 3915772 #> 2677 West Port (FL) 00-0033858 3054212 #> 2678 Archbishop Mitty (CA) 00-0036173 3675550 #> 2679 Warrenville South (IL) 00-0033871 3042778 #> 2680 Millwood (OK) 00-0034652 3139456 #> 2681 Charlottesville (VA) 00-0034034 3049329 #> 2682 Lee (AL) 00-0032355 2983209 #> 2683 Starkville (MS) 00-0035676 4047646 #> 2684 Clear Springs (TX) 00-0032980 2971718 #> 2685 Lake Mary (FL) 00-0036182 3929785 #> 2686 Dorman (SC) 00-0032009 2576491 #> 2687 Greater Atlanta Christian (GA) 00-0032464 2973405 #> 2688 Mountain View (OR) 00-0033386 3115443 #> 2689 Burnsville (MN) 00-0033529 2976182 #> 2690 Sacred Heart Cathedral (CA) 00-0036342 4036831 #> 2691 Potomac (MD) 00-0032195 2969920 #> 2692 Western (FL) 00-0033918 2971586 #> 2693 Owasso (OK) 00-0031259 16900 #> 2694 Stonewall Jackson (VA) 00-0034337 3124086 #> 2695 Carol City (FL) 00-0034276 3042496 #> 2696 Cathedral (CA) 00-0033405 3058965 #> 2697 East Feliciana (LA) 00-0034071 3141066 #> 2698 Royal Palm Beach (FL) 00-0035307 3120508 #> 2699 Good Counsel (MD) 00-0033084 3045465 #> 2700 Muskogee (OK) 00-0036349 4242154 #> 2701 Paradise Valley (AZ) 00-0035305 3121034 #> 2702 Pensacola Catholic (FL) 00-0034465 3125248 #> 2703 Mount Lebanon (PA) 00-0034334 3116152 #> 2704 Hamilton (AZ) 00-0033410 3052883 #> 2705 Daphne (AL) 00-0033525 2976495 #> 2706 Millbrook (NC) 00-0036351 3686690 #> 2707 Stephenson (GA) 00-0035647 3134690 #> 2708 Cathedral Catholic (CA) 00-0036403 3931408 #> 2709 Hebron (TX) 00-0035423 3133368 #> 2710 Hillsdale (OH) 00-0034939 3139448 #> 2711 DeMatha Catholic (MD) 00-0036321 4241986 #> 2712 Crescent City (FL) 00-0033962 3054950 #> 2713 Muncie Central (IN) 00-0027954 13973 #> 2714 Desert Vista (AZ) 00-0035314 3122692 #> 2715 Hunterdon Central (NJ) 00-0032781 2976263 #> 2716 <NA> 00-0036447 4686421 #> 2717 Shades Valley (AL) 00-0034333 3925354 #> 2718 Stonewall Jackson (VA) 00-0034397 3929956 #> 2719 Carolina (SC) 00-0033501 3121581 #> 2720 Stone Bridge (VA) 00-0033523 3054840 #> 2721 Woodstock (IL) 00-0031722 2566837 #> 2722 Chaparral (AZ) 00-0032432 2581273 #> 2723 Milton-Union (OH) 00-0035263 3128263 #> 2724 Denison (IA) 00-0032053 2511708 #> 2725 Puyallup (WA) 00-0033151 2978263 #> 2726 Clear Lake (TX) 00-0030098 15965 #> 2727 McPherson (KS) 00-0034202 3068715 #> 2728 Palm Beach Central (FL) 00-0030064 15827 #> 2729 Lowndes (GA) 00-0033532 2977645 #> 2730 Centennial (CA) 00-0032998 2575997 #> 2731 Troup County (GA) 00-0033887 3054844 #> 2732 Roseville (CA) 00-0035444 4035866 #> 2733 McKeesport (PA) 00-0036343 4046525 #> 2734 Pearland (TX) 00-0035419 3122441 #> 2735 New Smyrna Beach (FL) 00-0035286 3116689 #> 2736 Hoover (CA) 00-0029409 14978 #> 2737 Randolph-Clay (GA) 00-0023448 8429 #> 2738 King Low Heywood Thomas (CT) 00-0031308 16888 #> 2739 North Canyon (AZ) 00-0026714 12904 #> 2740 Union (OK) 00-0030140 16166 #> 2741 Collins Hill (GA) 00-0031800 2565969 #> 2742 Desert Mountain (AZ) 00-0034577 3115293 #> 2743 Del Valle (TX) 00-0036022 3915436 #> 2744 Helix (CA) 00-0023436 8416 #> 2745 Killian (FL) 00-0029615 14886 #> 2746 Wake Forest (NC) 00-0035256 3931398 #> 2747 Central (AL) 00-0032602 2572861 #> 2748 Allen (TX) 00-0032975 2980077 #> 2749 Milton (GA) 00-0032741 3051902 #> 2750 Eagle's Landing Christian (GA) 00-0036328 4360294 #> 2751 Dutchtown (LA) 00-0032262 2979841 #> 2752 DeRidder (LA) 00-0031844 2578692 #> 2753 Middletown (MD) 00-0034379 3122927 #> 2754 Trinity Catholic (FL) 00-0034817 3916414 #> 2755 Madison-Ridgeland Academy (MS) 00-0036334 4242230 #> 2756 Grafton (MA) 00-0034456 3049836 #> 2757 Duncan Fletcher (FL) 00-0033946 3121656 #> 2758 Meadowbrook (VA) 00-0031330 16771 #> 2759 Edna Karr (LA) 00-0030725 17202 #> 2760 Floral Park (NY) 00-0034102 3049959 #> 2761 John W. North (CA) 00-0034169 3051387 #> 2762 Lincoln (RI) 00-0036023 4036189 #> 2763 White Hall (AR) 00-0033528 2980073 #> 2764 Brookville (VA) 00-0031260 16813 #> 2765 Whitehouse (TX) 00-0034409 3052576 #> 2766 North Myrtle Beach (SC) 00-0033112 2580330 #> 2767 Whitewright (TX) 00-0033742 3046705 #> 2768 Paulding County (GA) 00-0036340 4029893 #> 2769 Gadsden City (AL) 00-0034669 4035853 #> 2770 Indianapolis Cathedral (IN) 00-0035659 3121422 #> 2771 Ouachita Parish (LA) 00-0034104 3115314 #> 2772 La Mirada (CA) 00-0036111 3915821 #> 2773 Palmyra (NJ) 00-0035297 4036163 #> 2774 Centennial (TN) 00-0035070 3924318 #> 2775 Batesburg-Leesville (SC) 00-0028411 14269 #> 2776 Central Valley (PA) 00-0034510 3054845 #> 2777 Kingswood-Oxford (CT) 00-0036142 4044121 #> 2778 Travis (TX) 00-0034928 3917960 #> 2779 Freedom (FL) 00-0034207 3053760 #> 2780 Alhambra (CA) 00-0032423 2573343 #> 2781 Stranahan (FL) 00-0031399 16954 #> 2782 <NA> 00-0032692 2976257 #> 2783 Servite (CA) 00-0025446 10503 #> 2784 <NA> 00-0032324 2565684 #> 2785 Lebanon (MO) 00-0031282 16742 #> 2786 <NA> 00-0034712 3057534 #> 2787 <NA> 00-0035503 3120360 #> 2788 <NA> 00-0035372 3126330 #> 2789 <NA> 00-0034896 3049048 #> 2790 <NA> 00-0035612 4031164 #> 2791 Seton-LaSalle (PA) 00-0029268 14999 #> 2792 <NA> 00-0035481 3163365 #> 2793 Maplewood (TN) 00-0030750 17262 #> 2794 <NA> 00-0034658 3043224 #> 2795 Aynor (SC) 00-0030126 15915 #> 2796 <NA> 00-0034269 3052065 #> 2797 <NA> 00-0031994 2511557 #> 2798 <NA> 00-0035201 3126288 #> 2799 Greenwich (CT) 00-0026327 11421 #> 2800 Montgomery Bell Academy (TN) 00-0031314 16846 #> 2801 <NA> 00-0034447 3894905 #> 2802 Kingwood (TX) 00-0031284 16752 #> 2803 <NA> 00-0034849 3116734 #> 2804 <NA> 00-0035545 3116186 #> 2805 <NA> 00-0031698 2516310 #> 2806 <NA> 00-0034241 3066250 #> 2807 <NA> 00-0033256 2979810 #> 2808 <NA> 00-0035106 3916742 #> 2809 <NA> 00-0035389 3144996 #> 2810 <NA> 00-0033279 4081136 #> 2811 <NA> 00-0035439 3120593 #> 2812 Oceanside (CA) 00-0030486 15978 #> 2813 <NA> 00-0034852 3044707 #> 2814 <NA> 00-0033682 3049566 #> 2815 <NA> 00-0034328 3138835 #> 2816 <NA> 00-0032989 2972298 #> 2817 Centreville (VA) 00-0031191 16830 #> 2818 <NA> 00-0035015 3125783 #> 2819 <NA> 00-0034178 3048669 #> 2820 Hawaii Prep (HI) 00-0027025 12624 #> 2821 <NA> 00-0033586 3045378 #> 2822 Palmdale (CA) 00-0028069 14157 #> 2823 <NA> 00-0033845 3052502 #> 2824 Bloomfield (CT) 00-0030127 15888 #> 2825 <NA> 00-0032456 2994680 #> 2826 <NA> 00-0032810 2972090 #> 2827 Plantation (FL) 00-0029691 14948 #> 2828 Dudley (NC) 00-0030420 15820 #> 2829 <NA> 00-0033299 3051880 #> 2830 John Marshall (MN) 00-0027547 13843 #> 2831 St. Thomas Aquinas (FL) 00-0031383 16747 #> 2832 <NA> 00-0034329 3120863 #> 2833 Dobyns-Bennett (TN) 00-0029529 14998 #> 2834 St. John Bosco (CA) 00-0030556 15854 #> 2835 Dunbar (DC) 00-0027001 12424 #> 2836 Marshall (TX) 00-0029050 15350 #> 2837 <NA> 00-0035069 4036434 #> 2838 <NA> 00-0031563 2978256 #> 2839 <NA> 00-0035430 3110509 #> 2840 Rockhurst (MO) 00-0032212 2513908 #> 2841 <NA> 00-0032511 2973033 #> 2842 Campbell (GA) 00-0029696 15713 #> 2843 <NA> 00-0033350 4218143 #> 2844 <NA> 00-0034123 3052013 #> 2845 <NA> 00-0034692 4339831 #> 2846 Highland (CA) 00-0029191 15419 #> 2847 <NA> 00-0034884 4037345 #> 2848 <NA> 00-0033453 3045642 #> 2849 <NA> 00-0034821 4327530 #> 2850 Northeast (PA) 00-0024183 10913 #> 2851 <NA> 00-0032157 2515587 #> 2852 <NA> 00-0032014 2976500 #> 2853 Crockett (MI) 00-0031594 2515418 #> 2854 <NA> 00-0033853 2969856 #> 2855 <NA> 00-0026283 11366 #> 2856 <NA> 00-0035174 3912029 #> 2857 Lancaster (TX) 00-0030275 16144 #> 2858 <NA> 00-0033652 3045202 #> 2859 <NA> 00-0032631 2577071 #> 2860 <NA> 00-0035080 4405778 #> 2861 <NA> 00-0035490 3916913 #> 2862 <NA> 00-0032552 2971880 #> 2863 <NA> 00-0034685 3116159 #> 2864 Grant (OR) 00-0031186 16914 #> 2865 Hopkins (MN) 00-0031151 2508192 #> 2866 <NA> 00-0033826 3057517 #> 2867 Fair Park (LA) 00-0029676 14943 #> 2868 <NA> 00-0033425 NA #> 2869 <NA> 00-0035056 3155134 #> 2870 <NA> 00-0034471 4039221 #> 2871 Fort Dorchester (SC) 00-0028111 14133 #> 2872 <NA> 00-0032710 2981866 #> 2873 <NA> 00-0033533 2971036 #> 2874 <NA> 00-0032066 2574530 #> 2875 <NA> 00-0034095 3921563 #> 2876 <NA> 00-0033710 2971986 #> 2877 Salina Central (KS) 00-0022045 4463 #> 2878 <NA> 00-0032856 2573091 #> 2879 <NA> 00-0035162 3921688 #> 2880 <NA> 00-0033575 2985844 #> 2881 <NA> 00-0035088 3929849 #> 2882 <NA> 00-0033363 3049271 #> 2883 Deer Valley (CA) 00-0028767 14802 #> 2884 <NA> 00-0034216 3126096 #> 2885 <NA> 00-0032663 2577421 #> 2886 <NA> 00-0032687 2582034 #> 2887 <NA> 00-0034455 4331771 #> 2888 <NA> 00-0032931 3140596 #> 2889 <NA> 00-0033587 3040198 #> 2890 <NA> 00-0034327 3116618 #> 2891 <NA> 00-0033558 3126176 #> 2892 <NA> 00-0033362 2972562 #> 2893 <NA> 00-0033809 3929030 #> 2894 <NA> 00-0033070 3116598 #> 2895 <NA> 00-0034086 3115496 #> 2896 <NA> 00-0033440 3047486 #> 2897 Ooltewah (TN) 00-0030703 17244 #> 2898 <NA> 00-0034904 3042880 #> 2899 <NA> 00-0035175 4240629 #> 2900 Warwick (VA) 00-0030403 15939 #> 2901 Klein Collins (TX) 00-0031080 16949 #> 2902 Fayette County (GA) 00-0029416 15057 #> 2903 <NA> 00-0035575 3115329 #> 2904 Pace (FL) 00-0030523 15872 #> 2905 James R. Rickards (FL) 00-0025557 10613 #> 2906 <NA> 00-0034701 3920576 #> 2907 St. Vincent-St. Mary (OH) 00-0031944 2576385 #> 2908 Stafford (VA) 00-0031414 16805 #> 2909 <NA> 00-0034526 3124080 #> 2910 Largo (FL) 00-0029087 15398 #> 2911 <NA> 00-0032643 2578305 #> 2912 <NA> 00-0034105 3040007 #> 2913 Colton (CA) 00-0028027 14010 #> 2914 Jacket Integrated Academy (NC) 00-0031688 2565759 #> 2915 <NA> 00-0032485 4010743 #> 2916 <NA> 00-0033756 2969716 #> 2917 Berkner (TX) 00-0026160 11254 #> 2918 <NA> 00-0031878 3053794 #> 2919 Westlake (GA) 00-0023441 8421 #> 2920 Olive Branch (MS) 00-0031552 2577292 #> 2921 <NA> 00-0034425 3052169 #> 2922 Highland Springs (VA) 00-0029942 16131 #> 2923 Vista Ridge (TX) 00-0031276 17450 #> 2924 Luling (TX) 00-0032106 2510713 #> 2925 <NA> 00-0035047 3118081 #> 2926 S.S. Murphy (AL) 00-0026944 12703 #> 2927 <NA> 00-0034589 3060794 #> 2928 <NA> 00-0034541 3124861 #> 2929 <NA> 00-0032290 2512218 #> 2930 <NA> 00-0032946 2972273 #> 2931 <NA> 00-0033187 4084949 #> 2932 <NA> 00-0035446 3915240 #> 2933 <NA> 00-0034506 3045123 #> 2934 <NA> 00-0032798 2974631 #> 2935 <NA> 00-0032390 2979849 #> 2936 Serra (CA) 00-0031262 16872 #> 2937 North Gwinnett (FL) 00-0031232 17416 #> 2938 <NA> 00-0035081 4242420 #> 2939 Vista (CA) 00-0025405 10462 #> 2940 East Webster (MS) 00-0030469 15824 #> 2941 <NA> 00-0034481 3126311 #> 2942 <NA> 00-0031239 16774 #> 2943 Lakewood Ranch (FL) 00-0026156 11250 #> 2944 <NA> 00-0033482 2977735 #> 2945 Wilmington (OH) 00-0031937 3125961 #> 2946 <NA> 00-0034637 3046689 #> 2947 <NA> 00-0035197 3929033 #> 2948 St. Augustine (LA) 00-0032136 2972135 #> 2949 <NA> 00-0032978 2972550 #> 2950 <NA> 00-0034814 3059832 #> 2951 <NA> 00-0033671 2971592 #> 2952 <NA> 00-0034300 3050887 #> 2953 <NA> 00-0034120 3123972 #> 2954 Duncanville (TX) 00-0030963 17333 #> 2955 Jefferson Davis High School (AL) 00-0031829 2969954 #> 2956 <NA> 00-0032676 3961462 #> 2957 Booker (FL) 00-0027440 13769 #> 2958 <NA> 00-0033432 3042884 #> 2959 <NA> 00-0032546 2576437 #> 2960 <NA> 00-0033333 2980480 #> 2961 <NA> 00-0034005 4058338 #> 2962 Miami Killian (FL) 00-0031020 16930 #> 2963 <NA> 00-0034636 3125790 #> 2964 Mayfair (CA) 00-0027705 13478 #> 2965 <NA> 00-0034871 3127082 #> 2966 <NA> 00-0035435 3910120 #> 2967 <NA> 00-0035211 3122710 #> 2968 <NA> 00-0034299 3122666 #> 2969 Whale Branch Early College (SC) 00-0034515 3049726 #> 2970 <NA> 00-0035554 3134000 #> 2971 <NA> 00-0035091 3128785 #> 2972 <NA> 00-0035568 4331772 #> 2973 <NA> 00-0034093 3128687 #> 2974 <NA> 00-0035675 3912549 #> 2975 <NA> 00-0034544 3045126 #> 2976 <NA> 00-0035564 3119436 #> 2977 <NA> 00-0035388 4423369 #> 2978 Daniel (SC) 00-0027979 14019 #> 2979 <NA> 00-0034718 3052283 #> 2980 <NA> 00-0034009 3049426 #> 2981 <NA> 00-0034650 3676003 #> 2982 <NA> 00-0033176 4043720 #> 2983 Huffman (AL) 00-0027941 13992 #> 2984 <NA> 00-0032428 2982949 #> 2985 St. Anne's-Belfield (VA) 00-0026142 11236 #> 2986 <NA> 00-0035195 3928743 #> 2987 <NA> 00-0034742 3117912 #> 2988 Petersburg (VA) 00-0026206 11300 #> 2989 Dallas County (AL) 00-0027044 12436 #> 2990 <NA> 00-0034230 4043157 #> 2991 Tustin (CA) 00-0024306 9677 #> 2992 <NA> 00-0034865 3049025 #> 2993 <NA> 00-0034134 3042381 #> 2994 <NA> 00-0034477 3045268 #> 2995 <NA> 00-0030864 17184 #> 2996 Nashua North (NH) 00-0029256 14953 #> 2997 Andrews (NC) 00-0026243 11337 #> 2998 <NA> 00-0033075 2976623 #> 2999 Palo Duro (TX) 00-0027008 12442 #> 3000 Windsor (CT) 00-0031843 2519069 #> 3001 Glassboro (NJ) 00-0027495 13812 #> 3002 <NA> 00-0034604 3125208 #> 3003 Creekview (TX) 00-0031948 2511687 #> 3004 Simeon Academy (IL) 00-0031081 16959 #> 3005 Wayne (OH) 00-0029257 14967 #> 3006 <NA> 00-0034089 3053800 #> 3007 <NA> 00-0031982 2514374 #> 3008 <NA> 00-0033693 3115911 #> 3009 <NA> 00-0035113 3917834 #> 3010 Clintondale (MI) 00-0031607 2516417 #> 3011 <NA> 00-0033272 2977620 #> 3012 Taft (OH) 00-0030457 15829 #> 3013 Hardaway (GA) 00-0031371 16712 #> 3014 Hutchinson (KS) 00-0031940 2514217 #> 3015 New Madrid (MO) 00-0031336 16773 #> 3016 <NA> 00-0033493 2971499 #> 3017 <NA> 00-0034290 3054854 #> 3018 <NA> 00-0034851 3063943 #> 3019 <NA> 00-0034886 3049337 #> 3020 Southern Nash (NC) 00-0021140 3530 #> 3021 <NA> 00-0033614 3122879 #> 3022 <NA> 00-0033248 3053000 #> 3023 <NA> 00-0032883 2578754 #> 3024 Kahuku (HI) 00-0032056 2509488 #> 3025 Palo Verde (NV) 00-0035023 4239787 #> 3026 <NA> 00-0032859 2978355 #> 3027 <NA> 00-0035391 3127379 #> 3028 Hightower (TX) 00-0029111 15278 #> 3029 <NA> 00-0034012 NA #> 3030 <NA> 00-0032800 2567970 #> 3031 <NA> 00-0033358 2972118 #> 3032 <NA> 00-0032344 2578530 #> 3033 <NA> 00-0034916 3049326 #> 3034 Kimball Union (NH) 00-0031255 17141 #> 3035 <NA> 00-0033584 3052175 #> 3036 Northern Guilford (NC) 00-0031208 17430 #> 3037 <NA> 00-0034906 3043274 #> 3038 South Oak Cliff (TX) 00-0029112 15356 #> 3039 Dematha (MD) 00-0023368 12417 #> 3040 <NA> 00-0033726 3049895 #> 3041 Blake (FL) 00-0029053 15319 #> 3042 <NA> 00-0034166 3041114 #> 3043 <NA> 00-0034519 3057530 #> 3044 <NA> 00-0035511 3123681 #> 3045 Notre Dame (CA) 00-0030251 16431 #> 3046 <NA> 00-0034538 3042873 #> 3047 <NA> 00-0035476 3915769 #> 3048 <NA> 00-0035204 3042883 #> 3049 <NA> 00-0033673 3045152 #> 3050 <NA> 00-0033651 2986781 #> 3051 <NA> 00-0034879 3924375 #> 3052 <NA> 00-0035493 3914384 #> 3053 <NA> 00-0034030 2973627 #> 3054 <NA> 00-0032719 2573947 #> 3055 <NA> 00-0034482 3139339 #> 3056 Alief Taylor (TX) 00-0026618 12762 #> 3057 <NA> 00-0035565 3129292 #> 3058 Nyack (NY) 00-0031317 16860 #> 3059 Jacksonville (AR) 00-0026964 12692 #> 3060 <NA> 00-0033270 3057998 #> 3061 Linden (NJ) 00-0027968 13985 #> 3062 <NA> 00-0033254 3050096 #> 3063 <NA> 00-0035071 3916590 #> 3064 <NA> 00-0032730 2970397 #> 3065 <NA> 00-0033113 2576678 #> 3066 <NA> 00-0035046 3122439 #> 3067 <NA> 00-0034157 3042693 #> 3068 Eaton (CO) 00-0027573 13860 #> 3069 <NA> 00-0035191 4051591 #> 3070 Wichita Falls (TX) 00-0030553 16037 #> 3071 <NA> 00-0034702 3119152 #> 3072 <NA> 00-0034547 3045532 #> 3073 <NA> 00-0033574 2974324 #> 3074 <NA> 00-0034308 3957496 #> 3075 Strake Jesuit Prep (TX) 00-0030121 15905 #> 3076 <NA> 00-0034770 3123045 #> 3077 Louisa County (VA) 00-0030776 17296 #> 3078 Gonzaga (DC) 00-0029310 15064 #> 3079 <NA> 00-0034045 4255255 #> 3080 <NA> 00-0035221 3049043 #> 3081 <NA> 00-0034617 3163390 #> 3082 <NA> 00-0033438 2981846 #> 3083 Splendora (TX) 00-0025489 10546 #> 3084 <NA> 00-0034451 3939134 #> 3085 <NA> 00-0035063 4411188 #> 3086 <NA> 00-0034620 3116632 #> 3087 <NA> 00-0035362 3121643 #> 3088 <NA> 00-0034453 3123079 #> 3089 <NA> 00-0034143 NA #> 3090 <NA> 00-0035496 4263210 #> 3091 <NA> 00-0034630 3053061 #> 3092 <NA> 00-0035421 3124087 #> 3093 <NA> 00-0033351 3894927 #> 3094 Flushing (NY) 00-0031403 16776 #> 3095 Eastdale Collegiate and Vocational Institute (ON) 00-0030132 16568 #> 3096 <NA> 00-0034866 3115307 #> 3097 Moss Point (MS) 00-0024030 16695 #> 3098 <NA> 00-0033711 2970137 #> 3099 <NA> 00-0033661 3042744 #> 3100 <NA> 00-0034638 4035707 #> 3101 <NA> 00-0034605 3053054 #> 3102 North Shore (TX) 00-0027684 13288 #> 3103 Foster (TX) 00-0031676 2575583 #> 3104 <NA> 00-0035682 3127341 #> 3105 Copper Hills (UT) 00-0028256 14441 #> 3106 <NA> 00-0032750 3121601 #> 3107 Miami Carol City (FL) 00-0026502 12443 #> 3108 Highland (UT) 00-0024227 9598 #> 3109 <NA> 00-0034321 3057976 #> 3110 Centerville (OH) 00-0032154 2576371 #> 3111 <NA> 00-0030871 17253 #> 3112 Weatherford (TX) 00-0029894 15937 #> 3113 <NA> 00-0033626 2970111 #> 3114 Roanoke Rapids (NC) 00-0033934 3039721 #> 3115 <NA> 00-0032034 3051674 #> 3116 Ruston (LA) 00-0024348 9720 #> 3117 Valley Forge (OH) 00-0030697 17214 #> 3118 <NA> 00-0031225 17428 #> 3119 <NA> 00-0034018 3052751 #> 3120 <NA> 00-0030106 15955 #> 3121 <NA> 00-0035618 3125300 #> 3122 <NA> 00-0031914 2579622 #> 3123 <NA> 00-0034082 3052510 #> 3124 Westgate (LA) 00-0029208 15460 #> 3125 <NA> 00-0034880 3040172 #> 3126 <NA> 00-0034228 3118188 #> 3127 Franklin (CA) 00-0030986 17285 #> 3128 <NA> 00-0033771 2971436 #> 3129 <NA> 00-0035178 3131528 #> 3130 <NA> 00-0034454 3128455 #> 3131 Vigor (AL) 00-0032116 2980071 #> 3132 <NA> 00-0034873 3929841 #> 3133 <NA> 00-0035110 3115929 #> 3134 <NA> 00-0031832 3042645 #> 3135 <NA> 00-0034583 3040516 #> 3136 Gonzaga College (DC) 00-0029972 16398 #> 3137 <NA> 00-0034564 4038466 #> 3138 Bloomfield (NJ) 00-0031618 2515893 #> 3139 <NA> 00-0032529 2581513 #> 3140 <NA> 00-0032981 2978281 #> 3141 Escambia (FL) 00-0026330 11424 #> 3142 Charlotte (FL) 00-0032169 3043238 #> 3143 <NA> 00-0033037 2976317 #> 3144 <NA> 00-0034122 3042747 #> 3145 <NA> 00-0034138 3125884 #> 3146 Washburn (MN) 00-0031281 16744 #> 3147 Star City (AR) 00-0028424 14310 #> 3148 <NA> 00-0033513 2469470 #> 3149 <NA> 00-0034246 3918012 #> 3150 Woodland (GA) 00-0031848 3908873 #> 3151 Pensacola (FL) 00-0028003 14014 #> 3152 Wilson (WA) 00-0032061 2578408 #> 3153 <NA> 00-0035429 4240239 #> 3154 Muskogee (OK) 00-0031006 5273 #> 3155 Yazoo County (MS) 00-0032031 2516320 #> 3156 Centennial (CA) 00-0031048 16738 #> 3157 Enterprise (AL) 00-0029940 16127 #> 3158 Southeast (OK) 00-0027856 13240 #> 3159 <NA> 00-0034568 3116072 #> 3160 <NA> 00-0035501 3122924 #> 3161 <NA> 00-0035348 3115478 #> 3162 <NA> 00-0033086 2572846 #> 3163 <NA> 00-0033374 2978244 #> 3164 <NA> 00-0033719 2981212 #> 3165 <NA> 00-0032375 2576236 #> 3166 <NA> 00-0032499 2977698 #> 3167 <NA> 00-0033736 2513199 #> 3168 <NA> 00-0034237 3045222 #> 3169 UMS-Wright (AL) 00-0031085 16875 #> 3170 <NA> 00-0033967 3045472 #> 3171 Vigor (AL) 00-0032130 2515931 #> 3172 Troy (CA) 00-0029068 15351 #> 3173 <NA> 00-0027925 13940 #> 3174 <NA> 00-0034946 3136308 #> 3175 <NA> 00-0032745 2586700 #> 3176 <NA> 00-0034314 3045201 #> 3177 Oxford (MI) 00-0029931 16366 #> 3178 Hickory (NC) 00-0029729 15765 #> 3179 Dayton (TX) 00-0031612 2577467 #> 3180 <NA> 00-0034225 3116375 #> 3181 Reynoldsburg (OH) 00-0030741 17223 #> 3182 Lake Brantley (FL) 00-0028581 14332 #> 3183 <NA> 00-0034119 3042434 #> 3184 Tuscaloosa (AL) Northridge 00-0032068 2516316 #> 3185 <NA> 00-0034148 3117250 #> 3186 <NA> 00-0034149 3075100 #> 3187 <NA> 00-0032852 2578390 #> 3188 Port Allen (LA) 00-0031087 17467 #> 3189 Christian County (KY) 00-0029422 15001 #> 3190 <NA> 00-0033389 2969018 #> 3191 <NA> 00-0033692 3049640 #> 3192 Loyola (CA) 00-0028031 14016 #> 3193 <NA> 00-0035522 3912991 #> 3194 <NA> 00-0031754 2577110 #> 3195 <NA> 00-0034078 4039283 #> 3196 <NA> 00-0033977 3051737 #> 3197 <NA> 00-0033675 3045206 #> 3198 Creekside (GA) 00-0035555 3917203 #> 3199 <NA> 00-0031978 2516019 #> 3200 <NA> 00-0032922 3053027 #> 3201 <NA> 00-0031070 16850 #> 3202 Amanda Elzy (MS) 00-0031512 2574557 #> 3203 O. Perry Walker 00-0027736 13404 #> 3204 <NA> 00-0034467 3128706 #> 3205 <NA> 00-0032749 2570484 #> 3206 Bridgeport (TX) 00-0028128 14117 #> 3207 <NA> 00-0033520 2977613 #> 3208 <NA> 00-0035561 3115379 #> 3209 Griffin (GA) 00-0032050 2578554 #> 3210 Northmont (OH) 00-0027835 13340 #> 3211 Liberty-Eylau (TX) 00-0031059 16904 #> 3212 Carroll (NY) 00-0025555 10611 #> 3213 West Orange-Stark (TX) 00-0027866 13251 #> 3214 Bishop Hendricken (RI) 00-0024330 9701 #> 3215 Passaic County Technical Institute (NJ) 00-0022247 5893 #> 3216 <NA> 00-0035379 3930075 #> 3217 <NA> 00-0034252 2980441 #> 3218 <NA> 00-0035470 3915291 #> 3219 Lee (AL) 00-0027256 13645 #> 3220 Sprayberry (GA) 00-0030020 16419 #> 3221 <NA> 00-0033076 2971550 #> 3222 <NA> 00-0033274 3892785 #> 3223 Woodland Hills (PA) 00-0030170 16206 #> 3224 <NA> 00-0033316 3050534 #> 3225 <NA> 00-0034098 3124020 #> 3226 <NA> 00-0029958 16450 #> 3227 Denbigh (VA) 00-0024421 9793 #> 3228 Timberview (TX) 00-0030317 16054 #> 3229 Washington (VA) 00-0027124 12644 #> 3230 North Pike (MS) 00-0027081 12716 #> 3231 <NA> 00-0034217 3043146 #> 3232 Sandy Creek (GA) 00-0031657 2510547 #> 3233 Alta Loma (CA) 00-0025424 10481 #> 3234 <NA> 00-0035508 3128688 #> 3235 Palm Bay (FL) 00-0025408 10465 #> 3236 Highlands (KY) 00-0027023 12619 #> 3237 <NA> 00-0033233 2971542 #> 3238 <NA> 00-0033486 3046342 #> 3239 <NA> 00-0034695 3049935 #> 3240 Washington (GA) 00-0027762 13395 #> 3241 <NA> 00-0035098 3915373 #> 3242 <NA> 00-0035453 3123658 #> 3243 <NA> 00-0034408 3122800 #> 3244 David W. Butler (NC) 00-0029575 15079 #> 3245 <NA> 00-0034556 3139926 #> 3246 <NA> 00-0035072 4076949 #> 3247 <NA> 00-0034324 3125916 #> 3248 Beaufort (SC) 00-0028445 14297 #> 3249 <NA> 00-0030908 17317 #> 3250 <NA> 00-0033470 3043217 #> 3251 <NA> 00-0034443 3051706 #> 3252 <NA> 00-0034734 3050953 #> 3253 <NA> 00-0035151 4422420 #> 3254 <NA> 00-0035543 4243241 #> 3255 Lincoln Way East (IL) 00-0029139 14995 #> 3256 <NA> 00-0034124 3908989 #> 3257 Dorman (SC) 00-0031305 16739 #> 3258 <NA> 00-0033310 17727 #> 3259 <NA> 00-0033391 2977770 #> 3260 <NA> 00-0035225 3115391 #> 3261 <NA> 00-0033502 3047195 #> 3262 Dawson County (MT) 00-0028177 14070 #> 3263 <NA> 00-0035335 3124111 #> 3264 <NA> 00-0033663 2613168 #> 3265 <NA> 00-0032714 2971279 #> 3266 <NA> 00-0032827 4002060 #> 3267 Mariposa (CA) 00-0032247 2517252 #> 3268 Berkner (TX) 00-0029666 14961 #> 3269 <NA> 00-0033287 2976113 #> 3270 <NA> 00-0033301 2980036 #> 3271 Southern Lab (LA) 00-0029010 15276 #> 3272 <NA> 00-0034581 3122851 #> 3273 <NA> 00-0030833 17102 #> 3274 <NA> 00-0033618 2977653 #> 3275 King George (VA) 00-0025512 10568 #> 3276 Ripley (TN) 00-0026561 12883 #> 3277 <NA> 00-0033688 3115302 #> 3278 <NA> 00-0035563 3116094 #> 3279 Hillcrest (UT) 00-0027658 13261 #> 3280 <NA> 00-0035065 3128346 #> 3281 <NA> 00-0033253 2969004 #> 3282 <NA> 00-0030579 15871 #> 3283 <NA> 00-0034645 3049589 #> 3284 <NA> 00-0033383 2991684 #> 3285 <NA> 00-0032638 2986639 #> 3286 Greenville (TX) 00-0028738 14753 #> 3287 <NA> 00-0033959 2971635 #> 3288 <NA> 00-0034582 3057991 #> 3289 Salinas (CA) 00-0026784 12972 #> 3290 Chattahoochee (GA) 00-0028039 14178 #> 3291 Merrill F. West (CA) 00-0029254 14981 #> 3292 <NA> 00-0033667 3052094 #> 3293 <NA> 00-0033483 3120361 #> 3294 Edward H. White (FL) 00-0031766 2582406 #> 3295 <NA> 00-0034448 3052023 #> 3296 Stamford (CT) 00-0027667 13273 #> 3297 <NA> 00-0035729 4239773 #> 3298 Central Islip (NY) 00-0029661 15098 #> 3299 Hoggard (NC) 00-0030590 15787 #> 3300 <NA> 00-0035075 3059734 #> 3301 <NA> 00-0033942 3045153 #> 3302 <NA> 00-0035424 3120365 #> 3303 <NA> 00-0034947 3125897 #> 3304 San Lorenzo Valley (CA) 00-0027027 12614 #> 3305 Sweet Home (OR) 00-0026500 12728 #> 3306 Bear Creek (CO) 00-0030923 17040 #> 3307 <NA> 00-0033005 3046434 #> 3308 <NA> 00-0032930 2577172 #> 3309 St. Anne's-Belfield (VA) 00-0030441 15801 #> 3310 Fleming Island (FL) 00-0032067 2516067 #> 3311 <NA> 00-0030755 17210 #> 3312 <NA> 00-0035333 3124550 #> 3313 <NA> 00-0033039 2574570 #> 3314 <NA> 00-0032976 2577042 #> 3315 <NA> 00-0031180 16859 #> 3316 Seneca Valley (PA) 00-0028110 14208 #> 3317 <NA> 00-0035746 3910591 #> 3318 <NA> 00-0033465 2575978 #> 3319 <NA> 00-0034231 3046696 #> 3320 Miami Central (FL) 00-0031182 16835 #> 3321 <NA> 00-0035487 3127365 #> 3322 Mason (OH) 00-0029992 16403 #> 3323 <NA> 00-0033377 3122894 #> 3324 <NA> 00-0032879 2577115 #> 3325 <NA> 00-0034644 3052887 #> 3326 <NA> 00-0032962 2582006 #> 3327 Olentangy (OH) 00-0030937 17013 #> 3328 <NA> 00-0034254 3056493 #> 3329 <NA> 00-0032503 2576355 #> 3330 <NA> 00-0034459 3054041 #> 3331 Apopka (FL) 00-0035724 3915102 #> 3332 Madison Central (KY) 00-0030065 15870 #> 3333 <NA> 00-0031647 2512571 #> 3334 <NA> 00-0034585 3046392 #> 3335 <NA> 00-0033565 4081809 #> 3336 <NA> 00-0034546 3042907 #> 3337 <NA> 00-0033323 2573414 #> 3338 <NA> 00-0034691 3069758 #> 3339 <NA> 00-0035093 3121419 #> 3340 <NA> 00-0035502 3116735 #> 3341 <NA> 00-0033277 2977624 #> 3342 DeMatha Catholic (MD) 00-0031942 2515944 #> 3343 Beckman Catholic (IA) 00-0030149 16235 #> 3344 <NA> 00-0032874 2578713 #> 3345 <NA> 00-0032297 2470264 #> 3346 Glendale (Ontario) 00-0029076 15347 #> 3347 <NA> 00-0035066 3126065 #> 3348 <NA> 00-0034627 3040102 #> 3349 Brother Rice (MI) 00-0027078 12680 #> 3350 <NA> 00-0035571 3929863 #> 3351 <NA> 00-0035690 4036407 #> 3352 Anamosa (IA) 00-0025473 10530 #> 3353 <NA> 00-0034155 3052516 #> 3354 <NA> 00-0034868 3892890 #> 3355 <NA> 00-0032646 3915883 #> 3356 Boardman (OH) 00-0026205 11299 #> 3357 <NA> 00-0034108 3051321 #> 3358 Rhea County (TN) 00-0030652 17095 #> 3359 Pensacola Catholic (FL) 00-0026275 11382 #> 3360 Farrington (HI) 00-0027694 13283 #> 3361 Seneca Valley (PA) 00-0029187 15409 #> 3362 <NA> 00-0034026 2979845 #> 3363 South Panola (MS) 00-0027678 13278 #> 3364 <NA> 00-0030017 16412 #> 3365 <NA> 00-0033996 3116592 #> 3366 <NA> 00-0034475 4294246 #> 3367 <NA> 00-0034579 3045217 #> 3368 <NA> 00-0030629 16686 #> 3369 Oberlin (OH) 00-0030071 15869 #> 3370 King College Prep (IL) 00-0029524 14990 #> 3371 <NA> 00-0034260 2973599 #> 3372 <NA> 00-0033346 2978250 #> 3373 <NA> 00-0034212 3052709 #> 3374 <NA> 00-0035411 NA #> 3375 Lovejoy (GA) 00-0027750 13451 #> 3376 <NA> 00-0035016 3914595 #> 3377 <NA> 00-0032979 3056472 #> 3378 <NA> 00-0034525 3045469 #> 3379 <NA> 00-0033368 2970256 #> 3380 <NA> 00-0034566 3045249 #> 3381 <NA> 00-0034905 3047235 #> 3382 <NA> 00-0034769 3128747 #> 3383 <NA> 00-0033678 2980586 #> 3384 <NA> 00-0034181 3046694 #> 3385 <NA> 00-0034190 3051458 #> 3386 <NA> 00-0031696 2974300 #> 3387 <NA> 00-0034537 3051412 #> 3388 <NA> 00-0034191 4334406 #> 3389 <NA> 00-0035198 4262186 #> 3390 <NA> 00-0033738 2980070 #> 3391 <NA> 00-0033337 3057972 #> 3392 <NA> 00-0034288 3052144 #> 3393 <NA> 00-0035458 3127302 #> 3394 <NA> 00-0033447 3042403 #> 3395 <NA> 00-0031058 16926 #> 3396 <NA> 00-0035158 4259349 #> 3397 <NA> 00-0033185 2323439 #> 3398 <NA> 00-0034534 3045180 #> 3399 <NA> 00-0033140 2986701 #> 3400 <NA> 00-0035497 4040893 #> 3401 <NA> 00-0033424 2979532 #> 3402 <NA> 00-0035115 3862861 #> 3403 <NA> 00-0034595 3129306 #> 3404 <NA> 00-0035326 4035474 #> 3405 <NA> 00-0033938 3042733 #> 3406 <NA> 00-0034711 3116737 #> 3407 <NA> 00-0031290 16924 #> 3408 <NA> 00-0035373 3122794 #> 3409 <NA> 00-0033849 3045149 #> 3410 <NA> 00-0034303 3128853 #> 3411 <NA> 00-0035052 3700080 #> 3412 <NA> 00-0033700 3051368 #> 3413 <NA> 00-0034923 4250485 #> 3414 <NA> 00-0032452 2585785 #> 3415 <NA> 00-0034872 3116052 #> 3416 <NA> 00-0035349 3115923 #> 3417 <NA> 00-0034931 3133361 #> 3418 <NA> 00-0034599 2974249 #> 3419 <NA> 00-0034232 4037632 #> 3420 <NA> 00-0032406 2971051 #> 3421 <NA> 00-0032422 2577354 #> 3422 <NA> 00-0034422 3052161 #> 3423 <NA> 00-0033494 3040065 #> 3424 Seabreeze (FL) 00-0019646 2148 #> 3425 <NA> 00-0032584 2971728 #> 3426 Lake Highlands (TX) 00-0004091 1440 #> 3427 Alta Loma 00-0031112 17130 #> 3428 <NA> 00-0034147 3059104 #> 3429 <NA> 00-0035171 3128692 #> 3430 St. Augustine (FL) 00-0030390 15918 #> 3431 <NA> 00-0032616 2582419 #> 3432 Central (SD) 00-0016919 1097 #> 3433 Christ Church Episcopal (SC) 00-0030896 16976 #> 3434 Hoggard (NC) 00-0026138 11737 #> 3435 Bridge City (TX) 00-0020578 4333 #> 3436 Albemarle (VA) 00-0023096 9329 #> 3437 Conestoga (PA) 00-0028620 14262 #> 3438 Clearwater (FL) 00-0031018 16897 #> 3439 Brookwood (GA) 00-0031815 2577602 #> 3440 Bozeman (MT) 00-0030770 16983 #> 3441 Havelock (NC) 00-0027978 14026 #> 3442 John Ehret (LA) 00-0031354 16852 #> 3443 Seaside (CA) 00-0028022 14023 #> 3444 Stevenson (MI) 00-0027442 13779 #> 3445 La Grange (GA) 00-0025828 11609 #> 3446 <NA> 00-0034580 3121376 #> 3447 Jefferson (FL) 00-0031943 2578565 #> 3448 Terry Parker (FL) 00-0030119 15954 #> 3449 State College Area (PA) 00-0029629 15040 #> 3450 Central (OH) 00-0031491 2265764 #> 3451 <NA> 00-0035354 3120075 #> 3452 Hollywood Hills (FL) 00-0031729 2579598 #> 3453 Cherokee Trail (CO) 00-0030160 16268 #> 3454 King's Academy (FL) 00-0029479 15640 #> 3455 <NA> 00-0034518 3056831 #> 3456 Champlin Park (MN) 00-0026672 12988 #> 3457 Dublin (GA) 00-0026307 11401 #> 3458 Wilde Lake (MD) 00-0029566 14973 #> 3459 Shadow Ridge (NV) 00-0029289 15112 #> 3460 Coconut Creek (FL) 00-0028454 14387 #> 3461 Northwest (OH) 00-0031171 16762 #> 3462 University City (MO) 00-0030517 16025 #> 3463 <NA> 00-0035741 3915778 #> 3464 St. Mary's College (CA) 00-0023259 9424 #> 3465 Chatham (NY) 00-0031847 2576461 #> 3466 Loyola Blakefield (MD) 00-0030033 16457 #> 3467 Churchland (VA) 00-0027777 13422 #> 3468 Lowndes County (GA) 00-0031309 16891 #> 3469 Kathleen (FL) 00-0027560 13851 #> 3470 Curtis (NY) 00-0031425 16721 #> 3471 Hylton (VA) 00-0024495 10138 #> 3472 Silverado (NV) 00-0028698 14739 #> 3473 <NA> 00-0035744 3915393 #> 3474 Inderkum (CA) 00-0031084 16849 #> 3475 Canon-McMillan (PA) 00-0031719 2515545 #> 3476 Bishop Miege (MO) 00-0032221 2577371 #> 3477 Coatesville Area (PA) 00-0027868 13248 #> 3478 Cimarron-Memorial (NV) 00-0029620 15002 #> 3479 Simeon (IL) 00-0030104 15930 #> 3480 Aiken South (SC) 00-0027812 13482 #> 3481 Bayside (NY) 00-0027245 13766 #> 3482 <NA> 00-0034480 2987188 #> 3483 <NA> 00-0034554 3056719 #> 3484 Skyline (TX) 00-0031350 16902 #> 3485 Varina HS (VA) 00-0029600 14952 #> 3486 Crenshaw (CA) 00-0032171 2510601 #> 3487 Maynard Jackson (GA) 00-0031564 2576646 #> 3488 Centennial (CA) 00-0028912 15246 #> 3489 University of Detroit Jesuit (MI) 00-0027022 12449 #> 3490 Clearfield (UT) 00-0031728 2517389 #> 3491 St. Ignatius (OH) 00-0031578 2515337 #> 3492 Waco (TX) 00-0023449 8430 #> 3493 Eureka (MO) 00-0031393 16937 #> 3494 Hamilton (AZ) 00-0022161 4468 #> 3495 North Little Rock (AR) 00-0031945 3046428 #> 3496 Simmons (MS) 00-0031929 2516283 #> 3497 Long Beach Jordan (CA) 00-0031915 2578388 #> 3498 Mackenzie (MI) 00-0029408 14929 #> 3499 <NA> 00-0034850 3045361 #> 3500 <NA> 00-0035440 3123941 #> 3501 Stephenson (GA) 00-0028006 13995 #> 3502 Agoura (CA) 00-0027002 12438 #> 3503 <NA> 00-0035014 3917286 #> 3504 Paulsboro (NJ) 00-0030385 15977 #> 3505 Hutchinson (KS) 00-0032201 2577219 #> 3506 Palm Desert (CA) 00-0031950 3001171 #> 3507 Gainesville (FL) 00-0031866 2577718 #> 3508 <NA> 00-0034312 3049262 #> 3509 <NA> 00-0035461 3917548 #> 3510 Carroll (TX) 00-0031902 2514468 #> 3511 Ayala (CA) 00-0031614 2468550 #> 3512 Lamar (TX) 00-0026989 12439 #> 3513 <NA> 00-0035627 3910330 #> 3514 Ocean Lakes (VA) 00-0032060 2979652 #> 3515 St. Mark's (TX) 00-0028041 14152 #> 3516 Fort Walton Beach (FL) 00-0032114 2576635 #> 3517 Millard West (NE) 00-0031814 3085243 #> 3518 Verbum Dei (CA) 00-0027977 14015 #> 3519 Plantation (FL) 00-0031365 16727 #> 3520 Philipsburg-Osceola (PA) 00-0023177 9276 #> 3521 Downers Grove South (IL) 00-0034067 2980138 #> 3522 <NA> 00-0035205 3144792 #> 3523 Elder (OH) 00-0027247 13777 #> 3524 Phillips Andover Academy (MA) 00-0025503 10560 #> 3525 Ensworth (TN) 00-0029879 16361 #> 3526 <NA> 00-0034233 3122680 #> 3527 <NA> 00-0032338 2516051 #> 3528 <NA> 00-0034727 3052422 #> 3529 <NA> 00-0035054 3039982 #> 3530 Bishop Manogue (NV) 00-0035337 3914817 #> 3531 <NA> 00-0033115 2976115 #> 3532 <NA> 00-0032396 2974333 #> 3533 <NA> 00-0035459 3128354 #> 3534 Glen Oaks (LA) 00-0031620 2568060 #> 3535 <NA> 00-0034338 3126350 #> 3536 <NA> 00-0027959 13968 #> 3537 <NA> 00-0035128 3115258 #> 3538 <NA> 00-0034517 3125323 #> 3539 <NA> 00-0034194 3121563 #> 3540 <NA> 00-0035622 3932392 #> 3541 <NA> 00-0035053 3912362 #> 3542 <NA> 00-0035451 3126348 #> 3543 <NA> 00-0034696 4339830 #> 3544 <NA> 00-0035027 4408860 #> 3545 <NA> 00-0034665 3048672 #> 3546 <NA> 00-0033325 3059973 #> 3547 <NA> 00-0033971 3052515 #> 3548 <NA> 00-0035452 4243164 #> 3549 <NA> 00-0034520 3914155 #> 3550 <NA> 00-0034195 3042743 #> 3551 <NA> 00-0035096 3119315 #> 3552 <NA> 00-0035566 3122684 #> 3553 <NA> 00-0033998 3042478 #> 3554 <NA> 00-0033369 3915787 #> 3555 <NA> 00-0034497 3048705 #> 3556 Crenshaw (CA) 00-0025472 10529 #> 3557 <NA> 00-0034552 3128698 #> 3558 North Clayton (GA) 00-0027236 13608 #> 3559 <NA> 00-0034209 3057975 #> 3560 <NA> 00-0035509 3918417 #> 3561 Red River (LA) 00-0030507 15850 #> 3562 <NA> 00-0034434 3917847 #> 3563 Grayson (GA) 00-0032761 3051886 #> 3564 <NA> 00-0033961 2584628 #> 3565 <NA> 00-0034444 3116695 #> 3566 <NA> 00-0033191 4081021 #> 3567 Francis Howell (MO) 00-0035218 3921970 #> 3568 <NA> 00-0034719 3124544 #> 3569 <NA> 00-0032470 2982803 #> 3570 <NA> 00-0033841 2980639 #> 3571 <NA> 00-0032929 2471470 #> 3572 <NA> 00-0035469 4411196 #> 3573 <NA> 00-0034403 3128801 #> 3574 <NA> 00-0035111 4390082 #> 3575 <NA> 00-0035434 3124030 #> 3576 <NA> 00-0032751 2971032 #> 3577 <NA> 00-0034689 3056487 #> 3578 <NA> 00-0032729 3051940 #> 3579 <NA> 00-0033776 2971022 #> 3580 <NA> 00-0035122 4266934 #> 3581 <NA> 00-0035324 3116693 #> 3582 <NA> 00-0033450 3042370 #> 3583 <NA> 00-0034643 3050925 #> 3584 <NA> 00-0032491 2978064 #> 3585 <NA> 00-0034474 3914861 #> 3586 <NA> 00-0033606 3045851 #> 3587 <NA> 00-0031509 2515422 #> 3588 <NA> 00-0033794 2971565 #> 3589 <NA> 00-0032994 2576378 #> 3590 <NA> 00-0034724 3116620 #> 3591 Trinity Christian Academy (FL) 00-0034107 3916928 #> 3592 <NA> 00-0035482 3121408 #> 3593 <NA> 00-0035392 3139626 #> 3594 <NA> 00-0034738 3047923 #> 3595 <NA> 00-0033477 2972232 #> 3596 <NA> 00-0034484 3118964 #> 3597 <NA> 00-0033423 2971373 #> 3598 <NA> 00-0034341 3045376 #> 3599 <NA> 00-0033226 2978065 #> 3600 <NA> 00-0033974 2576666 #> 3601 <NA> 00-0033234 3042361 #> 3602 <NA> 00-0035107 3120573 #> 3603 <NA> 00-0035177 3128396 #> 3604 <NA> 00-0032708 2978411 #> 3605 <NA> 00-0033657 3049574 #> 3606 <NA> 00-0035550 3912679 #> 3607 <NA> 00-0034117 3115352 #> 3608 <NA> 00-0035445 3128308 #> 3609 <NA> 00-0035506 3126363 #> 3610 <NA> 00-0035381 3117242 #> 3611 <NA> 00-0034210 3045261 #> 3612 <NA> 00-0034898 3124103 #> 3613 <NA> 00-0035747 3126478 #> 3614 <NA> 00-0035123 3116162 #> 3615 <NA> 00-0032670 2577919 #> 3616 <NA> 00-0035608 3917329 #> 3617 <NA> 00-0034460 3052451 #> 3618 <NA> 00-0035426 3921958 #> 3619 <NA> 00-0035116 4290803 #> 3620 <NA> 00-0031707 2515838 #> 3621 <NA> 00-0032799 2577203 #> 3622 <NA> 00-0034713 3125898 #> 3623 <NA> 00-0034548 3040024 #> 3624 <NA> 00-0035049 4251200 #> 3625 <NA> 00-0034776 4036493 #> 3626 <NA> 00-0033686 2971636 #> 3627 <NA> 00-0034305 3129304 #> 3628 <NA> 00-0034238 3045243 #> 3629 <NA> 00-0035581 3060799 #> 3630 <NA> 00-0034282 3052184 #> 3631 <NA> 00-0035673 3115384 #> 3632 <NA> 00-0030396 16573 #> 3633 <NA> 00-0032796 3929954 #> 3634 <NA> 00-0034458 3126120 #> 3635 <NA> 00-0032425 2567868 #> 3636 <NA> 00-0033741 3042536 #> 3637 <NA> 00-0035338 3922125 #> 3638 <NA> 00-0032622 2576703 #> 3639 <NA> 00-0031946 2520845 #> 3640 <NA> 00-0031616 2514799 #> 3641 Elida (OH) 00-0034793 3052996 #> 3642 <NA> 00-0033399 2975680 #> 3643 <NA> 00-0035626 3121578 #> 3644 Westlake (MD) 00-0033956 3039776 #> 3645 <NA> 00-0035271 4034945 #> 3646 <NA> 00-0034539 2976524 #> 3647 <NA> 00-0034069 3051712 #> 3648 <NA> 00-0032851 2577651 #> 3649 <NA> 00-0034008 2976179 #> 3650 <NA> 00-0032484 2574163 #> 3651 <NA> 00-0032905 2574558 #> 3652 <NA> 00-0033521 3042773 #> 3653 <NA> 00-0033188 2470344 #> 3654 <NA> 00-0031931 2517002 #> 3655 <NA> 00-0032674 2576660 #> 3656 <NA> 00-0034236 3125119 #> 3657 <NA> 00-0034242 3122932 #> 3658 <NA> 00-0034558 3039921 #> 3659 <NA> 00-0033922 2972820 #> 3660 <NA> 00-0034188 3053777 #> 3661 <NA> 00-0034530 3062371 #> 3662 <NA> 00-0033827 3916585 #> 3663 <NA> 00-0035152 3137842 #> 3664 <NA> 00-0032909 2976546 #> 3665 <NA> 00-0034690 3040542 #> 3666 <NA> 00-0034513 3928934 #> 3667 <NA> 00-0035364 4034773 #> 3668 <NA> 00-0034543 3052021 #> 3669 <NA> 00-0034550 3039942 #> 3670 <NA> 00-0031113 17390 #> 3671 <NA> 00-0032666 2574396 #> 3672 <NA> 00-0033583 2971388 #> 3673 <NA> 00-0034492 3059941 #> 3674 <NA> 00-0035736 4421448 #> 3675 <NA> 00-0033972 2981069 #> 3676 <NA> 00-0034610 3051330 #> 3677 <NA> 00-0034470 3844004 #> 3678 <NA> 00-0032867 2576443 #> 3679 <NA> 00-0031764 2516314 #> 3680 <NA> 00-0034656 3050401 #> 3681 <NA> 00-0031879 2514802 #> 3682 <NA> 00-0032885 2575636 #> 3683 <NA> 00-0034182 3119531 #> 3684 <NA> 00-0032921 2576365 #> 3685 <NA> 00-0035180 3116133 #> 3686 <NA> 00-0035582 3055604 #> 3687 <NA> 00-0030096 15927 #> 3688 <NA> 00-0033229 2974240 #> 3689 <NA> 00-0032155 2512704 #> 3690 <NA> 00-0035517 3117248 #> 3691 <NA> 00-0034187 3140151 #> 3692 <NA> 00-0034938 3128699 #> 3693 <NA> 00-0035477 3122934 #> 3694 <NA> 00-0034076 3048635 #> 3695 <NA> 00-0035041 3139092 #> 3696 <NA> 00-0033965 2970255 #> 3697 <NA> 00-0035578 3128311 #> 3698 <NA> 00-0033345 3046702 #> 3699 <NA> 00-0033500 2969125 #> 3700 <NA> 00-0034722 4037476 #> 3701 <NA> 00-0034924 3115977 #> 3702 <NA> 00-0033426 2972575 #> 3703 <NA> 00-0034820 3116702 #> 3704 <NA> 00-0034693 3919077 #> 3705 <NA> 00-0031646 2514505 #> 3706 <NA> 00-0035001 3915238 #> 3707 San Clemente (CA) 00-0032433 2978275 #> 3708 Green (OH) 00-0034250 3042468 #> 3709 <NA> 00-0034002 2978519 #> 3710 <NA> 00-0035420 4329476 #> 3711 <NA> 00-0035425 3924355 #> 3712 <NA> 00-0034940 3938130 #> 3713 <NA> 00-0033804 2978207 #> 3714 <NA> 00-0035203 3138756 #> 3715 <NA> 00-0034542 3046323 #> 3716 <NA> 00-0035055 4251009 #> 3717 <NA> 00-0035134 4036833 #> 3718 <NA> 00-0035132 3116658 #> 3719 <NA> 00-0032680 2974612 #> 3720 <NA> 00-0034259 3046693 #> 3721 <NA> 00-0033636 2981862 #> 3722 <NA> 00-0034508 3056440 #> 3723 <NA> 00-0032397 2573312 #> 3724 <NA> 00-0032723 3123982 #> 3725 <NA> 00-0035105 3121518 #> 3726 <NA> 00-0033273 2987317 #> 3727 <NA> 00-0031626 2576480 #> 3728 <NA> 00-0035611 3120858 #> 3729 <NA> 00-0033189 2471491 #> 3730 <NA> 00-0034651 3051938 #> 3731 East Bernard (TX) 00-0019714 2273 #> 3732 <NA> 00-0034576 3051820 #> 3733 <NA> 00-0033218 3046441 #> 3734 Liberty (CA) 00-0030551 16623 #> 3735 <NA> 00-0033364 2980123 #> 3736 Catholic HS (LA) 00-0022684 5749 #> 3737 Carrollton (GA) 00-0035433 3129309 #> 3738 Sheldon-Williams Collegiate (SK) 00-0023742 10238 #> 3739 <NA> 00-0031420 17495 #> 3740 <NA> 00-0033201 2996095 #> 3741 Rutland (GA) 00-0029123 15389 #> 3742 North Myrtle Beach (SC) 00-0029493 15616 #> 3743 Frontier (CA) 00-0031716 2516357 #> 3744 Jupiter (FL) 00-0028130 14073 #> 3745 <NA> 00-0034064 3050015 #> 3746 <NA> 00-0034950 3133168 #> 3747 Mountain Ridge (AZ) 00-0030405 15926 #> 3748 <NA> 00-0035077 3128814 #> 3749 <NA> 00-0033098 2976299 #> 3750 <NA> 00-0034897 2979695 #> 3751 West Lauderdale (MS) 00-0028957 15187 #> 3752 Flathead (MT) 00-0029682 14879 #> 3753 Midlothian (TX) 00-0031568 2466005 #> 3754 Artesia (NM) 00-0030524 15904 #> 3755 <NA> 00-0034531 3139591 #> 3756 <NA> 00-0034737 4290778 #> 3757 <NA> 00-0034574 3040134 #> 3758 Putnam City North (OK) 00-0027854 13197 #> 3759 <NA> 00-0034126 3040507 #> 3760 <NA> 00-0034697 3059773 #> 3761 West Scranton (PA) 00-0030419 16593 #> 3762 <NA> 00-0035471 3087801 #> 3763 <NA> 00-0033108 2977881 #> 3764 <NA> 00-0034416 3041097 #> 3765 <NA> 00-0033766 2979985 #> 3766 Burlington (WI) 00-0021678 5209 #> 3767 <NA> 00-0032462 2575910 #> 3768 <NA> 00-0034478 3050022 #> 3769 <NA> 00-0031064 16943 #> 3770 Scappoose (OR) 00-0023645 8627 #> 3771 Isidore Newman (LA) 00-0022803 5526 #> 3772 <NA> 00-0034608 3046412 #> 3773 <NA> 00-0032953 3057986 #> 3774 <NA> 00-0034412 3052061 #> 3775 <NA> 00-0035723 3139487 #> 3776 <NA> 00-0034074 3118374 #> 3777 <NA> 00-0032893 2576261 #> 3778 <NA> 00-0034291 3931782 #> 3779 <NA> 00-0034144 3053315 #> 3780 <NA> 00-0033104 2577243 #> 3781 Mission Viego (CA) 00-0026898 12482 #> 3782 Bayside (VA) 00-0030526 15803 #> 3783 Edmond Santa Fe (OK) 00-0029677 14878 #> 3784 <NA> 00-0029151 15407 #> 3785 <NA> 00-0034219 3048030 #> 3786 Santa Margarita (CA) 00-0021429 4459 #> 3787 <NA> 00-0032630 3078660 #> 3788 <NA> 00-0035483 4040826 #> 3789 Stratford (TX) 00-0029668 14874 #> 3790 <NA> 00-0033585 3123048 #> 3791 Chatsworth (CA) 00-0023662 8644 #> 3792 <NA> 00-0032658 2575214 #> 3793 <NA> 00-0035037 3115966 #> 3794 Heritage (WA) 00-0032148 2575660 #> 3795 Miami Southridge (FL) 00-0031277 17452 #> 3796 <NA> 00-0032593 2577692 #> 3797 <NA> 00-0035512 3886636 #> 3798 <NA> 00-0033304 3918026 #> 3799 <NA> 00-0032048 2512191 #> 3800 <NA> 00-0035013 3122799 #> 3801 Eagan (MN) 00-0031665 2521161 #> 3802 Hunter (UT) 00-0028198 14360 #> 3803 Flint Northern (MI) 00-0031897 2576237 #> 3804 <NA> 00-0034315 3929855 #> 3805 <NA> 00-0034870 3124608 #> 3806 <NA> 00-0032747 2971435 #> 3807 <NA> 00-0034890 3139485 #> 3808 <NA> 00-0035725 4421390 #> 3809 <NA> 00-0032740 2576280 #> 3810 Bishop Gorman (NV) 00-0028009 14005 #> 3811 <NA> 00-0034509 3052662 #> 3812 Westbury (TX) 00-0031390 16749 #> 3813 Pearland (TX) 00-0029731 15755 #> 3814 Liberty (OH) 00-0031332 17465 #> 3815 Berkeley (SC) 00-0030287 15893 #> 3816 <NA> 00-0035396 3124022 #> 3817 <NA> 00-0033762 2974712 #> 3818 Memorial (TX) 00-0026213 11307 #> 3819 <NA> 00-0034596 3051762 #> 3820 <NA> 00-0034935 4422215 #> 3821 <NA> 00-0032371 2575408 #> 3822 Miami Central (FL) 00-0029205 15457 #> 3823 <NA> 00-0034961 3843406 #> 3824 <NA> 00-0034200 4057659 #> 3825 Dekaney (TX) 00-0031531 2972282 #> 3826 Springhill (LA) 00-0030668 17284 #> 3827 <NA> 00-0032377 2576165 #> 3828 Frisco Liberty (TX) 00-0031590 2573300 #> 3829 <NA> 00-0034137 4039226 #> 3830 <NA> 00-0032540 2972283 #> 3831 Oakland Technical (CA) 00-0025399 10456 #> 3832 <NA> 00-0034427 3048924 #> 3833 Goodpasture Christian (TN) 00-0029795 16055 #> 3834 Lincoln (FL) 00-0031577 2577253 #> 3835 George Washington Carver (GA) 00-0030656 17133 #> 3836 <NA> 00-0034007 3049987 #> 3837 <NA> 00-0035569 3916451 #> 3838 Bruton (VA) 00-0031066 16950 #> 3839 <NA> 00-0033515 3128267 #> 3840 <NA> 00-0034900 4328969 #> 3841 <NA> 00-0035583 3126072 #> 3842 Slidell (LA) 00-0026184 11278 #> 3843 <NA> 00-0034221 3121583 #> 3844 Bethel (VA) 00-0029854 16040 #> 3845 Longview (TX) 00-0027531 13587 #> 3846 <NA> 00-0032902 2575553 #> 3847 <NA> 00-0034893 4034782 #> 3848 Irvington (CA) 00-0029273 14894 #> 3849 <NA> 00-0034666 3124979 #> 3850 <NA> 00-0035658 3914267 #> 3851 <NA> 00-0035691 4426310 #> 3852 Redemptorist (LA) 00-0031301 16803 #> 3853 <NA> 00-0033760 3043216 #> 3854 <NA> 00-0033596 3051711 #> 3855 Tarboro (NC) 00-0028202 14518 #> 3856 <NA> 00-0034156 4047769 #> 3857 <NA> 00-0033384 3040143 #> 3858 <NA> 00-0032672 2570994 #> 3859 Timberline (WA) 00-0026153 11247 #> 3860 <NA> 00-0031793 2581598 #> 3861 <NA> 00-0033561 3047519 #> 3862 <NA> 00-0033035 2580343 #> 3863 Olympia (FL) 00-0026164 11258 #> 3864 Valley (NV) 00-0030117 16024 #> 3865 Harrisburg (PA) 00-0031599 3043097 #> 3866 <NA> 00-0034786 3041102 #> 3867 Ellison 00-0032133 2576303 #> 3868 <NA> 00-0031158 17396 #> 3869 Franklinton (LA) 00-0031768 2577283 #> 3870 <NA> 00-0034624 3052163 #> 3871 <NA> 00-0033508 3054030 #> 3872 Olathe North (KS) 00-0023564 8544 #> 3873 <NA> 00-0032611 2974212 #> 3874 <NA> 00-0034632 3126113 #> 3875 Plainfield North (IL) 00-0031102 16969 #> 3876 Episcopal (VA) 00-0026289 11383 #> 3877 Lake Gibson (FL) 00-0028064 14129 #> 3878 John Glenn (MI) 00-0031569 2515416 #> 3879 Northwestern (MD) 00-0031375 16783 #> 3880 Opelika (AL) 00-0031731 2515934 #> 3881 <NA> 00-0034201 3928461 #> 3882 <NA> 00-0035176 3135736 #> 3883 <NA> 00-0034099 3140525 #> 3884 Valencia (CA) 00-0027994 14017 #> 3885 Hahnville (LA) 00-0031075 16921 #> 3886 <NA> 00-0030711 16994 #> 3887 Armwood (FL) 00-0031939 2980105 #> 3888 <NA> 00-0034670 3040146 #> 3889 <NA> 00-0033613 2970017 #> 3890 <NA> 00-0034708 3127374 #> 3891 DeLand (FL) 00-0030433 15952 #> 3892 <NA> 00-0035454 3929927 #> 3893 <NA> 00-0034358 3843750 #> 3894 Sweetwater (TX) 00-0029048 15296 #> 3895 <NA> 00-0032964 2971289 #> 3896 <NA> 00-0034565 3117131 #> 3897 <NA> 00-0035209 3917814 #> 3898 La Habra (CA) 00-0029683 14895 #> 3899 <NA> 00-0033413 3045199 #> 3900 <NA> 00-0032472 2577245 #> 3901 <NA> 00-0032804 2576873 #> 3902 <NA> 00-0035086 3122842 #> 3903 West Bakersfield (CA) 00-0027864 13204 #> 3904 Taylor (FL) 00-0027325 13213 #> 3905 <NA> 00-0035043 3895788 #> 3906 <NA> 00-0032298 2574474 #> 3907 Newton (GA) 00-0031743 2576408 #> 3908 Lamar Consolidated (TX) 00-0028083 14193 #> 3909 <NA> 00-0033630 3047969 #> 3910 <NA> 00-0033286 3912576 #> 3911 <NA> 00-0033581 2968226 #> 3912 <NA> 00-0035299 3705353 #> 3913 <NA> 00-0035606 3919544 #> 3914 West Brook (TX) 00-0030432 15855 #> 3915 <NA> 00-0033975 3116690 #> 3916 <NA> 00-0034883 3052624 #> 3917 <NA> 00-0033268 2970183 #> 3918 Trinity Episcopal (MS) 00-0028011 14028 #> 3919 <NA> 00-0034618 NA #> 3920 <NA> 00-0033683 3930272 #> 3921 <NA> 00-0035212 3124074 #> 3922 <NA> 00-0035494 3119996 #> 3923 Marshall (TX) 00-0030280 15832 #> 3924 <NA> 00-0034876 4339834 #> 3925 <NA> 00-0035489 3060919 #> 3926 Desoto (TX) 00-0031959 2514123 #> 3927 <NA> 00-0034535 3123212 #> 3928 <NA> 00-0033348 3040644 #> 3929 <NA> 00-0034621 3116563 #> 3930 Union County (FL) 00-0027861 13203 #> 3931 North Platte (NE) 00-0026019 11788 #> 3932 Oak Grove (AR) 00-0026144 11238 #> 3933 <NA> 00-0034205 3129453 #> 3934 <NA> 00-0034679 3917846 #> 3935 Dutchtown (LA) 00-0030485 15848 #> 3936 <NA> 00-0034240 4294229 #> 3937 <NA> 00-0032411 2971888 #> 3938 <NA> 00-0034294 3042728 #> 3939 St. Mary's (CA) 00-0029613 14885 #> 3940 <NA> 00-0034136 3122761 #> 3941 <NA> 00-0035441 4243243 #> 3942 <NA> 00-0035456 3117846 #> 3943 <NA> 00-0034615 3128696 #> 3944 <NA> 00-0034224 3122442 #> 3945 Deep Run (VA) 00-0031267 16833 #> 3946 <NA> 00-0035214 3127378 #> 3947 Banning (CA) 00-0032069 2517248 #> 3948 <NA> 00-0033001 2980380 #> 3949 Eastlake (CA) 00-0030294 16195 #> 3950 Dr. Phillips (FL) 00-0031333 16735 #> 3951 <NA> 00-0031678 2572986 #> 3952 <NA> 00-0033313 2979584 #> 3953 <NA> 00-0034875 4339173 #> 3954 Dominguez (CA) 00-0028441 14274 #> 3955 <NA> 00-0035017 3918008 #> 3956 Shoemaker (TX) 00-0031755 2511832 #> 3957 Jackson (FL) 00-0031680 2574553 #> 3958 Hardaway (GA) 00-0029107 15305 #> 3959 <NA> 00-0032767 3043215 #> 3960 <NA> 00-0034671 3121433 #> 3961 <NA> 00-0035060 3117414 #> 3962 <NA> 00-0033970 3894908 #> 3963 Penn Hills (PA) 00-0027416 13338 #> 3964 <NA> 00-0034476 3123667 #> 3965 North Miami Beach (FL) 00-0030427 16008 #> 3966 <NA> 00-0032479 2976308 #> 3967 Horlick (WI) 00-0027378 13697 #> 3968 <NA> 00-0035193 3921654 #> 3969 <NA> 00-0034926 3127305 #> 3970 <NA> 00-0032620 2577076 #> 3971 Horizon Science Academy (OH) 00-0031989 3894939 #> 3972 <NA> 00-0033602 2973956 #> 3973 <NA> 00-0032776 2986767 #> 3974 Elko (SC) 00-0027195 13544 #> 3975 Harding University (IL) 00-0031307 16819 #> 3976 <NA> 00-0032322 2470860 #> 3977 <NA> 00-0034841 3115472 #> 3978 <NA> 00-0033527 3134683 #> 3979 <NA> 00-0033774 2971519 #> 3980 <NA> 00-0034964 3931774 #> 3981 <NA> 00-0034600 3116423 #> 3982 Dutchtown (LA) 00-0030548 15809 #> 3983 Cathedral (CA) 00-0035576 3122173 #> 3984 Hubbard (OH) 00-0031919 2515405 #> 3985 <NA> 00-0035224 3916064 #> 3986 Ocean Lakes (VA) 00-0030412 15992 #> 3987 North Clayton (GA) 00-0027676 13264 #> 3988 White Castle (LA) 00-0031895 2577293 #> 3989 <NA> 00-0033731 3957450 #> 3990 <NA> 00-0033339 2979535 #> 3991 <NA> 00-0034569 3052080 #> 3992 <NA> 00-0033232 3043147 #> 3993 <NA> 00-0031738 2574756 #> 3994 <NA> 00-0034063 2512591 #> 3995 <NA> 00-0033861 3056913 #> 3996 <NA> 00-0035398 3929926 #> 3997 Kennedy (CA) 00-0029520 15612 #> 3998 <NA> 00-0034919 2161946 #> 3999 Maury (VA) 00-0027733 13336 #> 4000 <NA> 00-0033396 2976184 #> 4001 Carver's Bay (SC) 00-0031571 2519211 #> 4002 <NA> 00-0033443 3042721 #> 4003 Creekside (GA) 00-0027858 13252 #> 4004 <NA> 00-0033397 2970724 #> 4005 <NA> 00-0033220 2972155 #> 4006 Towers (GA) 00-0028038 14143 #> 4007 <NA> 00-0033507 3140807 #> 4008 <NA> 00-0033829 2986898 #> 4009 Edison (CA) 00-0030530 15852 #> 4010 <NA> 00-0033674 2978946 #> 4011 Traverse City West (MI) 00-0032196 2576971 #> 4012 Bradwell Institute (GA) 00-0031028 16894 #> 4013 DeMatha Catholic (MD) 00-0031335 16796 #> 4014 McDonough (LA) 00-0025900 11689 #> 4015 Servite (CA) 00-0029687 14928 #> 4016 Rancocas Valley (NJ) 00-0027987 14041 #> 4017 Deer Valley (CA) 00-0031771 3053814 #> 4018 Paterson Catholic (NJ) 00-0031572 2513131 #> 4019 Cretin-Derham Hall (MN) 00-0031029 16892 #> 4020 Hinds Co. Agricultural (MS) 00-0028152 14197 #> 4021 Cass (MI) 00-0028030 14030 #> 4022 Gosnell (AR) 00-0026839 13066 #> 4023 Columbus (TX) 00-0029886 16333 #> 4024 Deseret Pines (NV) 00-0032263 2971660 #> 4025 Tualatin (OR) 00-0031179 16865 #> 4026 Anthony Wayne (OH) 00-0032246 2511692 #> 4027 Maize (KS) 00-0029786 16222 #> 4028 Central (IA) 00-0027297 13585 #> 4029 Riverdale (GA) 00-0029561 14971 #> 4030 Maynard Evans (FL) 00-0031821 2577503 #> 4031 St. Bernard (CA) 00-0023894 10062 #> 4032 Thibodaux (LA) 00-0031386 7439 #> 4033 New Hanover (NC) 00-0030313 16047 #> 4034 Riverdale (GA) 00-0030621 16680 #> 4035 Havelock (NC) 00-0031627 2516338 #> 4036 Blue Ridge (VA) 00-0032272 2977676 #> 4037 Milton (PA) 00-0030899 16997 #> 4038 Walt Whitman (NY) 00-0032078 3056893 #> 4039 Williamson (AL) 00-0029302 15013 #> 4040 Rockford (MI) 00-0025415 10472 #> 4041 <NA> 00-0035119 3127376 #> 4042 <NA> 00-0035484 3120540 #> 4043 McQuaid Jesuit (NY) 00-0032089 2508328 #> 4044 <NA> 00-0034494 3126158 #> 4045 <NA> 00-0034795 3116132 #> 4046 Pine Bluff (AR) 00-0026957 12506 #> 4047 <NA> 00-0032650 2577892 #> 4048 <NA> 00-0034716 3957316 #> 4049 <NA> 00-0033559 3059945 #> 4050 <NA> 00-0035034 3125414 #> 4051 <NA> 00-0034557 3039970 #> 4052 <NA> 00-0035109 3116195 #> 4053 Middleburg (FL) 00-0026281 11364 #> 4054 Detroit Central (MI) 00-0021547 5362 #> 4055 <NA> 00-0033061 3047558 #> 4056 <NA> 00-0031788 2470916 #> 4057 Bogan 00-0031968 3039924 #> 4058 Dunbar (DC) 00-0024221 9592 #> 4059 <NA> 00-0032430 2580052 #> 4060 Joliet Catholic Academy (IL) 00-0029697 14900 #> 4061 St. Francis (CA) 00-0029587 15003 #> 4062 Saint Thomas Aquinas (FL) 00-0031884 2468368 #> 4063 <NA> 00-0033735 3957543 #> 4064 La Salle (OH) 00-0025549 10605 #> 4065 <NA> 00-0034292 3123714 #> 4066 <NA> 00-0034146 3052991 #> 4067 <NA> 00-0033054 2990959 #> 4068 <NA> 00-0033966 3045466 #> 4069 Manasquan (NJ) 00-0032120 2513770 #> 4070 <NA> 00-0034863 3039793 #> 4071 John Adams (OH) 00-0031213 17423 #> 4072 <NA> 00-0033043 2576449 #> 4073 <NA> 00-0032227 2576389 #> 4074 <NA> 00-0034563 3935107 #> 4075 <NA> 00-0032006 2574931 #> 4076 Harvard-Westlake (CA) 00-0030854 17091 #> 4077 <NA> 00-0032072 2577661 #> 4078 <NA> 00-0032515 3125253 #> 4079 <NA> 00-0035740 3116661 #> 4080 <NA> 00-0033149 2309428 #> 4081 St. Mary's Prep (MI) 00-0030422 15974 #> 4082 <NA> 00-0032914 2574404 #> 4083 Bellflower (CA) 00-0027675 13272 #> 4084 Salisbury (CT) 00-0032004 2512523 #> 4085 <NA> 00-0034057 3007919 #> 4086 Central (AR) 00-0028112 14145 #> 4087 Middletown South (NJ) 00-0031167 17391 #> 4088 Central Catholic (IL) 00-0027732 13387 #> 4089 <NA> 00-0028093 14156 #> 4090 <NA> 00-0034010 4227184 #> 4091 Inderkum (CA) 00-0032188 3052066 #> 4092 <NA> 00-0034725 3139447 #> 4093 <NA> 00-0034322 3051719 #> 4094 <NA> 00-0034340 4338875 #> 4095 Alief Taylor (TX) 00-0026201 11295 #> 4096 <NA> 00-0035057 3926590 #> 4097 <NA> 00-0034783 3074230 #> 4098 <NA> 00-0031140 17392 #> 4099 Carmel (IL) 00-0029391 15515 #> 4100 <NA> 00-0034214 3121396 #> 4101 <NA> 00-0033332 2979554 #> 4102 <NA> 00-0034611 3129455 #> 4103 <NA> 00-0035604 3126196 #> 4104 <NA> 00-0032139 2579846 #> 4105 Gig Harbor (WA) 00-0031418 16795 #> 4106 <NA> 00-0034306 3125991 #> 4107 Northwestern (SC) 00-0022943 5557 #> 4108 LaSalle (OH) 00-0028903 15204 #> 4109 Servite (CA) 00-0031044 16797 #> 4110 <NA> 00-0033514 3931761 #> 4111 Ben Davis (IN) 00-0029878 16323 #> 4112 <NA> 00-0035552 3065510 #> 4113 <NA> 00-0032661 2969241 #> 4114 Santa Margarita (CA) 00-0030544 15836 #> 4115 Pomona (CA) 00-0024389 9761 #> 4116 <NA> 00-0033745 3059165 #> 4117 <NA> 00-0029414 14902 #> 4118 <NA> 00-0034640 3115251 #> 4119 Bath Co. (VA) 00-0027139 12550 #> 4120 <NA> 00-0033262 3115399 #> 4121 Hueytown 00-0031864 2972765 #> 4122 Crosby (CT) 00-0031462 2476373 #> 4123 <NA> 00-0031042 16792 #> 4124 <NA> 00-0031609 3046413 #> 4125 <NA> 00-0032523 3144999 #> 4126 Hernando (MS) 00-0029091 15284 #> 4127 <NA> 00-0032341 4002672 #> 4128 <NA> 00-0032634 2970038 #> 4129 <NA> 00-0031711 3048976 #> 4130 Mullen (CO) 00-0030780 17169 #> 4131 Bishop Neumann (NE) 00-0027125 12699 #> 4132 <NA> 00-0027215 13726 #> 4133 <NA> 00-0034655 3060410 #> 4134 <NA> 00-0034549 3047912 #> 4135 <NA> 00-0030805 17165 #> 4136 <NA> 00-0035605 3122421 #> 4137 <NA> 00-0032932 2566643 #> 4138 <NA> 00-0035009 3915230 #> 4139 <NA> 00-0035367 3116384 #> 4140 Terry Sanford (NC) 00-0029689 14901 #> 4141 Wall 00-0029910 16285 #> 4142 Tokay (CA) 00-0028067 14204 #> 4143 Delmar (DE) 00-0032864 2577731 #> 4144 <NA> 00-0034619 3051861 #> 4145 <NA> 00-0032606 2582138 #> 4146 <NA> 00-0034784 3134314 #> 4147 <NA> 00-0034472 3125891 #> 4148 <NA> 00-0033623 3040071 #> 4149 <NA> 00-0032997 2512657 #> 4150 <NA> 00-0033240 3045163 #> 4151 Ardmore (OK) 00-0027873 13228 #> 4152 Booker T. Washington (FL) 00-0029275 14904 #> 4153 <NA> 00-0035170 3134013 #> 4154 Rufus King (WI) 00-0027985 14007 #> 4155 <NA> 00-0034284 3039794 #> 4156 <NA> 00-0032583 2981998 #> 4157 <NA> 00-0032508 2567213 #> 4158 Glades Central (FL) 00-0032256 2512593 #> 4159 <NA> 00-0034313 4337702 #> 4160 <NA> 00-0032959 2576498 #> 4161 <NA> 00-0033773 2988624 #> 4162 <NA> 00-0033599 2982809 #> 4163 <NA> 00-0034647 3045763 #> 4164 <NA> 00-0033060 2982804 #> 4165 <NA> 00-0026176 11270 #> 4166 Leroy (AL) 00-0032166 2574549 #> yahoo_id rotowire_id pff_id #> 1 31067 12795 45547 #> 2 32011 13678 46618 #> 3 31865 13560 44027 #> 4 24806 7509 6171 #> 5 33089 14793 50465 #> 6 29924 11101 11302 #> 7 7773 4768 2969 #> 8 26683 8645 7841 #> 9 24792 7300 6157 #> 10 25727 8163 7023 #> 11 33287 14692 NA #> 12 32095 14032 30126 #> 13 32623 14330 49116 #> 14 29781 11341 11137 #> 15 26621 9101 8419 #> 16 31970 13499 28307 #> 17 32081 13709 48850 #> 18 26828 8964 7987 #> 19 27815 9412 9003 #> 20 28539 10461 9584 #> 21 28488 10453 9533 #> 22 32784 14712 44614 #> 23 31897 13742 49605 #> 24 28440 10311 9485 #> 25 32061 13573 36493 #> 26 29720 11204 11142 #> 27 25935 8364 7209 #> 28 32432 13845 46676 #> 29 30249 11796 11891 #> 30 26642 8733 7800 #> 31 32546 13963 NA #> 32 28521 10279 9566 #> 33 7223 4441 NA #> 34 30337 11831 NA #> 35 27369 9054 NA #> 36 31299 13210 66928 #> 37 27702 9377 8809 #> 38 28419 10355 9464 #> 39 31324 13222 49167 #> 40 31151 12823 48553 #> 41 28472 10452 9517 #> 42 30126 11937 11768 #> 43 30308 11982 11950 #> 44 28446 10329 9491 #> 45 30848 11987 49282 #> 46 29349 10935 10749 #> 47 25731 8140 7027 #> 48 33086 15102 26885 #> 49 30722 12445 12171 #> 50 29885 11179 11181 #> 51 32872 14752 NA #> 52 32678 14525 42451 #> 53 25976 8543 7301 #> 54 24058 6682 5607 #> 55 32801 14717 44515 #> 56 7872 5853 3068 #> 57 6947 4044 1906 #> 58 31833 13613 38334 #> 59 32662 14587 46440 #> 60 28535 9706 9580 #> 61 29307 11002 10707 #> 62 31104 12667 45851 #> 63 30355 12089 11996 #> 64 32892 14372 NA #> 65 29872 11004 11214 #> 66 33088 15106 25859 #> 67 28508 10420 9553 #> 68 31971 13586 25444 #> 69 30149 11986 11791 #> 70 32742 14584 26634 #> 71 25958 8243 7229 #> 72 32080 13681 29038 #> 73 29625 11424 11022 #> 74 24850 7552 6215 #> 75 28412 10259 9457 #> 76 30523 11890 12122 #> 77 32250 14132 47147 #> 78 29372 11221 10772 #> 79 32339 14102 NA #> 80 28443 10128 9488 #> 81 30891 12276 51842 #> 82 30487 11860 12014 #> 83 32006 13628 39587 #> 84 30637 12106 12251 #> 85 27074 9046 8128 #> 86 31894 13612 47448 #> 87 26650 8619 7808 #> 88 32159 14043 47896 #> 89 33087 15111 NA #> 90 31607 13297 29622 #> 91 6762 3730 1724 #> 92 31017 12508 47546 #> 93 31320 13061 48021 #> 94 9285 6054 4944 #> 95 32290 14148 46989 #> 96 27948 10096 9234 #> 97 33042 14993 83192 #> 98 27552 9619 8659 #> 99 29653 11316 11050 #> 100 32686 14526 55586 #> 101 31028 12581 50393 #> 102 33058 14999 43958 #> 103 31943 13618 34105 #> 104 27675 9609 8782 #> 105 26693 8646 7851 #> 106 32917 14836 NA #> 107 32804 14697 51423 #> 108 29251 11143 10651 #> 109 26770 8974 7929 #> 110 28391 10349 9436 #> 111 31352 13087 50141 #> 112 24873 7450 6238 #> 113 31060 12754 48815 #> 114 32077 13707 48713 #> 115 28525 10458 9570 #> 116 31967 13798 88313 #> 117 28542 10325 9587 #> 118 32717 14540 48741 #> 119 28141 9990 9302 #> 120 24812 7550 6177 #> 121 29355 10904 10755 #> 122 32748 14408 41141 #> 123 31846 13808 46692 #> 124 30426 12292 NA #> 125 31831 13943 NA #> 126 26975 9068 8500 #> 127 32789 14754 57834 #> 128 29285 11080 10686 #> 129 30315 11943 11957 #> 130 30135 11918 11777 #> 131 32234 14085 31696 #> 132 28620 10497 9665 #> 133 31170 12995 24904 #> 134 26168 8553 7748 #> 135 32898 14653 33541 #> 136 8780 5610 4317 #> 137 31336 12819 46540 #> 138 6849 3793 1811 #> 139 32559 14237 45764 #> 140 28398 10147 9443 #> 141 31096 12835 45932 #> 142 30269 11719 11911 #> 143 31984 13494 45934 #> 144 30262 12019 11904 #> 145 29291 11045 10691 #> 146 26703 8888 7861 #> 147 31343 13080 66448 #> 148 27534 9248 8641 #> 149 27072 10073 8088 #> 150 31863 13748 46912 #> 151 24891 7413 6256 #> 152 30995 12467 47294 #> 153 31749 13356 31849 #> 154 30996 12616 48262 #> 155 32123 13833 44920 #> 156 32523 13469 42237 #> 157 33057 14976 NA #> 158 24793 7242 6158 #> 159 33066 14885 NA #> 160 31347 13083 47900 #> 161 31164 12992 44771 #> 162 29257 10739 10657 #> 163 31641 13036 48036 #> 164 31349 13085 48301 #> 165 28894 10300 10019 #> 166 32315 14126 46219 #> 167 29760 11176 11102 #> 168 32997 14519 41117 #> 169 28406 10407 9451 #> 170 27655 9367 8762 #> 171 29338 10889 10738 #> 172 24814 7511 6179 #> 173 33012 15137 27819 #> 174 31959 13654 NA #> 175 30129 12017 11771 #> 176 31088 12905 50365 #> 177 31121 12726 37492 #> 178 32199 13914 49401 #> 179 33004 14675 NA #> 180 32472 13969 49572 #> 181 29478 11088 10878 #> 182 31160 12459 28854 #> 183 29278 10891 10678 #> 184 32996 14725 36669 #> 185 29303 11146 10703 #> 186 25746 8204 7040 #> 187 32741 14380 44304 #> 188 33008 15140 48721 #> 189 32424 14203 48665 #> 190 32840 14720 50049 #> 191 8827 5587 4364 #> 192 32309 14124 NA #> 193 26838 8987 7997 #> 194 30592 12298 48862 #> 195 24837 7527 6202 #> 196 31955 13823 41482 #> 197 32310 14128 NA #> 198 32813 14470 27305 #> 199 29339 11028 10739 #> 200 26634 8729 7792 #> 201 32776 14685 59874 #> 202 31185 12854 27934 #> 203 26534 8398 7604 #> 204 32304 13539 49757 #> 205 33005 15141 51283 #> 206 24952 7457 6317 #> 207 32698 14508 57941 #> 208 32387 14177 20807 #> 209 31917 13468 48362 #> 210 30160 11961 11802 #> 211 32768 14648 28081 #> 212 31785 13386 49836 #> 213 26370 8526 7292 #> 214 29380 11083 10780 #> 215 31750 13353 29456 #> 216 32496 13821 NA #> 217 24362 7075 6020 #> 218 26717 8678 7875 #> 219 27635 9397 8742 #> 220 31143 12777 22261 #> 221 7952 7073 3148 #> 222 32993 14563 46448 #> 223 31002 12561 46416 #> 224 25712 8023 7008 #> 225 32029 13752 32819 #> 226 24815 7244 6180 #> 227 33006 14404 NA #> 228 31424 13123 46027 #> 229 32725 14418 57366 #> 230 31945 13427 45865 #> 231 28452 10399 9497 #> 232 24677 7013 6013 #> 233 30299 12010 11941 #> 234 31699 13336 47385 #> 235 26786 8826 7945 #> 236 9270 5992 4929 #> 237 29240 11184 10640 #> 238 31053 12557 46227 #> 239 28613 10302 9658 #> 240 32994 14628 NA #> 241 31056 12559 47436 #> 242 33007 14375 NA #> 243 28658 10553 9786 #> 244 28559 10252 9604 #> 245 28184 9283 9092 #> 246 31925 13553 48209 #> 247 32317 13447 39967 #> 248 23999 6336 5549 #> 249 29341 10994 10741 #> 250 32871 14415 48037 #> 251 28800 10243 9697 #> 252 31857 13502 61568 #> 253 31155 12611 13597 #> 254 33001 15135 NA #> 255 27652 9274 8759 #> 256 33040 14529 NA #> 257 32762 14636 40006 #> 258 28026 9284 8999 #> 259 28437 10273 9482 #> 260 32402 13520 28300 #> 261 27260 9506 8268 #> 262 30140 12127 11782 #> 263 25853 8174 7649 #> 264 29808 11475 11170 #> 265 29835 11596 11210 #> 266 32909 14549 32989 #> 267 32416 14253 49395 #> 268 27716 9335 8823 #> 269 31603 12843 25445 #> 270 31124 12817 27130 #> 271 31091 12784 49511 #> 272 32013 13819 51433 #> 273 26782 8892 7941 #> 274 32057 13989 37479 #> 275 24006 6576 5556 #> 276 27575 9265 8682 #> 277 32724 14501 56369 #> 278 31605 13230 48376 #> 279 25147 7889 6558 #> 280 30379 11910 12092 #> 281 26637 8668 7795 #> 282 29381 11069 10781 #> 283 31066 12551 48690 #> 284 29813 11557 11280 #> 285 32575 14271 NA #> 286 29264 10931 10664 #> 287 29559 11327 10975 #> 288 31841 13653 42200 #> 289 28516 10456 9561 #> 290 26695 8738 7853 #> 291 31599 13226 46918 #> 292 32858 14609 NA #> 293 31808 13496 NA #> 294 30986 12612 50905 #> 295 31204 12498 50897 #> 296 32118 14025 57868 #> 297 29254 11108 10654 #> 298 32192 14063 29951 #> 299 32411 13512 51045 #> 300 26771 8942 7930 #> 301 29480 11129 10880 #> 302 27348 11703 8512 #> 303 30276 11978 11918 #> 304 29549 11321 10965 #> 305 31727 13323 27626 #> 306 26721 8004 7880 #> 307 32837 14486 NA #> 308 30200 11843 11842 #> 309 30977 12483 46601 #> 310 32756 14564 40341 #> 311 28424 10056 9469 #> 312 27631 9326 8738 #> 313 24912 7324 6277 #> 314 31822 13930 92925 #> 315 33359 14884 40197 #> 316 31906 13449 40485 #> 317 26841 8639 8000 #> 318 28732 10526 9966 #> 319 33358 14882 NA #> 320 33355 14366 NA #> 321 31870 13498 39805 #> 322 30176 11788 11818 #> 323 28490 10284 9535 #> 324 30853 12245 46319 #> 325 26578 8560 7636 #> 326 31928 13466 35883 #> 327 28473 10247 9518 #> 328 32449 14208 29141 #> 329 33357 14844 40951 #> 330 24946 7425 6311 #> 331 32060 13667 47216 #> 332 29973 10945 11366 #> 333 30285 11866 11927 #> 334 28974 10544 9883 #> 335 28534 10133 9579 #> 336 27619 9684 8726 #> 337 30720 12353 12170 #> 338 26767 8800 7926 #> 339 26060 8249 7330 #> 340 24063 6506 5612 #> 341 32798 14359 55410 #> 342 32877 14356 NA #> 343 27735 9694 8841 #> 344 28105 9433 9304 #> 345 33155 14974 NA #> 346 31025 12610 49377 #> 347 30212 12013 11854 #> 348 25775 8167 7067 #> 349 32783 14581 42883 #> 350 30265 12014 11907 #> 351 32891 14707 NA #> 352 31134 12722 50440 #> 353 29244 10886 10644 #> 354 32822 14787 60789 #> 355 33139 14968 49159 #> 356 31548 12923 51315 #> 357 27656 9303 8763 #> 358 32329 13886 NA #> 359 32734 14623 43179 #> 360 32278 13956 NA #> 361 31106 12841 50244 #> 362 31286 13251 38754 #> 363 31947 13762 50078 #> 364 29461 10894 10861 #> 365 32707 14355 56444 #> 366 31848 13439 44522 #> 367 31243 13062 48459 #> 368 28386 10448 10235 #> 369 29873 11355 11215 #> 370 27905 9637 9195 #> 371 32677 13852 43883 #> 372 33354 14905 NA #> 373 31572 13280 48759 #> 374 26667 8674 7825 #> 375 32854 14824 25644 #> 376 30305 12208 11948 #> 377 32441 14281 25693 #> 378 28469 10283 9514 #> 379 33142 14970 NA #> 380 32044 13790 60063 #> 381 28850 10758 9830 #> 382 27623 9426 8730 #> 383 32384 14172 NA #> 384 33144 14745 NA #> 385 25719 8198 7015 #> 386 25848 8341 7135 #> 387 26093 8437 7372 #> 388 28413 10034 9458 #> 389 27940 9996 9074 #> 390 31131 12988 28838 #> 391 32904 14743 25685 #> 392 33147 14561 50653 #> 393 33248 14679 NA #> 394 9585 7078 4712 #> 395 28292 10053 9277 #> 396 33360 14652 33672 #> 397 27560 9245 8667 #> 398 30538 12371 12134 #> 399 31932 13446 38265 #> 400 32910 14527 28301 #> 401 31302 13233 47542 #> 402 31174 12997 66446 #> 403 33153 14435 26306 #> 404 30121 11690 11763 #> 405 28514 10083 9559 #> 406 33137 14931 43580 #> 407 29352 10929 10752 #> 408 31687 13059 24481 #> 409 31869 13448 46254 #> 410 30177 11812 11819 #> 411 23981 6539 5531 #> 412 32175 14051 94359 #> 413 31071 12858 42130 #> 414 30740 12375 12239 #> 415 32921 14570 40411 #> 416 33151 14785 NA #> 417 28365 10033 10211 #> 418 30219 11852 11861 #> 419 30279 11721 11921 #> 420 33132 14585 NA #> 421 30959 12533 66438 #> 422 29351 10823 10751 #> 423 31832 13967 28621 #> 424 29785 11191 11254 #> 425 30153 11710 11795 #> 426 32556 14236 47959 #> 427 30994 12477 48267 #> 428 31517 13019 48017 #> 429 29540 11501 10980 #> 430 29290 10897 10690 #> 431 32259 14150 13026 #> 432 24924 7623 6289 #> 433 32037 13986 49569 #> 434 29925 11506 11310 #> 435 32027 13430 50326 #> 436 27542 9272 8649 #> 437 32720 14627 56259 #> 438 29259 10928 10659 #> 439 30495 12029 12021 #> 440 31660 12780 66576 #> 441 32833 14706 49346 #> 442 30166 12052 11808 #> 443 26372 8567 7288 #> 444 29358 10930 10758 #> 445 29401 11223 10801 #> 446 29419 11060 10819 #> 447 33176 14979 NA #> 448 24801 7418 6166 #> 449 32258 NA NA #> 450 28423 10450 9468 #> 451 29920 11356 11341 #> 452 32047 NA 39527 #> 453 27662 9415 8769 #> 454 25799 8350 7090 #> 455 33175 15052 NA #> 456 31009 12565 45576 #> 457 33173 15167 NA #> 458 29265 11062 10665 #> 459 32897 14830 NA #> 460 32247 13840 47018 #> 461 26793 9109 7952 #> 462 32896 14815 60003 #> 463 28227 9633 8932 #> 464 31482 12582 NA #> 465 30978 12644 50892 #> 466 32825 14680 35241 #> 467 31085 12640 51221 #> 468 26629 8708 7787 #> 469 28934 10850 9934 #> 470 25898 8285 7177 #> 471 31753 13361 49023 #> 472 27533 9251 8640 #> 473 29417 10912 10817 #> 474 26661 8693 7819 #> 475 25370 10021 6508 #> 476 26705 8672 7863 #> 477 31115 12711 28451 #> 478 28427 10067 9472 #> 479 27743 9394 8849 #> 480 27719 9769 8826 #> 481 30115 11709 11757 #> 482 25798 8066 7089 #> 483 27170 8621 8440 #> 484 31662 12513 45753 #> 485 33179 14881 45749 #> 486 30232 11758 11874 #> 487 31905 13556 45719 #> 488 26817 8625 7975 #> 489 30225 11993 11867 #> 490 24120 6732 5667 #> 491 29438 11120 10838 #> 492 30718 12469 12168 #> 493 29282 11181 10682 #> 494 27774 9631 8880 #> 495 25822 8304 7112 #> 496 33181 15168 NA #> 497 32663 14467 NA #> 498 29666 11364 11062 #> 499 32713 14436 60995 #> 500 32576 13639 91465 #> 501 24070 6532 5619 #> 502 27174 9847 8524 #> 503 8263 5214 3625 #> 504 28947 10234 9859 #> 505 31592 12653 48162 #> 506 31958 13531 47933 #> 507 31194 12627 41406 #> 508 30827 12146 48079 #> 509 30283 11844 11925 #> 510 32843 14510 48236 #> 511 24963 7385 6328 #> 512 32256 14130 47906 #> 513 31021 12763 48160 #> 514 27589 9264 8696 #> 515 26652 8792 7810 #> 516 28023 9961 9276 #> 517 28665 10281 9875 #> 518 30991 12881 46795 #> 519 28399 10028 9444 #> 520 32053 13780 49431 #> 521 29741 11278 11197 #> 522 29287 10880 10688 #> 523 31671 12906 49255 #> 524 31140 12774 49507 #> 525 29258 11067 10658 #> 526 31534 13263 50431 #> 527 29391 11175 10791 #> 528 32938 14407 NA #> 529 30320 12211 11962 #> 530 31024 12564 49162 #> 531 30229 11926 11871 #> 532 32601 14294 48374 #> 533 31047 12495 48457 #> 534 32817 14684 42993 #> 535 32420 14200 42782 #> 536 28815 10675 9809 #> 537 25842 8324 7132 #> 538 24095 6589 5643 #> 539 26676 8659 7834 #> 540 31168 12571 62935 #> 541 29063 10303 10110 #> 542 32850 14604 45419 #> 543 29709 11116 11113 #> 544 31222 12939 NA #> 545 32470 13720 46035 #> 546 31968 13544 28021 #> 547 27561 9436 8668 #> 548 32002 13812 NA #> 549 25871 8222 NA #> 550 32777 14661 34788 #> 551 31904 13436 29407 #> 552 25358 7740 6503 #> 553 32885 14736 49681 #> 554 31218 13014 50198 #> 555 33174 15066 NA #> 556 30306 12186 11947 #> 557 32735 14647 29623 #> 558 8497 5308 3859 #> 559 32480 13803 NA #> 560 30586 12183 12093 #> 561 29400 11114 10800 #> 562 31957 13740 48953 #> 563 28604 10333 9649 #> 564 9406 7087 5066 #> 565 32366 13663 29110 #> 566 32671 14442 28022 #> 567 31936 13750 46426 #> 568 29396 11058 10796 #> 569 29435 10882 10835 #> 570 32014 13548 45775 #> 571 32669 13964 NA #> 572 30227 11698 11869 #> 573 30161 11707 11803 #> 574 26660 8622 7818 #> 575 26707 8777 7865 #> 576 29295 10905 10695 #> 577 31562 12791 51394 #> 578 32034 13783 47019 #> 579 31843 13585 41651 #> 580 28614 10297 9659 #> 581 32169 13688 46951 #> 582 32465 13723 46157 #> 583 30577 11889 47149 #> 584 30364 12224 12007 #> 585 28545 10462 9590 #> 586 31884 13809 47259 #> 587 33171 14634 NA #> 588 24791 7241 6156 #> 589 32469 13877 48110 #> 590 31223 12569 48192 #> 591 33168 14588 NA #> 592 32703 14506 61211 #> 593 29703 11257 11107 #> 594 29288 10822 10689 #> 595 29440 11076 10840 #> 596 32438 13626 48080 #> 597 30122 11699 11764 #> 598 26745 8706 7904 #> 599 32078 13535 NA #> 600 32830 14552 46752 #> 601 29752 11242 11094 #> 602 31370 13411 28990 #> 603 31878 13485 43254 #> 604 27782 9332 8888 #> 605 30286 12008 11928 #> 606 30974 12572 49558 #> 607 33306 14716 50394 #> 608 31295 13252 52165 #> 609 31023 12836 49397 #> 610 28404 10449 9449 #> 611 31321 13219 66931 #> 612 32714 14507 NA #> 613 30224 12004 11866 #> 614 24759 7214 6118 #> 615 31951 13537 50458 #> 616 30644 12057 50587 #> 617 32492 13859 50290 #> 618 31997 13523 44615 #> 619 32834 14409 NA #> 620 32503 13851 38297 #> 621 30114 11914 11756 #> 622 33311 15134 NA #> 623 25782 8146 7074 #> 624 24807 7417 6172 #> 625 32758 14353 56734 #> 626 26636 8670 7794 #> 627 30307 11944 11949 #> 628 30341 12051 11984 #> 629 29337 11019 10737 #> 630 30178 11933 11820 #> 631 31510 13182 46441 #> 632 29410 11068 10810 #> 633 27563 9421 8670 #> 634 32516 14232 41421 #> 635 31136 12798 46131 #> 636 31183 12850 46673 #> 637 33157 14422 NA #> 638 31310 12712 NA #> 639 27911 9943 9030 #> 640 31987 13609 43190 #> 641 25029 7606 6394 #> 642 30345 12151 11987 #> 643 32767 14517 57942 #> 644 31175 12962 18413 #> 645 31912 13614 12666 #> 646 29343 11043 10743 #> 647 31552 13276 26296 #> 648 26068 10024 7336 #> 649 29356 10907 10756 #> 650 32277 14147 63303 #> 651 31078 12818 46452 #> 652 26483 8065 7323 #> 653 30971 12619 46518 #> 654 31145 12555 34761 #> 655 32569 13443 NA #> 656 31005 12886 45783 #> 657 32608 12678 45734 #> 658 30199 11739 11841 #> 659 33310 15062 34207 #> 660 31459 13145 34845 #> 661 33301 15132 NA #> 662 31063 12625 49206 #> 663 29248 11082 10648 #> 664 32680 14456 58467 #> 665 26909 9575 8051 #> 666 32414 13995 46301 #> 667 33305 15038 NA #> 668 28892 10644 10017 #> 669 30902 12290 39676 #> 670 33312 14694 NA #> 671 32021 13915 28671 #> 672 29242 10977 10642 #> 673 32785 14576 26394 #> 674 29315 10748 10715 #> 675 32273 14131 94365 #> 676 30142 11734 11784 #> 677 31561 13247 47206 #> 678 33044 14377 NA #> 679 30531 12359 12739 #> 680 30185 11880 11827 #> 681 31462 13138 48345 #> 682 30246 11879 11888 #> 683 27540 9255 8647 #> 684 31769 13418 26104 #> 685 27591 9454 8698 #> 686 30023 11517 11440 #> 687 32857 14457 61439 #> 688 29406 10830 10806 #> 689 32143 14049 63664 #> 690 33302 14571 27003 #> 691 29849 11504 11228 #> 692 32816 14485 41178 #> 693 26654 8631 7812 #> 694 29608 11426 10915 #> 695 25827 8291 7117 #> 696 29443 10936 10843 #> 697 32542 14307 56123 #> 698 32721 14389 41817 #> 699 29423 10921 10823 #> 700 8906 5878 4454 #> 701 30450 12649 47970 #> 702 30173 12009 11815 #> 703 28289 9842 9243 #> 704 30205 12024 11846 #> 705 29367 11164 10767 #> 706 32097 13589 44429 #> 707 30304 12007 11946 #> 708 31733 13342 51220 #> 709 29305 10957 10705 #> 710 32793 14708 NA #> 711 24794 7446 6159 #> 712 33103 14920 36346 #> 713 27562 9344 8669 #> 714 32849 14582 43982 #> 715 28448 10168 9493 #> 716 31086 12548 48557 #> 717 25791 8144 7083 #> 718 25721 8153 7017 #> 719 30792 12358 48856 #> 720 31890 13514 44519 #> 721 29950 10942 11332 #> 722 28771 10592 9732 #> 723 32515 14231 56733 #> 724 32752 14451 28094 #> 725 26535 8497 7572 #> 726 27544 9266 8651 #> 727 31922 13509 41714 #> 728 31020 12458 46216 #> 729 25881 8179 7163 #> 730 29098 10646 10065 #> 731 30989 12479 50950 #> 732 29268 10801 10668 #> 733 32205 14068 50675 #> 734 28089 10091 9272 #> 735 33105 14610 44722 #> 736 33106 14744 NA #> 737 24030 6601 5580 #> 738 33104 14723 NA #> 739 7512 7095 NA #> 740 NA 15206 29601 #> 741 25431 8021 6798 #> 742 30788 11841 12324 #> 743 24822 7355 6187 #> 744 32901 14832 34311 #> 745 29369 11008 10769 #> 746 27742 9776 8848 #> 747 31960 13590 27126 #> 748 33100 14657 40693 #> 749 33099 14658 NA #> 750 29238 10736 10638 #> 751 32045 13890 49408 #> 752 32202 13873 25018 #> 753 30651 12301 46987 #> 754 31182 12702 34397 #> 755 32160 13467 37023 #> 756 33183 14946 NA #> 757 32207 13865 46233 #> 758 28407 10264 9452 #> 759 24796 7349 6161 #> 760 31437 13115 31454 #> 761 28854 10260 9719 #> 762 33093 14693 39461 #> 763 30784 12179 12320 #> 764 31107 12514 47304 #> 765 28505 10248 9550 #> 766 33101 14478 42266 #> 767 30559 11891 12276 #> 768 31777 13378 48078 #> 769 31651 12952 29726 #> 770 31178 12773 48170 #> 771 30352 11849 11993 #> 772 28392 10055 9437 #> 773 31051 12810 26075 #> 774 32687 14411 61570 #> 775 33094 14441 NA #> 776 32200 13912 48082 #> 777 33095 14642 NA #> 778 32753 14515 41924 #> 779 31413 13104 46084 #> 780 27707 9442 8814 #> 781 28705 10429 10000 #> 782 33293 14599 42189 #> 783 29090 10775 10057 #> 784 32932 14738 45258 #> 785 32747 14711 50327 #> 786 30271 12016 11913 #> 787 23995 6622 5545 #> 788 31667 12597 49348 #> 789 27337 9070 8110 #> 790 31026 12782 51576 #> 791 29453 11237 10853 #> 792 32164 14198 51189 #> 793 32218 13863 38567 #> 794 29332 11174 10732 #> 795 27763 9785 8869 #> 796 30164 11950 11806 #> 797 32254 14144 94361 #> 798 30975 12877 48526 #> 799 32578 14287 94382 #> 800 31903 13451 28075 #> 801 28982 10793 9891 #> 802 26651 8675 7809 #> 803 27576 9290 8683 #> 804 32425 14204 26229 #> 805 29630 11428 11027 #> 806 28591 10485 9636 #> 807 32765 14602 43069 #> 808 24864 7469 6229 #> 809 32851 14624 41339 #> 810 31382 13954 30097 #> 811 31873 13545 47008 #> 812 29329 11042 10729 #> 813 27120 9948 8437 #> 814 NA 15225 NA #> 815 25717 8197 7013 #> 816 28600 10331 9645 #> 817 32220 13907 48567 #> 818 24789 7421 6154 #> 819 32848 14757 NA #> 820 32134 13973 49805 #> 821 27578 9343 8685 #> 822 25815 8215 7105 #> 823 31076 12968 50720 #> 824 30785 12454 12321 #> 825 32222 14081 49722 #> 826 32923 14731 37724 #> 827 31792 13391 15267 #> 828 30568 12232 50640 #> 829 32666 13699 30352 #> 830 27217 9935 8530 #> 831 26788 9022 7947 #> 832 31874 13736 39517 #> 833 29441 11026 10841 #> 834 32221 13620 46487 #> 835 32502 13559 27436 #> 836 32926 14656 45854 #> 837 31379 12715 12660 #> 838 32541 14003 46004 #> 839 28403 10064 9448 #> 840 31041 12892 45747 #> 841 31367 13410 28870 #> 842 31381 12684 49154 #> 843 32188 14065 46669 #> 844 30826 12449 46238 #> 845 9574 9134 5410 #> 846 32224 13601 46247 #> 847 30133 11779 11775 #> 848 27547 9423 8654 #> 849 33117 14963 NA #> 850 31126 12808 47333 #> 851 31852 13426 42388 #> 852 30258 11888 11900 #> 853 32788 14369 41933 #> 854 29328 10949 10728 #> 855 32191 14062 30778 #> 856 32225 13713 47121 #> 857 30263 11893 11905 #> 858 31010 12586 48164 #> 859 30901 12291 23172 #> 860 32685 14458 61103 #> 861 31083 12654 45416 #> 862 30511 12061 12087 #> 863 32929 14593 34045 #> 864 32189 13919 94356 #> 865 32922 14621 42134 #> 866 32716 14462 61590 #> 867 28279 13530 91248 #> 868 30956 11823 22917 #> 869 30990 12888 39137 #> 870 27639 9444 8746 #> 871 31978 13744 50533 #> 872 32673 14424 55674 #> 873 28635 10427 9680 #> 874 29729 11446 11149 #> 875 24578 7140 5903 #> 876 26645 8641 7803 #> 877 29962 11656 11358 #> 878 31634 13195 50535 #> 879 28835 10430 9892 #> 880 33190 14849 NA #> 881 29345 11091 10745 #> 882 32171 14187 43823 #> 883 33189 14699 NA #> 884 31052 12747 51266 #> 885 NA NA 26617 #> 886 32737 14448 44152 #> 887 29794 11055 11162 #> 888 32905 14833 NA #> 889 31949 13843 36248 #> 890 29867 11156 11250 #> 891 31084 12821 48386 #> 892 31649 13188 39383 #> 893 28489 10323 9534 #> 894 31523 13420 28474 #> 895 24075 6572 5624 #> 896 31647 12910 49918 #> 897 32509 13864 36862 #> 898 32867 14719 57037 #> 899 28400 10310 9445 #> 900 32461 14213 48981 #> 901 26846 8969 8006 #> 902 31547 13272 38709 #> 903 32745 14668 37070 #> 904 26764 8730 7923 #> 905 29385 10987 10785 #> 906 32791 14678 NA #> 907 8565 5051 3471 #> 908 32174 14189 NA #> 909 32457 14211 94372 #> 910 30237 11980 11879 #> 911 31480 12662 50714 #> 912 31875 13885 51055 #> 913 31167 12907 49706 #> 914 26675 8715 7833 #> 915 30134 11966 11776 #> 916 29275 11109 10675 #> 917 27612 9410 8719 #> 918 27839 9384 9020 #> 919 7120 6405 2130 #> 920 32358 13715 34735 #> 921 9265 5971 4924 #> 922 9678 6162 5214 #> 923 32272 13630 46508 #> 924 31013 12525 34455 #> 925 32705 14394 57212 #> 926 32054 13454 26392 #> 927 8261 5215 3623 #> 928 31620 13293 39541 #> 929 31207 12828 27413 #> 930 26714 8906 7872 #> 931 31913 13805 51336 #> 932 31258 12725 49166 #> 933 30870 11820 12307 #> 934 29398 10951 10798 #> 935 32455 14210 48584 #> 936 29250 11020 10650 #> 937 31123 12803 38897 #> 938 28893 10503 10018 #> 939 29418 10876 10818 #> 940 28548 10150 9593 #> 941 32063 13527 39770 #> 942 33186 14364 61072 #> 943 31840 13610 40912 #> 944 30278 12205 11920 #> 945 32561 14246 94379 #> 946 25793 8026 7084 #> 947 25876 8223 7158 #> 948 9037 5813 4717 #> 949 32836 14466 29614 #> 950 30550 11846 12269 #> 951 29719 10884 11141 #> 952 30209 11857 11851 #> 953 27689 9702 8796 #> 954 32878 14666 NA #> 955 31149 12958 50511 #> 956 31589 12832 49349 #> 957 30146 12020 11788 #> 958 29308 11166 10708 #> 959 8212 5861 3558 #> 960 30988 12549 49350 #> 961 32017 13729 49446 #> 962 31015 12530 50417 #> 963 32268 14104 26015 #> 964 28530 10390 9575 #> 965 33222 15070 25687 #> 966 32906 14779 43076 #> 967 31433 13111 24750 #> 968 33231 14405 55893 #> 969 29371 11119 10771 #> 970 25915 8160 7190 #> 971 33232 15031 NA #> 972 30206 11752 11848 #> 973 33225 15072 50275 #> 974 31982 13538 48718 #> 975 32408 14018 56895 #> 976 33230 15073 NA #> 977 26153 8486 7355 #> 978 29747 11566 11157 #> 979 27360 9104 8365 #> 980 30676 11780 23112 #> 981 26791 8739 7950 #> 982 33227 15114 NA #> 983 31876 13669 46298 #> 984 30018 11453 11435 #> 985 32862 14471 36661 #> 986 32879 14594 NA #> 987 8447 5363 3809 #> 988 33321 14553 NA #> 989 28426 10316 9471 #> 990 31844 13651 42905 #> 991 32912 14365 56703 #> 992 31058 12919 50203 #> 993 32058 13883 30242 #> 994 28510 10328 9555 #> 995 33221 14572 42548 #> 996 32845 14385 12744 #> 997 32276 14106 39094 #> 998 29822 11646 11202 #> 999 27599 9375 8706 #> 1000 31209 12660 23250 #> 1001 29261 10973 10661 #> 1002 31436 13114 48604 #> 1003 31670 12941 NA #> 1004 31142 12822 38809 #> 1005 7200 4307 2241 #> 1006 31431 13109 21956 #> 1007 32696 14371 NA #> 1008 32364 14184 94371 #> 1009 32026 13670 45913 #> 1010 32050 13456 NA #> 1011 33235 14573 NA #> 1012 30295 11763 11937 #> 1013 29353 10995 10753 #> 1014 32732 14370 57165 #> 1015 30247 11777 11889 #> 1016 31853 13810 34247 #> 1017 29302 11117 10702 #> 1018 32458 13725 32587 #> 1019 27595 9696 8702 #> 1020 32275 13879 60822 #> 1021 26732 8736 7891 #> 1022 24044 6545 5594 #> 1023 7777 4891 2973 #> 1024 31907 13495 47081 #> 1025 33367 15181 62825 #> 1026 32764 14629 47034 #> 1027 32056 13528 47119 #> 1028 29304 11087 10704 #> 1029 30777 12389 12193 #> 1030 32270 14109 NA #> 1031 27581 9455 8688 #> 1032 32488 14002 94375 #> 1033 32664 14472 20052 #> 1034 31177 12560 47967 #> 1035 31464 13064 48100 #> 1036 28214 10112 9079 #> 1037 32378 13924 29347 #> 1038 31268 12628 48135 #> 1039 26631 8793 7789 #> 1040 31144 12934 47809 #> 1041 32019 13664 38275 #> 1042 28429 10138 9474 #> 1043 29283 11126 10684 #> 1044 33249 14489 NA #> 1045 32450 13580 46801 #> 1046 31318 13218 66930 #> 1047 29245 11052 10645 #> 1048 32811 14710 49381 #> 1049 31886 13820 55615 #> 1050 32357 13646 49394 #> 1051 27559 9329 8666 #> 1052 31179 12999 50351 #> 1053 27615 9710 8722 #> 1054 27103 9216 10726 #> 1055 31213 13012 49454 #> 1056 30137 12011 11779 #> 1057 29340 11141 10740 #> 1058 31652 13189 51146 #> 1059 32889 14474 55967 #> 1060 31156 12990 50152 #> 1061 31993 13791 50612 #> 1062 30255 11951 11897 #> 1063 24798 7323 6163 #> 1064 32709 14406 44526 #> 1065 31027 12728 31211 #> 1066 24805 7463 6170 #> 1067 29366 11056 10766 #> 1068 30201 11948 11843 #> 1069 33156 14853 79271 #> 1070 31950 13856 44959 #> 1071 25861 8305 7144 #> 1072 27721 9451 8828 #> 1073 29792 11031 NA #> 1074 30799 12410 24304 #> 1075 32266 14103 39043 #> 1076 28431 10354 9476 #> 1077 32206 13860 51497 #> 1078 31184 12964 50089 #> 1079 30170 11965 11812 #> 1080 25736 8134 7031 #> 1081 29111 10835 10140 #> 1082 32760 14550 48407 #> 1083 31146 12933 39256 #> 1084 31356 13090 50893 #> 1085 29807 11474 11169 #> 1086 28541 10359 9586 #> 1087 30632 12562 NA #> 1088 24662 7107 5800 #> 1089 27835 9817 9262 #> 1090 31128 12865 49636 #> 1091 25780 8251 7072 #> 1092 30125 11712 11767 #> 1093 27692 9319 8799 #> 1094 5967 2513 1085 #> 1095 31457 13135 45691 #> 1096 31537 13185 12888 #> 1097 28474 10148 9519 #> 1098 33161 14659 83711 #> 1099 28465 10084 9510 #> 1100 32052 13988 38844 #> 1101 26265 8825 7279 #> 1102 31038 12606 49048 #> 1103 27864 10144 8921 #> 1104 31855 13743 25472 #> 1105 30273 11800 11915 #> 1106 31887 13811 46961 #> 1107 29247 10964 10647 #> 1108 32796 14667 36501 #> 1109 33119 14921 NA #> 1110 31068 12568 47050 #> 1111 30627 11887 12247 #> 1112 26612 9758 8549 #> 1113 31918 13478 37213 #> 1114 24851 7256 6216 #> 1115 31391 12951 47508 #> 1116 30254 11702 11896 #> 1117 31073 12484 47698 #> 1118 31148 12989 48182 #> 1119 32841 14537 55307 #> 1120 31103 12811 48316 #> 1121 29255 10818 10655 #> 1122 30432 11722 12044 #> 1123 27548 9260 8655 #> 1124 29252 11089 10652 #> 1125 29449 11235 10849 #> 1126 31153 12552 38935 #> 1127 27747 11514 8853 #> 1128 32552 14267 51405 #> 1129 31166 12994 28196 #> 1130 31866 13474 49564 #> 1131 31080 12527 28495 #> 1132 26648 8637 7806 #> 1133 32463 14216 NA #> 1134 32881 14828 27069 #> 1135 30669 12431 51596 #> 1136 31976 13764 49217 #> 1137 31573 12922 51194 #> 1138 28503 10404 9548 #> 1139 33234 14939 NA #> 1140 32755 14704 49434 #> 1141 31373 13094 31342 #> 1142 30128 11695 11770 #> 1143 31034 12800 48475 #> 1144 28266 9746 8982 #> 1145 31022 12799 21702 #> 1146 24857 7476 6222 #> 1147 30309 11930 11951 #> 1148 31881 13761 26554 #> 1149 33220 15025 NA #> 1150 33212 15021 28668 #> 1151 31526 13170 48935 #> 1152 32863 14613 28310 #> 1153 29241 10925 10641 #> 1154 28522 10276 9567 #> 1155 30976 12503 12954 #> 1156 32819 14691 47339 #> 1157 30371 12599 12204 #> 1158 33211 14437 NA #> 1159 31006 12845 49684 #> 1160 31191 13000 38526 #> 1161 30274 11983 11916 #> 1162 25850 8317 7137 #> 1163 31372 12967 21605 #> 1164 31921 13782 50954 #> 1165 32883 14799 NA #> 1166 31163 12924 49825 #> 1167 31996 13984 94351 #> 1168 31205 13010 49834 #> 1169 29588 11414 10940 #> 1170 30257 12202 11899 #> 1171 30597 12496 NA #> 1172 30534 12390 NA #> 1173 27219 8903 8242 #> 1174 29325 10919 10725 #> 1175 30366 12225 12008 #> 1176 32792 14401 NA #> 1177 6763 3766 1725 #> 1178 31074 12630 48103 #> 1179 31139 12942 26618 #> 1180 33098 14565 NA #> 1181 32711 14455 57488 #> 1182 30256 11765 11898 #> 1183 29383 10804 10783 #> 1184 29450 11190 10850 #> 1185 31941 13760 51304 #> 1186 25758 8209 7051 #> 1187 29933 11374 11303 #> 1188 29316 10974 10716 #> 1189 33216 15022 NA #> 1190 24809 7432 6174 #> 1191 32611 13917 NA #> 1192 30270 11797 11912 #> 1193 28479 10278 9524 #> 1194 31007 12937 46794 #> 1195 31618 13300 46887 #> 1196 24194 6794 5741 #> 1197 31181 12697 42062 #> 1198 31325 12693 47198 #> 1199 27299 9081 8520 #> 1200 30112 12196 12078 #> 1201 32970 14843 47282 #> 1202 27789 9490 9185 #> 1203 33214 14908 47033 #> 1204 32882 14643 48329 #> 1205 31891 13525 47940 #> 1206 33215 15020 84418 #> 1207 28547 10244 9592 #> 1208 31129 12672 48181 #> 1209 32292 13854 91479 #> 1210 31952 13635 48331 #> 1211 30502 11868 12303 #> 1212 25802 8098 7092 #> 1213 32704 14378 29049 #> 1214 29362 10911 10762 #> 1215 26635 8879 7793 #> 1216 30477 12406 12068 #> 1217 27041 9135 8334 #> 1218 32145 14155 50353 #> 1219 32102 15221 51088 #> 1220 32807 14413 55634 #> 1221 30156 11905 11798 #> 1222 33115 14950 83079 #> 1223 31270 12614 38566 #> 1224 32679 14367 55593 #> 1225 32893 14829 76692 #> 1226 31262 13040 50380 #> 1227 32105 13768 49268 #> 1228 29798 11459 11262 #> 1229 33002 14810 NA #> 1230 29297 11044 10697 #> 1231 29727 11445 11147 #> 1232 31839 13642 50235 #> 1233 32690 14523 57945 #> 1234 30181 11942 11823 #> 1235 28504 10455 9549 #> 1236 26887 8723 8159 #> 1237 24098 6714 5646 #> 1238 31454 13142 48874 #> 1239 30999 12470 48753 #> 1240 27104 9107 8177 #> 1241 33122 14951 44473 #> 1242 27686 9395 8793 #> 1243 30802 12455 51592 #> 1244 28501 10321 9546 #> 1245 24998 7505 6363 #> 1246 27880 9971 9257 #> 1247 28455 10267 9500 #> 1248 27942 9449 9126 #> 1249 27621 9443 8728 #> 1250 33145 14959 NA #> 1251 9066 5935 4655 #> 1252 29915 11738 NA #> 1253 28685 10438 10133 #> 1254 29949 11403 11331 #> 1255 32911 14755 38876 #> 1256 32810 14747 51048 #> 1257 29333 10968 10733 #> 1258 31930 13982 49779 #> 1259 32091 13492 39382 #> 1260 32083 13831 30076 #> 1261 29276 10982 10676 #> 1262 31200 12723 44980 #> 1263 29270 11064 10670 #> 1264 33125 14412 NA #> 1265 27678 9345 8785 #> 1266 33129 14956 34710 #> 1267 32743 14714 28072 #> 1268 32067 13542 48638 #> 1269 32650 14348 NA #> 1270 31216 13013 29214 #> 1271 32859 14562 17287 #> 1272 26696 8745 7854 #> 1273 32010 13741 41401 #> 1274 32390 13624 45903 #> 1275 31972 13473 45810 #> 1276 26777 8773 7936 #> 1277 33123 14773 45980 #> 1278 33138 14660 22425 #> 1279 32596 13960 94383 #> 1280 30860 11768 12329 #> 1281 29514 11483 10902 #> 1282 32827 14687 42544 #> 1283 30174 11998 11816 #> 1284 32574 14272 NA #> 1285 32786 14544 84236 #> 1286 31269 12687 29035 #> 1287 31099 12635 46980 #> 1288 32051 13857 46335 #> 1289 30147 11815 11789 #> 1290 33133 14958 NA #> 1291 31867 13480 41665 #> 1292 30287 11897 11929 #> 1293 28561 10249 9606 #> 1294 31400 13102 47298 #> 1295 26644 8782 7802 #> 1296 33124 14864 27766 #> 1297 32876 14827 47743 #> 1298 31901 13786 47083 #> 1299 32069 13619 47946 #> 1300 30396 12388 51593 #> 1301 32101 14005 48213 #> 1302 32471 14214 61737 #> 1303 33127 14784 NA #> 1304 30223 11808 11865 #> 1305 32712 14358 61220 #> 1306 31031 12820 47702 #> 1307 28464 10210 9509 #> 1308 30526 11862 12125 #> 1309 32835 14545 47808 #> 1310 24950 7614 6315 #> 1311 32951 14695 NA #> 1312 28610 10494 9655 #> 1313 29957 11518 11353 #> 1314 32609 14316 28605 #> 1315 27630 9648 8737 #> 1316 32907 14579 43467 #> 1317 32808 14688 40588 #> 1318 32033 13703 49329 #> 1319 31359 13017 49368 #> 1320 31293 13257 43034 #> 1321 31862 13475 33356 #> 1322 31895 13824 50426 #> 1323 28036 9680 9253 #> 1324 32955 14700 NA #> 1325 26726 8656 7885 #> 1326 32351 14153 48467 #> 1327 30141 11908 11783 #> 1328 28451 10322 9496 #> 1329 31256 13285 48452 #> 1330 30172 11924 11814 #> 1331 32847 14823 48415 #> 1332 33052 14997 89210 #> 1333 31916 13746 31534 #> 1334 33203 15003 NA #> 1335 32952 15077 40292 #> 1336 29271 11074 10671 #> 1337 28205 9964 8995 #> 1338 25770 8210 7062 #> 1339 24835 7441 6200 #> 1340 27728 9770 8834 #> 1341 27216 9182 8277 #> 1342 32048 13682 39268 #> 1343 30346 11783 11988 #> 1344 31070 12847 51487 #> 1345 32733 14520 57987 #> 1346 28515 10374 9560 #> 1347 27647 9643 8754 #> 1348 31495 13179 51099 #> 1349 31354 13063 NA #> 1350 32359 14180 29188 #> 1351 32953 15075 42867 #> 1352 27494 10606 8580 #> 1353 28085 9661 9316 #> 1354 31045 12971 49970 #> 1355 7275 4442 2316 #> 1356 32960 14574 33007 #> 1357 30123 11839 11765 #> 1358 8544 5432 4018 #> 1359 8834 5685 4371 #> 1360 32642 13629 60453 #> 1361 28115 9644 9205 #> 1362 24923 7560 6288 #> 1363 32046 13476 83791 #> 1364 30301 11766 11943 #> 1365 31500 12839 13014 #> 1366 26671 8617 7829 #> 1367 32702 14514 57279 #> 1368 31094 12781 51264 #> 1369 26692 8593 7850 #> 1370 25983 9180 7431 #> 1371 30518 12609 12333 #> 1372 26624 8727 7783 #> 1373 32766 14534 NA #> 1374 32949 14664 59878 #> 1375 31050 12885 46333 #> 1376 25747 8205 7041 #> 1377 32880 14449 NA #> 1378 31519 13022 29556 #> 1379 30494 11876 12020 #> 1380 26686 8783 7844 #> 1381 30420 12405 12037 #> 1382 30795 12308 23652 #> 1383 31427 13126 66940 #> 1384 29360 11163 10760 #> 1385 32944 14943 NA #> 1386 29374 11003 10774 #> 1387 27532 9249 8639 #> 1388 30211 12113 11853 #> 1389 32600 14306 94384 #> 1390 31075 12468 48101 #> 1391 31888 13532 42683 #> 1392 30679 12184 12163 #> 1393 31496 12504 42345 #> 1394 29399 11222 10799 #> 1395 30682 12446 12137 #> 1396 29482 10909 10882 #> 1397 31081 12656 46104 #> 1398 28972 10423 9881 #> 1399 31911 13508 27377 #> 1400 29846 11528 11242 #> 1401 29239 11111 10639 #> 1402 31422 13132 55724 #> 1403 33296 15130 49545 #> 1404 30204 11997 11847 #> 1405 32075 13958 49012 #> 1406 32869 14698 45326 #> 1407 33135 14689 NA #> 1408 33257 15089 NA #> 1409 30196 11938 11838 #> 1410 29714 11571 11184 #> 1411 33263 14980 NA #> 1412 25724 8152 7020 #> 1413 33247 15015 NA #> 1414 27541 9391 8648 #> 1415 29280 11162 10680 #> 1416 33252 15087 NA #> 1417 32130 14014 38540 #> 1418 31162 12890 31982 #> 1419 31390 13413 46167 #> 1420 31059 12848 46249 #> 1421 32001 13497 35941 #> 1422 31003 12853 46290 #> 1423 31393 12701 39316 #> 1424 25648 7544 6860 #> 1425 32667 14354 NA #> 1426 31977 13673 NA #> 1427 31092 12689 51029 #> 1428 32665 14497 NA #> 1429 32135 14013 38268 #> 1430 31130 12788 50130 #> 1431 29243 11034 10643 #> 1432 31117 12846 50879 #> 1433 31214 12716 50592 #> 1434 31988 13773 48498 #> 1435 30238 12201 11880 #> 1436 33261 15090 NA #> 1437 32754 14390 42845 #> 1438 31900 13493 44383 #> 1439 31201 13008 50959 #> 1440 33193 14611 NA #> 1441 30326 12213 11968 #> 1442 25549 7990 6586 #> 1443 31966 13802 48706 #> 1444 31165 12993 49935 #> 1445 33149 14954 NA #> 1446 26350 8381 7252 #> 1447 31803 13403 46454 #> 1448 32581 13566 29838 #> 1449 27531 9277 8638 #> 1450 33258 14429 NA #> 1451 29235 10729 10635 #> 1452 32722 14383 57206 #> 1453 32915 14625 NA #> 1454 33297 14925 NA #> 1455 31902 13450 41193 #> 1456 28990 10202 9902 #> 1457 31893 13507 51172 #> 1458 32603 14310 49103 #> 1459 32774 14702 45255 #> 1460 28445 10270 9490 #> 1461 32126 14016 13976 #> 1462 32920 14606 41813 #> 1463 7804 5005 3000 #> 1464 31929 13574 36800 #> 1465 30157 11737 11799 #> 1466 32806 14586 47338 #> 1467 29344 10854 10744 #> 1468 32125 13711 47311 #> 1469 30373 12316 12206 #> 1470 26664 8628 7822 #> 1471 32727 14430 47447 #> 1472 33253 14402 NA #> 1473 33254 14926 NA #> 1474 30182 11863 11824 #> 1475 30230 11871 11872 #> 1476 32137 14012 48107 #> 1477 24802 7548 6167 #> 1478 29404 10961 10804 #> 1479 31810 13555 91247 #> 1480 31676 12669 50564 #> 1481 30422 12357 12040 #> 1482 25772 8172 7064 #> 1483 25189 7924 6457 #> 1484 31892 13668 33880 #> 1485 26917 9105 8117 #> 1486 32976 15079 43000 #> 1487 32992 15086 NA #> 1488 30987 12464 51368 #> 1489 32985 15083 82302 #> 1490 29237 10914 10637 #> 1491 25728 8133 7024 #> 1492 30338 11939 11980 #> 1493 32982 15065 27949 #> 1494 31018 12844 50084 #> 1495 31860 13757 49949 #> 1496 32991 14770 NA #> 1497 31054 12785 48940 #> 1498 32074 13706 38524 #> 1499 30184 11793 11826 #> 1500 31125 12797 23918 #> 1501 32983 15082 NA #> 1502 27836 9448 9221 #> 1503 27620 9357 8727 #> 1504 30151 11801 11793 #> 1505 31488 13175 46904 #> 1506 31366 12775 NA #> 1507 31962 13814 51276 #> 1508 31048 12506 50884 #> 1509 31089 12787 44485 #> 1510 32693 14434 58099 #> 1511 29321 10948 10721 #> 1512 28436 10356 9481 #> 1513 32977 15080 43856 #> 1514 32032 13855 45378 #> 1515 30539 12434 12097 #> 1516 31827 13938 22508 #> 1517 24021 6681 5571 #> 1518 27056 9118 8042 #> 1519 32980 15081 49589 #> 1520 29469 11027 10869 #> 1521 28861 10849 9728 #> 1522 24967 7357 6332 #> 1523 31998 13627 29466 #> 1524 32676 14446 28237 #> 1525 32782 14494 13750 #> 1526 30423 12401 12164 #> 1527 32975 14919 NA #> 1528 30061 11642 11473 #> 1529 31100 12786 45741 #> 1530 32987 15093 40117 #> 1531 31221 12724 29539 #> 1532 32856 14521 41662 #> 1533 27629 9366 8736 #> 1534 30226 11994 11868 #> 1535 30303 11821 11945 #> 1536 31923 13659 91462 #> 1537 30772 12437 12188 #> 1538 23998 6540 5548 #> 1539 32232 13684 46252 #> 1540 29269 10735 10669 #> 1541 32456 13602 91014 #> 1542 24991 7416 6356 #> 1543 32551 13686 47123 #> 1544 29789 10885 11160 #> 1545 33295 14877 NA #> 1546 32511 13615 34427 #> 1547 32547 13999 91472 #> 1548 26699 8627 7857 #> 1549 32890 14414 28025 #> 1550 32978 14922 NA #> 1551 32821 14428 40221 #> 1552 32201 13575 34164 #> 1553 30120 11885 11762 #> 1554 30561 12436 12280 #> 1555 24842 7439 6207 #> 1556 32345 13652 47058 #> 1557 32348 13701 56167 #> 1558 32809 14709 55619 #> 1559 27569 9327 8676 #> 1560 29412 10896 10812 #> 1561 29311 10941 10711 #> 1562 32689 14547 28080 #> 1563 30664 12421 49453 #> 1564 31872 13572 41968 #> 1565 31961 13793 48233 #> 1566 27661 9612 8768 #> 1567 NA 14941 NA #> 1568 33318 14902 28987 #> 1569 31723 13318 49120 #> 1570 29224 10858 10346 #> 1571 29299 11142 10699 #> 1572 30778 12312 12194 #> 1573 29096 10341 10063 #> 1574 30139 11928 11781 #> 1575 27687 9409 8794 #> 1576 31836 13649 25955 #> 1577 31057 12545 50201 #> 1578 31938 13459 26316 #> 1579 32031 13818 50228 #> 1580 26649 8660 7807 #> 1581 31110 12878 38563 #> 1582 26672 8669 7830 #> 1583 31420 14560 48993 #> 1584 29301 10976 10701 #> 1585 32344 13806 34934 #> 1586 28643 10512 9688 #> 1587 27609 9437 8716 #> 1588 7257 4532 2298 #> 1589 32341 14114 46085 #> 1590 32779 14626 41715 #> 1591 33352 14903 NA #> 1592 31137 12842 28121 #> 1593 28396 9261 9441 #> 1594 30633 12428 51674 #> 1595 29347 11098 10747 #> 1596 32770 14690 NA #> 1597 30167 11977 11809 #> 1598 29718 11113 11190 #> 1599 25823 8224 7113 #> 1600 30296 12207 11938 #> 1601 30428 12356 12039 #> 1602 31251 13128 27036 #> 1603 31334 13423 66935 #> 1604 32386 14171 36038 #> 1605 27564 9317 8671 #> 1606 30822 12363 12180 #> 1607 30284 11840 11926 #> 1608 28390 10074 9435 #> 1609 29370 10913 10770 #> 1610 31856 13582 45953 #> 1611 30000 11522 11395 #> 1612 26822 8763 7980 #> 1613 27345 9064 8396 #> 1614 31055 12550 51241 #> 1615 31859 13546 34646 #> 1616 31035 12852 34693 #> 1617 33326 15145 NA #> 1618 28632 10285 9677 #> 1619 31583 12679 46843 #> 1620 30985 12526 47013 #> 1621 24155 6756 5702 #> 1622 33315 14869 NA #> 1623 28582 10250 9627 #> 1624 28592 10215 9637 #> 1625 6405 3086 1384 #> 1626 26416 9203 7406 #> 1627 31969 13822 47043 #> 1628 31404 13100 NA #> 1629 30322 11853 11964 #> 1630 32682 14473 61102 #> 1631 31226 12493 38276 #> 1632 28691 10552 10154 #> 1633 30150 11751 11792 #> 1634 29791 10998 11259 #> 1635 31981 13749 47509 #> 1636 31198 12825 23670 #> 1637 32751 14577 28486 #> 1638 28408 10132 9453 #> 1639 32342 13479 48143 #> 1640 30418 12450 12227 #> 1641 32229 14087 46788 #> 1642 31910 13581 38554 #> 1643 29455 11238 10855 #> 1644 30716 12930 12259 #> 1645 28415 10412 9460 #> 1646 28637 10509 9682 #> 1647 32700 14713 61155 #> 1648 32443 14077 50356 #> 1649 29272 11061 10672 #> 1650 28533 10422 9578 #> 1651 32740 14696 43049 #> 1652 32919 14620 NA #> 1653 29446 11036 10846 #> 1654 NA 14721 NA #> 1655 31754 15178 51427 #> 1656 33111 14961 NA #> 1657 31208 13011 66917 #> 1658 33320 14398 NA #> 1659 33243 15029 NA #> 1660 31845 13758 50293 #> 1661 29266 11155 10666 #> 1662 32824 14730 48547 #> 1663 32440 13787 18645 #> 1664 31823 13932 92926 #> 1665 33239 14715 44035 #> 1666 32459 13939 49948 #> 1667 32065 13991 45629 #> 1668 30616 12073 12114 #> 1669 28397 10263 9442 #> 1670 32781 14476 41471 #> 1671 31199 13007 29578 #> 1672 31983 13887 30267 #> 1673 29253 11106 10653 #> 1674 30221 11959 11863 #> 1675 29442 11233 10842 #> 1676 30736 12383 12236 #> 1677 27568 9262 8675 #> 1678 31815 13561 15301 #> 1679 33238 14891 NA #> 1680 31043 12596 28091 #> 1681 29448 11234 10848 #> 1682 30622 12422 51589 #> 1683 33361 15170 NA #> 1684 32855 14651 35517 #> 1685 32726 14538 44582 #> 1686 30291 11916 11934 #> 1687 30641 12402 12212 #> 1688 29425 11228 10825 #> 1689 32675 14465 60326 #> 1690 33279 14846 NA #> 1691 7426 4385 2467 #> 1692 32439 13913 28219 #> 1693 33265 14453 57472 #> 1694 30552 12289 12271 #> 1695 32066 13505 45914 #> 1696 32916 14504 46513 #> 1697 29377 10893 10777 #> 1698 31986 13510 39258 #> 1699 32750 14460 61361 #> 1700 29479 11244 10879 #> 1701 28435 10416 9480 #> 1702 32708 14589 46139 #> 1703 33237 15026 NA #> 1704 30243 11787 11885 #> 1705 32688 14513 60816 #> 1706 28709 10802 9989 #> 1707 31093 12807 47257 #> 1708 30158 11898 11800 #> 1709 32442 14282 47358 #> 1710 31012 12764 47153 #> 1711 28046 9491 8943 #> 1712 33242 14861 35096 #> 1713 30231 11861 11873 #> 1714 29420 10990 10820 #> 1715 28402 10152 9447 #> 1716 27874 9485 8931 #> 1717 30430 12539 12043 #> 1718 30350 11717 11991 #> 1719 32447 13445 38855 #> 1720 31850 13785 46013 #> 1721 28376 10667 10247 #> 1722 32759 14363 42472 #> 1723 31000 12590 34057 #> 1724 32839 14522 55576 #> 1725 32701 14548 50471 #> 1726 31233 12462 50414 #> 1727 32346 14116 51496 #> 1728 30601 12598 12152 #> 1729 31636 13196 49339 #> 1730 30210 12033 11852 #> 1731 32092 14031 35173 #> 1732 32049 13797 34222 #> 1733 25877 8335 7159 #> 1734 28838 10389 9895 #> 1735 29062 10658 10109 #> 1736 33029 14598 NA #> 1737 32875 14479 43395 #> 1738 33107 14907 NA #> 1739 30333 11932 11975 #> 1740 28476 10318 9521 #> 1741 31072 12812 48400 #> 1742 29636 11432 11033 #> 1743 31657 13237 32708 #> 1744 32895 14732 NA #> 1745 32787 14612 44550 #> 1746 32800 14499 56962 #> 1747 31235 12499 48931 #> 1748 30222 11921 11864 #> 1749 29951 11599 11347 #> 1750 32476 13441 46082 #> 1751 31946 13794 45376 #> 1752 27665 9438 8772 #> 1753 32728 14518 41973 #> 1754 32925 14838 NA #> 1755 25427 7546 6796 #> 1756 29712 11568 NA #> 1757 31538 13266 NA #> 1758 31994 13813 50739 #> 1759 30583 11979 50712 #> 1760 28433 10353 9478 #> 1761 33034 14906 47621 #> 1762 30233 11972 11875 #> 1763 30448 12360 38587 #> 1764 31975 13847 49840 #> 1765 27537 9247 8644 #> 1766 32085 13435 29695 #> 1767 28312 9998 9007 #> 1768 32802 14740 28251 #> 1769 32082 13993 41350 #> 1770 26583 9967 7633 #> 1771 27748 9400 8854 #> 1772 29759 11313 11101 #> 1773 32022 13776 27844 #> 1774 9769 7192 5192 #> 1775 32138 13504 46401 #> 1776 25812 8057 7102 #> 1777 32914 14566 NA #> 1778 28477 10176 9522 #> 1779 28442 10126 9487 #> 1780 33021 15109 47044 #> 1781 31228 13067 31615 #> 1782 30154 11700 11796 #> 1783 31934 13477 45817 #> 1784 25739 8202 7641 #> 1785 29509 11470 11369 #> 1786 25733 8119 7029 #> 1787 31032 12476 46854 #> 1788 32025 13645 28394 #> 1789 32873 14825 NA #> 1790 32142 14001 91468 #> 1791 24830 7246 6195 #> 1792 31882 13583 42060 #> 1793 32295 14094 47150 #> 1794 31127 12809 47124 #> 1795 31508 13164 21528 #> 1796 32846 14641 NA #> 1797 27277 8986 8288 #> 1798 32079 13867 47882 #> 1799 33023 14889 NA #> 1800 32692 14509 61398 #> 1801 30330 11804 11972 #> 1802 32900 14831 NA #> 1803 28195 10139 9258 #> 1804 28983 10674 9948 #> 1805 27598 9434 8705 #> 1806 25887 8306 7654 #> 1807 32223 14080 27732 #> 1808 25720 8165 7016 #> 1809 31990 13704 50437 #> 1810 9467 6221 5127 #> 1811 29875 11081 11217 #> 1812 31877 13482 29113 #> 1813 31650 12578 42781 #> 1814 30794 12409 21515 #> 1815 32710 14542 90621 #> 1816 33319 14703 43336 #> 1817 24002 6621 5552 #> 1818 31726 13320 49607 #> 1819 26752 8711 7911 #> 1820 30244 11954 11886 #> 1821 31909 13655 48523 #> 1822 30427 11903 50170 #> 1823 33322 14909 NA #> 1824 30655 12141 12214 #> 1825 25020 7472 6385 #> 1826 33365 15180 NA #> 1827 26723 8676 7882 #> 1828 31991 13753 50588 #> 1829 29431 10947 10831 #> 1830 31826 13931 32565 #> 1831 28519 10292 9564 #> 1832 32326 13961 46142 #> 1833 32853 14674 27357 #> 1834 30762 12435 12266 #> 1835 31387 13417 46833 #> 1836 8432 5365 NA #> 1837 32829 14822 NA #> 1838 29293 10878 NA #> 1839 32230 13861 51107 #> 1840 32757 14742 25449 #> 1841 28987 12194 9952 #> 1842 32874 14826 43524 #> 1843 29309 10933 10709 #> 1844 32730 14477 27379 #> 1845 31113 12766 50966 #> 1846 25735 8201 7030 #> 1847 27259 9806 8378 #> 1848 28554 10467 9599 #> 1849 28478 10313 9523 #> 1850 27752 9779 8858 #> 1851 31995 13817 NA #> 1852 24788 7257 6153 #> 1853 9547 6140 5277 #> 1854 32464 13925 61944 #> 1855 31965 13438 13725 #> 1856 27658 9524 8765 #> 1857 31001 12880 27589 #> 1858 26813 8765 7971 #> 1859 31919 13636 35134 #> 1860 26389 8077 7469 #> 1861 33028 14459 25512 #> 1862 9298 6095 4957 #> 1863 27105 9173 8458 #> 1864 28303 10002 9177 #> 1865 27607 9298 8714 #> 1866 32865 14554 46271 #> 1867 31933 13763 NA #> 1868 31224 13015 38555 #> 1869 30272 11792 11914 #> 1870 29312 10960 10712 #> 1871 24925 7438 6290 #> 1872 29382 10906 10782 #> 1873 30993 12855 46048 #> 1874 31283 12692 34985 #> 1875 32771 14559 61068 #> 1876 28875 10727 9840 #> 1877 32761 14425 40294 #> 1878 31220 12529 47327 #> 1879 33026 14930 NA #> 1880 33024 14851 28071 #> 1881 30512 11845 12085 #> 1882 28730 10524 9964 #> 1883 32231 13517 47468 #> 1884 33020 14862 26884 #> 1885 9496 6141 5156 #> 1886 28425 10209 9470 #> 1887 31625 13302 47687 #> 1888 32612 14318 95015 #> 1889 33349 15163 28729 #> 1890 27618 9276 8725 #> 1891 8930 5786 4467 #> 1892 27567 9453 8674 #> 1893 31864 13425 48297 #> 1894 31215 12637 39386 #> 1895 31880 13541 37347 #> 1896 24007 6620 5557 #> 1897 25749 8164 7043 #> 1898 31555 12675 50473 #> 1899 30124 12023 11766 #> 1900 30811 12442 18348 #> 1901 29842 10986 11224 #> 1902 26366 8562 7374 #> 1903 28466 10409 9511 #> 1904 30155 12199 11797 #> 1905 33121 14964 NA #> 1906 26680 8690 7838 #> 1907 29696 11601 11409 #> 1908 27616 9411 8723 #> 1909 30216 11919 11858 #> 1910 29273 11180 10673 #> 1911 24811 7447 6176 #> 1912 30984 12863 50291 #> 1913 32490 13784 48500 #> 1914 33011 15136 NA #> 1915 33118 14726 50191 #> 1916 32497 14286 37279 #> 1917 32374 14164 27753 #> 1918 30251 11915 11893 #> 1919 29436 10887 10836 #> 1920 29354 11219 10754 #> 1921 28598 10486 9643 #> 1922 29246 11112 10646 #> 1923 28420 10058 9465 #> 1924 28556 10468 9601 #> 1925 28401 10258 9446 #> 1926 NA 14285 46090 #> 1927 32694 14468 59857 #> 1928 27980 9424 9001 #> 1929 28950 10648 9861 #> 1930 25885 8177 7167 #> 1931 29754 11309 11096 #> 1932 32212 13765 51448 #> 1933 25787 8213 7079 #> 1934 32744 14374 34632 #> 1935 30189 11957 11831 #> 1936 25689 8531 7003 #> 1937 32076 13953 51485 #> 1938 28512 10360 9557 #> 1939 32208 14067 NA #> 1940 7467 6999 2561 #> 1941 30015 11673 11414 #> 1942 33112 14868 NA #> 1943 9428 6301 5088 #> 1944 28389 10037 9434 #> 1945 5479 2178 802 #> 1946 30614 12063 12112 #> 1947 28638 10483 9683 #> 1948 28482 10216 9527 #> 1949 33114 14423 40498 #> 1950 30180 11732 11822 #> 1951 32493 NA NA #> 1952 26804 8772 7962 #> 1953 29470 10737 10870 #> 1954 31411 13106 51495 #> 1955 9278 6086 4937 #> 1956 31937 15189 49371 #> 1957 32491 13683 29118 #> 1958 33120 14543 NA #> 1959 30145 12198 11787 #> 1960 26698 8827 7856 #> 1961 32775 14541 109795 #> 1962 26950 9071 8200 #> 1963 31627 12743 47173 #> 1964 29783 11347 11139 #> 1965 9353 5981 5012 #> 1966 30024 11502 11439 #> 1967 29806 11585 11266 #> 1968 29281 10759 10681 #> 1969 27826 9353 8914 #> 1970 31061 12567 48228 #> 1971 32398 14191 91470 #> 1972 32323 14070 48004 #> 1973 32494 13565 42247 #> 1974 30656 12228 12215 #> 1975 29854 11508 11231 #> 1976 33113 14630 28305 #> 1977 24057 6523 5606 #> 1978 33109 14556 42295 #> 1979 30002 11276 11391 #> 1980 31554 12502 29476 #> 1981 29527 11487 10998 #> 1982 27902 9664 9132 #> 1983 31069 12778 49355 #> 1984 31764 13359 13822 #> 1985 30491 12929 12017 #> 1986 30159 12037 11801 #> 1987 32780 14535 56247 #> 1988 29296 10916 10696 #> 1989 33090 15103 NA #> 1990 30342 12041 11983 #> 1991 31940 13533 51081 #> 1992 NA 14904 49537 #> 1993 26706 8640 7864 #> 1994 32706 14617 55775 #> 1995 31016 12585 48727 #> 1996 31109 12589 48873 #> 1997 33051 15006 106295 #> 1998 31849 13568 25991 #> 1999 24824 7452 6189 #> 2000 28394 10307 9439 #> 2001 31039 12815 49894 #> 2002 33035 15117 NA #> 2003 29906 11297 11300 #> 2004 28899 10649 10024 #> 2005 31004 12804 46180 #> 2006 25737 8125 7032 #> 2007 32820 14669 28149 #> 2008 25227 9204 6471 #> 2009 9526 6045 5443 #> 2010 28557 10469 9602 #> 2011 32852 14596 42516 #> 2012 31036 12921 50126 #> 2013 31648 13187 48575 #> 2014 32924 14839 35774 #> 2015 32888 14580 43498 #> 2016 31927 13891 48538 #> 2017 31195 13004 49842 #> 2018 29365 11127 10765 #> 2019 30499 12043 12081 #> 2020 32908 14834 44198 #> 2021 29322 11030 10722 #> 2022 26979 8904 8043 #> 2023 28130 11214 8959 #> 2024 29277 11071 10677 #> 2025 30168 11946 11810 #> 2026 31643 13526 NA #> 2027 29462 11022 10862 #> 2028 31838 13491 39395 #> 2029 24060 6444 5609 #> 2030 24175 6674 5722 #> 2031 31999 13513 46501 #> 2032 26547 8402 7610 #> 2033 33188 14949 NA #> 2034 24936 7364 6301 #> 2035 30253 11761 11895 #> 2036 900125 12231 45675 #> 2037 31280 12734 45727 #> 2038 28718 10630 9996 #> 2039 30972 12507 45791 #> 2040 25883 8089 7165 #> 2041 30138 11714 11780 #> 2042 25907 8244 7193 #> 2043 32435 13770 49390 #> 2044 32769 14676 46179 #> 2045 32072 13721 46978 #> 2046 31416 13739 44891 #> 2047 32674 14360 59701 #> 2048 27668 9362 8775 #> 2049 33050 14673 NA #> 2050 24804 7434 6169 #> 2051 30136 11805 11778 #> 2052 32008 13516 40973 #> 2053 33041 15068 NA #> 2054 26756 8789 7915 #> 2055 31460 13136 39588 #> 2056 24035 6389 5585 #> 2057 29958 11059 11354 #> 2058 30513 12443 12088 #> 2059 33039 14546 28070 #> 2060 32003 13522 25578 #> 2061 32124 13911 47996 #> 2062 32418 13634 34579 #> 2063 31014 12884 48113 #> 2064 29433 10981 10833 #> 2065 29274 10988 10674 #> 2066 29249 10817 10649 #> 2067 29378 11133 10778 #> 2068 30770 12519 12187 #> 2069 31494 13178 54483 #> 2070 32522 14223 49466 #> 2071 29655 11319 11052 #> 2072 32012 13795 83833 #> 2073 30415 12026 12224 #> 2074 32028 13471 50434 #> 2075 29574 11292 10953 #> 2076 NA 15112 NA #> 2077 32828 14445 42313 #> 2078 30152 12001 11794 #> 2079 33333 14454 56262 #> 2080 33336 14583 50532 #> 2081 27715 9671 8822 #> 2082 32009 13702 49037 #> 2083 31451 13139 49190 #> 2084 32530 13708 36340 #> 2085 31105 12972 50088 #> 2086 32749 14734 26449 #> 2087 33335 15035 27128 #> 2088 28481 10324 9526 #> 2089 31150 12670 38558 #> 2090 29751 11305 11093 #> 2091 30302 11941 11944 #> 2092 31042 12814 24614 #> 2093 27785 9799 9068 #> 2094 30183 11791 11825 #> 2095 26569 8607 7746 #> 2096 NA 9844 NA #> 2097 32417 14254 NA #> 2098 30038 11610 NA #> 2099 26653 8695 7811 #> 2100 30904 12295 51599 #> 2101 27040 9044 8141 #> 2102 29758 11311 11100 #> 2103 27545 9380 8652 #> 2104 28935 10673 9836 #> 2105 31989 13846 35413 #> 2106 30193 11902 11835 #> 2107 32557 14305 35771 #> 2108 29317 11070 10717 #> 2109 31503 13159 51028 #> 2110 30666 11925 50118 #> 2111 28612 10382 9657 #> 2112 31615 13296 50221 #> 2113 30525 12391 12124 #> 2114 31835 13584 44216 #> 2115 32861 14654 NA #> 2116 31828 12824 NA #> 2117 27711 9318 8818 #> 2118 31141 12826 46453 #> 2119 8795 5648 4332 #> 2120 32795 14531 NA #> 2121 30973 12490 29048 #> 2122 32018 13587 45769 #> 2123 33366 14782 NA #> 2124 32790 14427 26408 #> 2125 32528 13641 NA #> 2126 7241 4400 2282 #> 2127 31567 12563 45662 #> 2128 32280 14133 94366 #> 2129 32738 14447 49560 #> 2130 27180 9111 8220 #> 2131 32799 14622 NA #> 2132 29364 11110 10764 #> 2133 30324 11810 11966 #> 2134 29815 11559 11282 #> 2135 32681 14391 59818 #> 2136 31924 13801 46232 #> 2137 29208 10837 10320 #> 2138 31077 12899 47164 #> 2139 31953 13828 42018 #> 2140 33362 15172 NA #> 2141 26824 8911 7982 #> 2142 28493 10224 9538 #> 2143 31180 12771 47961 #> 2144 30241 11697 11883 #> 2145 32283 14129 55003 #> 2146 29256 10852 10656 #> 2147 32533 13934 48055 #> 2148 32729 14539 47800 #> 2149 31102 12776 48097 #> 2150 33329 14597 34914 #> 2151 25178 8469 6468 #> 2152 31588 12979 66957 #> 2153 29102 10713 10144 #> 2154 28414 10069 9459 #> 2155 32965 14876 29571 #> 2156 24978 7585 6343 #> 2157 31985 13540 46815 #> 2158 26659 8647 7817 #> 2159 29452 11170 10852 #> 2160 27007 8651 8483 #> 2161 29876 11362 11218 #> 2162 31509 13181 26360 #> 2163 31095 12683 50543 #> 2164 32964 14875 47826 #> 2165 32959 14614 NA #> 2166 26356 8509 7271 #> 2167 32371 14162 33464 #> 2168 32968 14498 44440 #> 2169 32797 14686 42467 #> 2170 32961 14491 43528 #> 2171 33308 15133 25642 #> 2172 31101 12546 50120 #> 2173 23988 6571 5538 #> 2174 25769 8139 7061 #> 2175 33184 14948 NA #> 2176 31578 12708 48487 #> 2177 30127 11901 11769 #> 2178 32973 14722 27300 #> 2179 25722 8154 7018 #> 2180 29323 11051 10723 #> 2181 29350 11160 10750 #> 2182 25847 8150 7647 #> 2183 29114 10660 10156 #> 2184 30357 11920 11999 #> 2185 29313 11169 10713 #> 2186 25786 8127 7078 #> 2187 32405 13464 28844 #> 2188 28460 10277 9505 #> 2189 31176 12998 46647 #> 2190 32406 13880 45110 #> 2191 30266 12203 11908 #> 2192 31120 12916 49699 #> 2193 32403 13460 30737 #> 2194 32866 14737 42632 #> 2195 29409 11225 10809 #> 2196 30188 11981 11830 #> 2197 33180 15096 43811 #> 2198 28716 10811 9994 #> 2199 32773 14751 81991 #> 2200 30297 11990 11940 #> 2201 33108 14735 43250 #> 2202 28698 10600 10007 #> 2203 30711 11829 12255 #> 2204 33192 14748 NA #> 2205 29421 11187 10821 #> 2206 32723 14416 40291 #> 2207 29236 10856 10636 #> 2208 32404 NA NA #> 2209 29384 10815 10784 #> 2210 32148 13534 40065 #> 2211 31885 13521 40555 #> 2212 32966 14396 42425 #> 2213 31171 12996 39462 #> 2214 30707 11750 12253 #> 2215 32842 14796 45693 #> 2216 32023 13985 51391 #> 2217 30321 11989 11963 #> 2218 29467 11137 10867 #> 2219 29430 11231 10830 #> 2220 26627 8728 7786 #> 2221 31203 13009 66916 #> 2222 32649 12696 46848 #> 2223 32815 14663 27064 #> 2224 31854 13671 29250 #> 2225 7122 3874 2148 #> 2226 26658 8781 7816 #> 2227 29654 11317 11051 #> 2228 32415 13551 46481 #> 2229 30594 12082 12145 #> 2230 31019 12860 47272 #> 2231 32086 13444 38305 #> 2232 31935 13564 47928 #> 2233 27626 9559 8733 #> 2234 26701 8807 7859 #> 2235 30715 11883 12258 #> 2236 31624 12602 47477 #> 2237 32016 13735 48023 #> 2238 32691 14421 61697 #> 2239 32035 13979 47662 #> 2240 32870 14464 61664 #> 2241 31889 13529 35014 #> 2242 25755 8029 7048 #> 2243 8826 5581 4363 #> 2244 32838 14567 84142 #> 2245 23993 6563 5543 #> 2246 31342 13025 45600 #> 2247 31915 13455 40160 #> 2248 29534 11494 11004 #> 2249 30207 12031 11850 #> 2250 23982 6617 5532 #> 2251 29510 11473 10898 #> 2252 32939 14439 60649 #> 2253 32070 13966 NA #> 2254 28486 10419 9531 #> 2255 32868 14595 49751 #> 2256 29292 11018 10692 #> 2257 31118 12768 49263 #> 2258 30187 11955 11829 #> 2259 27636 9414 8743 #> 2260 31518 13390 48889 #> 2261 32024 13755 56503 #> 2262 23985 6590 5535 #> 2263 27574 9257 8681 #> 2264 32937 15011 NA #> 2265 24818 7449 6183 #> 2266 32902 14681 48662 #> 2267 32041 13662 NA #> 2268 29432 11232 10832 #> 2269 32805 14749 46735 #> 2270 30293 11798 11933 #> 2271 25734 8123 7640 #> 2272 28188 9646 8990 #> 2273 31484 12574 50154 #> 2274 31708 13306 50918 #> 2275 26829 8970 7988 #> 2276 28410 10351 9455 #> 2277 31410 12704 50819 #> 2278 31842 13461 27375 #> 2279 30143 11984 11785 #> 2280 27679 9640 8786 #> 2281 30954 12977 20035 #> 2282 32772 14724 43507 #> 2283 32039 13632 50810 #> 2284 28075 9955 9336 #> 2285 29566 11287 10949 #> 2286 28388 10172 10236 #> 2287 32942 15012 NA #> 2288 30248 11834 11890 #> 2289 6770 3764 1732 #> 2290 31046 12629 46569 #> 2291 31847 13558 41897 #> 2292 31135 12779 47297 #> 2293 32794 14357 57289 #> 2294 31954 13453 45954 #> 2295 30850 12433 38329 #> 2296 29387 10806 10787 #> 2297 30218 11691 11860 #> 2298 27000 9578 8468 #> 2299 30998 12613 51334 #> 2300 32521 13841 NA #> 2301 30981 12624 51206 #> 2302 30431 11785 12049 #> 2303 30250 11756 11892 #> 2304 31577 13258 NA #> 2305 29357 11054 10757 #> 2306 30735 11922 12235 #> 2307 28194 9677 9289 #> 2308 31062 12805 46302 #> 2309 27528 9762 9091 #> 2310 33325 14866 NA #> 2311 32195 14066 46859 #> 2312 27538 9210 8645 #> 2313 26678 8785 7836 #> 2314 31441 13119 30887 #> 2315 31973 13511 36049 #> 2316 32261 13440 35985 #> 2317 32565 14248 47186 #> 2318 32719 14433 42312 #> 2319 31898 13472 33441 #> 2320 32482 13788 41706 #> 2321 31030 12838 47792 #> 2322 32948 14495 NA #> 2323 31157 12570 47895 #> 2324 30175 11877 11817 #> 2325 30171 11814 11813 #> 2326 31475 12682 45578 #> 2327 32120 14027 48212 #> 2328 31576 13282 49132 #> 2329 30203 12015 11845 #> 2330 29077 10706 10073 #> 2331 32004 13876 49515 #> 2332 26122 8584 7716 #> 2333 31116 12671 49059 #> 2334 31879 13796 56263 #> 2335 33283 15123 NA #> 2336 28588 10433 9633 #> 2337 31964 13839 49352 #> 2338 31112 12505 26940 #> 2339 28418 10387 9463 #> 2340 31415 12699 38426 #> 2341 32718 14649 NA #> 2342 32818 14727 56857 #> 2343 29999 11065 11394 #> 2344 29306 10926 10706 #> 2345 31049 12632 48731 #> 2346 24029 6570 5579 #> 2347 31861 13751 48822 #> 2348 27413 9126 8196 #> 2349 26704 8654 7862 #> 2350 33285 15124 NA #> 2351 29289 11217 10683 #> 2352 25295 7504 6515 #> 2353 23992 6553 5542 #> 2354 32739 14670 81532 #> 2355 26633 8701 7791 #> 2356 31956 13862 29244 #> 2357 30356 12221 11998 #> 2358 30634 12105 46744 #> 2359 9649 7138 5372 #> 2360 28378 10157 NA #> 2361 31974 13844 50967 #> 2362 32697 14739 50851 #> 2363 31920 13733 50727 #> 2364 31111 12829 50657 #> 2365 27287 9072 8271 #> 2366 32000 13737 39140 #> 2367 25757 8208 7050 #> 2368 30191 11952 11833 #> 2369 25725 8199 7021 #> 2370 24886 7483 6251 #> 2371 28221 10155 9174 #> 2372 32336 14099 38461 #> 2373 31477 12492 48875 #> 2374 31119 12481 35381 #> 2375 31190 13003 46420 #> 2376 26662 8743 7820 #> 2377 31189 12950 23519 #> 2378 25785 8043 7077 #> 2379 31206 12617 45731 #> 2380 30997 12830 27414 #> 2381 29405 10803 10805 #> 2382 27585 9516 8692 #> 2383 33281 14857 NA #> 2384 32814 14410 55632 #> 2385 32036 13484 45859 #> 2386 30362 11784 12004 #> 2387 30119 11985 11761 #> 2388 30208 11992 11849 #> 2389 31138 12938 46226 #> 2390 30879 11825 12240 #> 2391 28409 10262 9454 #> 2392 8803 5773 4340 #> 2393 33268 15118 NA #> 2394 29392 11171 10792 #> 2395 32527 13921 46948 #> 2396 8285 5206 3647 #> 2397 33286 14928 NA #> 2398 26781 8907 7940 #> 2399 32803 14463 52266 #> 2400 31090 12986 30762 #> 2401 30661 12271 12051 #> 2402 28457 10161 9502 #> 2403 32068 13470 26586 #> 2404 33267 14638 NA #> 2405 32884 14644 26448 #> 2406 32293 13616 13534 #> 2407 31722 13321 23254 #> 2408 30899 12287 31892 #> 2409 30339 12216 11981 #> 2410 31896 13424 47864 #> 2411 28417 10208 9462 #> 2412 32367 13490 48152 #> 2413 26561 8415 7618 #> 2414 29627 11427 11024 #> 2415 24380 8427 5839 #> 2416 27571 9431 8678 #> 2417 29887 10918 11117 #> 2418 27606 9447 8713 #> 2419 28459 10274 9504 #> 2420 32030 13692 49512 #> 2421 24941 7600 6306 #> 2422 30179 12038 11821 #> 2423 31386 13422 50430 #> 2424 32084 13889 12955 #> 2425 26677 8644 7835 #> 2426 28265 9953 9332 #> 2427 27553 9330 8660 #> 2428 31762 13354 13612 #> 2429 27657 9301 8764 #> 2430 33201 14780 NA #> 2431 30169 12002 11811 #> 2432 31065 12985 49178 #> 2433 29507 10910 10903 #> 2434 27558 9308 8665 #> 2435 30186 11953 11828 #> 2436 28405 10309 9450 #> 2437 31098 12752 48404 #> 2438 30116 11945 11758 #> 2439 26628 8657 8094 #> 2440 30766 12426 12183 #> 2441 31834 13421 42741 #> 2442 26626 8658 7785 #> 2443 29376 10908 10776 #> 2444 27862 9403 9045 #> 2445 27551 9342 8658 #> 2446 30190 11917 11832 #> 2447 32936 14705 44361 #> 2448 32684 14444 56834 #> 2449 33195 14551 48659 #> 2450 30310 12209 11953 #> 2451 32321 13519 28308 #> 2452 26753 8930 7912 #> 2453 28416 10269 9461 #> 2454 25805 8310 7095 #> 2455 30449 11781 34807 #> 2456 30058 11634 11467 #> 2457 7520 4686 2607 #> 2458 28624 10385 9669 #> 2459 26669 8698 7827 #> 2460 31040 12769 51222 #> 2461 33197 15013 NA #> 2462 29485 11247 10885 #> 2463 32318 13829 49792 #> 2464 31980 13804 51503 #> 2465 30088 11740 11748 #> 2466 25291 9186 6428 #> 2467 29413 11085 10813 #> 2468 31942 13816 44663 #> 2469 8937 5653 4474 #> 2470 30563 12511 12282 #> 2471 27590 9320 8697 #> 2472 30980 12489 35460 #> 2473 30217 11833 11859 #> 2474 33200 14988 NA #> 2475 27624 9529 8731 #> 2476 27732 9526 8838 #> 2477 31394 12932 29413 #> 2478 28654 10604 9783 #> 2479 32383 14170 45038 #> 2480 28461 10081 9506 #> 2481 33199 14392 25582 #> 2482 31154 12636 51408 #> 2483 32319 14074 49231 #> 2484 29997 11516 11392 #> 2485 28434 10451 9479 #> 2486 30548 12090 12102 #> 2487 26656 8778 7814 #> 2488 23979 6541 5529 #> 2489 32214 13981 42414 #> 2490 32015 13679 38951 #> 2491 30979 12882 46275 #> 2492 29310 10975 10710 #> 2493 32622 14201 46284 #> 2494 25903 8339 7181 #> 2495 32823 14671 29314 #> 2496 31447 13154 66937 #> 2497 32543 13685 47307 #> 2498 31329 13030 20994 #> 2499 33198 14767 NA #> 2500 26708 8615 7866 #> 2501 32860 14608 42257 #> 2502 30259 11892 11901 #> 2503 30290 11881 11932 #> 2504 31899 13631 45752 #> 2505 32325 13588 25513 #> 2506 30551 11847 12270 #> 2507 27570 9273 8677 #> 2508 31868 13429 48274 #> 2509 32887 14376 NA #> 2510 33236 14914 NA #> 2511 25810 8111 7100 #> 2512 28395 10151 9440 #> 2513 31225 13016 48223 #> 2514 31210 12579 28991 #> 2515 30955 12447 47417 #> 2516 32695 14386 84109 #> 2517 30861 12260 12330 #> 2518 9490 6215 5150 #> 2519 26826 8981 7985 #> 2520 31871 13648 25891 #> 2521 29342 11178 10742 #> 2522 32628 13730 27582 #> 2523 31926 13483 34918 #> 2524 31033 12531 49335 #> 2525 27637 9655 8744 #> 2526 33273 14916 NA #> 2527 32396 14192 50480 #> 2528 31931 13789 51282 #> 2529 32715 14484 42475 #> 2530 30363 12223 12005 #> 2531 33277 14913 50195 #> 2532 23977 6537 5527 #> 2533 23990 6568 5540 #> 2534 32062 13990 37468 #> 2535 26749 8664 7908 #> 2536 30317 11927 11960 #> 2537 33346 15162 NA #> 2538 32864 14682 48988 #> 2539 28605 10339 9650 #> 2540 32585 13577 NA #> 2541 33275 14672 NA #> 2542 31619 13303 28653 #> 2543 28449 10272 9494 #> 2544 33292 14915 NA #> 2545 26739 9092 7898 #> 2546 24181 6567 5728 #> 2547 31064 12851 66578 #> 2548 9520 6150 5180 #> 2549 31172 12528 50787 #> 2550 26668 8694 7826 #> 2551 27555 9271 8662 #> 2552 31939 13562 48405 #> 2553 27820 9995 9000 #> 2554 33272 14917 33560 #> 2555 31837 13611 43089 #> 2556 25768 8184 7060 #> 2557 9537 6932 5430 #> 2558 30096 12538 NA #> 2559 9673 7168 5232 #> 2560 30982 12500 48956 #> 2561 28553 10466 9598 #> 2562 31809 11830 NA #> 2563 28738 10532 NA #> 2564 26949 8923 7983 #> 2565 8297 5251 3659 #> 2566 24797 7248 6162 #> 2567 5228 1350 698 #> 2568 31008 12566 34001 #> 2569 9317 5970 4976 #> 2570 32746 14557 45866 #> 2571 32629 13599 34669 #> 2572 30117 11687 11759 #> 2573 26805 8762 7963 #> 2574 29324 10738 10724 #> 2575 30292 11764 11935 #> 2576 31087 12641 49196 #> 2577 29841 11527 11240 #> 2578 30163 11988 11805 #> 2579 28422 10271 9467 #> 2580 27882 9965 8968 #> 2581 30349 12218 11992 #> 2582 32683 14616 64818 #> 2583 29389 11049 10789 #> 2584 30132 11806 11774 #> 2585 31257 13286 66924 #> 2586 30468 12230 24606 #> 2587 28267 10008 9207 #> 2588 24017 6443 5567 #> 2589 31732 13341 66966 #> 2590 29978 11213 11371 #> 2591 30111 12121 12077 #> 2592 30197 11718 11839 #> 2593 33294 14778 NA #> 2594 24171 6454 5718 #> 2595 31712 13207 25576 #> 2596 33274 14892 NA #> 2597 32831 14432 48054 #> 2598 27535 9253 8642 #> 2599 32040 13987 47481 #> 2600 31114 12746 66915 #> 2601 25809 8129 7099 #> 2602 29133 10716 10174 #> 2603 33338 14897 46014 #> 2604 31609 12720 51203 #> 2605 30264 11999 11906 #> 2606 30623 12097 39398 #> 2607 28244 9944 9040 #> 2608 32731 14443 42894 #> 2609 32913 14835 42512 #> 2610 29607 11420 10914 #> 2611 28558 10470 9603 #> 2612 32589 14297 50513 #> 2613 30131 12018 11773 #> 2614 31948 13550 51378 #> 2615 30652 12149 51190 #> 2616 29298 11218 10698 #> 2617 27529 9243 8636 #> 2618 32287 13881 50115 #> 2619 28439 10317 9484 #> 2620 31851 13465 43742 #> 2621 33347 14985 82261 #> 2622 31992 13607 48933 #> 2623 31193 13002 48684 #> 2624 25868 8148 7151 #> 2625 32844 14718 57004 #> 2626 31612 12973 49601 #> 2627 32140 13998 44889 #> 2628 24008 6554 5558 #> 2629 26799 8829 7957 #> 2630 31914 13800 46808 #> 2631 28502 10294 9547 #> 2632 26264 8835 NA #> 2633 33343 14860 NA #> 2634 32918 14837 NA #> 2635 7867 4932 3063 #> 2636 32427 13774 30462 #> 2637 28679 10684 10127 #> 2638 27203 9924 8308 #> 2639 31011 12883 48600 #> 2640 27166 9073 8077 #> 2641 31571 12911 50116 #> 2642 32582 14293 44583 #> 2643 30992 12879 50213 #> 2644 24829 7451 6194 #> 2645 30268 11963 11910 #> 2646 32020 13486 29367 #> 2647 32306 14127 94369 #> 2648 26016 8532 7418 #> 2649 9803 8517 6979 #> 2650 27640 9393 8747 #> 2651 32155 14044 37161 #> 2652 9070 6315 4580 #> 2653 31579 12925 38843 #> 2654 25718 8040 7014 #> 2655 30165 11692 11807 #> 2656 31219 12949 46517 #> 2657 32763 14400 40692 #> 2658 30275 11767 11917 #> 2659 29279 10819 10679 #> 2660 30202 11685 11844 #> 2661 28223 9872 9035 #> 2662 26638 8684 7796 #> 2663 31122 12731 25546 #> 2664 32699 14395 59704 #> 2665 27539 9256 8646 #> 2666 24145 6744 5692 #> 2667 33342 15161 NA #> 2668 25863 8314 7146 #> 2669 32233 13718 46846 #> 2670 28447 10275 9492 #> 2671 33344 15156 NA #> 2672 28531 10251 9576 #> 2673 32588 14295 48369 #> 2674 28634 10507 9679 #> 2675 30571 12235 51837 #> 2676 33064 14632 NA #> 2677 30213 11807 11855 #> 2678 33340 15159 NA #> 2679 30118 11733 11760 #> 2680 31623 13206 47669 #> 2681 30940 12367 38044 #> 2682 29609 11256 10918 #> 2683 31883 13432 48327 #> 2684 29678 11534 11074 #> 2685 33348 14750 NA #> 2686 29070 10680 10075 #> 2687 29631 11429 11028 #> 2688 30660 12926 12052 #> 2689 30312 11816 11954 #> 2690 32826 14662 41878 #> 2691 28438 10408 9483 #> 2692 30194 11970 11836 #> 2693 27642 9337 8749 #> 2694 31211 12751 49354 #> 2695 31158 12991 51583 #> 2696 30646 12040 49357 #> 2697 31402 12834 49379 #> 2698 32059 13603 28704 #> 2699 29318 11038 10718 #> 2700 32886 14381 55800 #> 2701 32055 13547 49407 #> 2702 31582 12827 50406 #> 2703 31079 12914 49260 #> 2704 30381 12091 50361 #> 2705 30162 11956 11804 #> 2706 32899 14729 48455 #> 2707 31858 13745 27271 #> 2708 32903 14753 38472 #> 2709 32198 13625 48922 #> 2710 32180 14057 36551 #> 2711 32672 14452 56436 #> 2712 30298 11904 11939 #> 2713 24803 7448 6168 #> 2714 32073 13807 48426 #> 2715 29386 11063 10786 #> 2716 33185 14947 NA #> 2717 30983 12618 48698 #> 2718 31133 12544 48966 #> 2719 30412 12173 12222 #> 2720 30130 11900 11772 #> 2721 28911 10836 9818 #> 2722 29429 11230 10829 #> 2723 31963 13983 46087 #> 2724 28393 10257 9438 #> 2725 29262 11041 10662 #> 2726 26800 8896 NA #> 2727 31421 13131 NA #> 2728 26673 8696 7831 #> 2729 30343 11991 11985 #> 2730 29505 11149 11011 #> 2731 30144 11746 11786 #> 2732 32151 14257 38548 #> 2733 32832 14480 49073 #> 2734 32204 13903 49677 #> 2735 32005 13700 49753 #> 2736 25756 8207 7049 #> 2737 7190 4455 2231 #> 2738 27660 9712 8767 #> 2739 9771 7973 5512 #> 2740 26945 9832 8358 #> 2741 28839 10179 9896 #> 2742 31301 12623 26152 #> 2743 33207 14393 NA #> 2744 7177 4306 2218 #> 2745 25807 8008 7097 #> 2746 31944 13458 NA #> 2747 29650 11312 11047 #> 2748 29390 10851 10790 #> 2749 29560 10902 10927 #> 2750 32736 14639 78050 #> 2751 28421 10057 9466 #> 2752 28785 10701 9940 #> 2753 31097 12987 44802 #> 2754 31044 12575 46375 #> 2755 32778 14516 59820 #> 2756 31544 13270 46936 #> 2757 30242 11818 11884 #> 2758 27594 9418 8701 #> 2759 28000 9429 9025 #> 2760 31403 12940 31698 #> 2761 31478 12901 47131 #> 2762 33208 14524 NA #> 2763 30267 11899 11909 #> 2764 27648 9323 8755 #> 2765 31161 12920 NA #> 2766 29411 11009 10811 #> 2767 30763 12049 12267 #> 2768 32812 14568 39993 #> 2769 31626 13304 38435 #> 2770 31908 13536 48229 #> 2771 31405 13101 47908 #> 2772 33303 14603 48344 #> 2773 32038 13428 47931 #> 2774 32253 13515 39533 #> 2775 25120 7659 6597 #> 2776 31601 12909 48230 #> 2777 33209 14503 40113 #> 2778 32187 14055 48341 #> 2779 31227 12739 48309 #> 2780 29397 11014 10797 #> 2781 27778 9789 8884 #> 2782 29788 11455 11257 #> 2783 8313 5294 3675 #> 2784 29212 10774 10345 #> 2785 27592 9427 8699 #> 2786 31721 13339 21865 #> 2787 32526 NA NA #> 2788 32099 13680 28746 #> 2789 31801 12709 45591 #> 2790 32133 14017 25158 #> 2791 25808 8330 7098 #> 2792 32489 13949 91475 #> 2793 28077 9658 9148 #> 2794 31617 13295 45599 #> 2795 26874 9574 8034 #> 2796 31108 12801 46953 #> 2797 29093 10605 10060 #> 2798 32117 14028 26727 #> 2799 8964 6404 4501 #> 2800 27701 9428 8808 #> 2801 31535 13264 NA #> 2802 27604 9430 8711 #> 2803 31260 12655 46610 #> 2804 32562 14247 30032 #> 2805 28722 10866 9794 #> 2806 31476 12857 NA #> 2807 30521 12432 12120 #> 2808 32144 13717 45568 #> 2809 32407 14022 46763 #> 2810 30385 11786 12058 #> 2811 32554 14268 29378 #> 2812 26730 8634 7889 #> 2813 31767 NA 26384 #> 2814 30397 12982 22381 #> 2815 31522 13384 NA #> 2816 29669 12362 11065 #> 2817 27733 9772 8839 #> 2818 32240 14086 28134 #> 2819 31432 13110 39377 #> 2820 9313 6055 4972 #> 2821 30329 12035 11971 #> 2822 24918 7518 6283 #> 2823 30865 12317 12338 #> 2824 26875 9082 8035 #> 2825 29483 11246 10883 #> 2826 29487 11248 10887 #> 2827 25776 8211 7068 #> 2828 26674 8643 7832 #> 2829 30316 12210 11959 #> 2830 24685 7236 6017 #> 2831 27596 9316 8703 #> 2832 31524 12707 49365 #> 2833 25825 8320 7115 #> 2834 26691 8649 7849 #> 2835 9289 5984 4948 #> 2836 26082 8440 7362 #> 2837 32252 13503 49433 #> 2838 28468 10417 9513 #> 2839 NA 14264 26516 #> 2840 28630 10437 9675 #> 2841 29589 11301 10961 #> 2842 26571 8566 7624 #> 2843 30607 12453 12105 #> 2844 31418 13371 49361 #> 2845 31690 13205 66956 #> 2846 25994 8596 7450 #> 2847 NA NA 42965 #> 2848 30569 12233 12242 #> 2849 31756 12873 68148 #> 2850 8607 5848 3589 #> 2851 28639 10505 9684 #> 2852 29079 10795 10080 #> 2853 28544 10227 9589 #> 2854 30859 12259 12328 #> 2855 8909 5810 4457 #> 2856 32379 14159 34280 #> 2857 26939 9874 8359 #> 2858 30549 12030 12095 #> 2859 29723 11442 11145 #> 2860 NA 14107 94364 #> 2861 NA 13563 50541 #> 2862 29771 11328 11129 #> 2863 31152 12767 50451 #> 2864 27708 9768 8815 #> 2865 28204 10001 9115 #> 2866 30846 12347 37997 #> 2867 25716 8162 7012 #> 2868 NA 12380 12063 #> 2869 NA 13594 NA #> 2870 31297 13208 43029 #> 2871 24960 7603 6325 #> 2872 29896 11373 11126 #> 2873 30348 12170 11990 #> 2874 28570 10475 9615 #> 2875 31385 12580 50450 #> 2876 30732 14511 51223 #> 2877 6341 3008 1321 #> 2878 29684 11538 11080 #> 2879 32365 14185 50342 #> 2880 30282 12012 11924 #> 2881 32331 13849 NA #> 2882 30620 12282 12118 #> 2883 25401 7937 6871 #> 2884 31236 13150 50445 #> 2885 29916 10934 11337 #> 2886 29536 11493 NA #> 2887 31632 13269 66952 #> 2888 29956 11515 11352 #> 2889 30335 12027 11977 #> 2890 31521 13415 50549 #> 2891 30239 12036 NA #> 2892 30619 12404 12117 #> 2893 30744 12399 12287 #> 2894 30014 11407 11418 #> 2895 31368 NA 49372 #> 2896 30628 14605 49137 #> 2897 27989 9960 9252 #> 2898 31814 13570 NA #> 2899 NA 14167 56047 #> 2900 26737 8830 7896 #> 2901 27725 9699 8832 #> 2902 25833 8166 7123 #> 2903 NA 14298 39342 #> 2904 26713 8905 7871 #> 2905 8424 6211 3786 #> 2906 31703 13313 49337 #> 2907 28509 10421 9554 #> 2908 27608 9690 8715 #> 2909 31273 13044 42401 #> 2910 26043 8170 7385 #> 2911 29848 11529 11243 #> 2912 31406 NA 49351 #> 2913 24876 7517 6241 #> 2914 28656 10685 9784 #> 2915 29564 11285 NA #> 2916 30776 12465 12192 #> 2917 8797 5591 4334 #> 2918 28959 10832 9974 #> 2919 7182 4457 2223 #> 2920 28430 10405 9475 #> 2921 31192 13001 NA #> 2922 26962 9162 8142 #> 2923 28270 9830 9135 #> 2924 28471 10418 9516 #> 2925 32286 14143 94367 #> 2926 9480 6242 5140 #> 2927 31658 12955 NA #> 2928 31672 13045 39373 #> 2929 28715 10840 10294 #> 2930 29847 11053 11227 #> 2931 30093 11704 11517 #> 2932 32500 13690 50439 #> 2933 31600 13227 50416 #> 2934 29439 11136 10839 #> 2935 29294 11075 10694 #> 2936 27676 9618 8783 #> 2937 28237 9952 8989 #> 2938 32269 14105 NA #> 2939 8272 5348 3634 #> 2940 26666 8638 7824 #> 2941 31314 12758 50381 #> 2942 27586 9381 8693 #> 2943 8793 5749 4330 #> 2944 30683 12021 12138 #> 2945 28450 10410 9495 #> 2946 31631 NA 51138 #> 2947 32112 14026 49482 #> 2948 28552 10425 9597 #> 2949 29407 11224 10807 #> 2950 31755 13362 49414 #> 2951 30821 12107 49551 #> 2952 31499 12833 50418 #> 2953 31409 13107 51231 #> 2954 28136 10445 9198 #> 2955 28925 10396 9925 #> 2956 29724 11575 11189 #> 2957 24508 7017 5943 #> 2958 30479 12535 NA #> 2959 29706 11377 11110 #> 2960 30443 12887 49554 #> 2961 30913 12534 51668 #> 2962 27698 9611 8805 #> 2963 31630 13191 50446 #> 2964 24079 6635 5628 #> 2965 NA 13380 29427 #> 2966 32550 14266 34739 #> 2967 32397 14193 49054 #> 2968 31498 13066 50449 #> 2969 31261 12666 31078 #> 2970 NA 14245 27015 #> 2971 32333 14100 NA #> 2972 32568 14250 94381 #> 2973 31375 12960 49378 #> 2974 32618 14322 33053 #> 2975 31675 13047 12727 #> 2976 32594 14303 26748 #> 2977 32535 14019 94373 #> 2978 24828 7470 6193 #> 2979 31710 13308 66964 #> 2980 30880 12761 25967 #> 2981 31645 12554 48510 #> 2982 30076 11669 11487 #> 2983 24790 7462 6155 #> 2984 29415 11226 10815 #> 2985 8779 5608 4316 #> 2986 32110 14024 37171 #> 2987 31738 13345 28341 #> 2988 8843 5726 4380 #> 2989 9334 6061 4993 #> 2990 31449 13155 43695 #> 2991 7840 5030 3036 #> 2992 31776 13376 30458 #> 2993 31353 13089 48833 #> 2994 31307 12721 48941 #> 2995 28097 9359 9109 #> 2996 25759 8159 7052 #> 2997 8880 5869 4417 #> 2998 29335 10954 10735 #> 2999 9296 6067 4955 #> 3000 28784 10699 9939 #> 3001 24665 7222 6112 #> 3002 31668 13243 50589 #> 3003 28551 10465 9596 #> 3004 27726 9682 8833 #> 3005 25761 8156 7054 #> 3006 31371 13738 48946 #> 3007 29029 10745 10048 #> 3008 30405 11935 48353 #> 3009 32147 14157 48465 #> 3010 28587 10335 9632 #> 3011 30507 12523 12304 #> 3012 26663 8661 7821 #> 3013 27554 9340 8661 #> 3014 28485 10338 9530 #> 3015 27588 9407 8695 #> 3016 30386 12593 12059 #> 3017 31489 13176 48818 #> 3018 31765 13373 50300 #> 3019 31791 13392 28766 #> 3020 5888 2528 1010 #> 3021 30497 12537 12023 #> 3022 30376 12765 12209 #> 3023 29856 11684 11232 #> 3024 28432 10357 9477 #> 3025 32320 14073 56886 #> 3026 29687 11541 11083 #> 3027 32410 13617 49917 #> 3028 26297 8470 7400 #> 3029 30917 12329 48586 #> 3030 29460 11241 10860 #> 3031 30615 12595 12113 #> 3032 29596 10874 10926 #> 3033 31824 13935 28584 #> 3034 27923 9378 9011 #> 3035 30327 11936 11969 #> 3036 28242 9962 9063 #> 3037 31807 13955 49643 #> 3038 26300 8151 7401 #> 3039 9691 5975 4907 #> 3040 30708 12607 48891 #> 3041 26085 8442 7365 #> 3042 31188 12915 48606 #> 3043 31266 12965 27010 #> 3044 32534 14229 50033 #> 3045 27093 9079 8484 #> 3046 31602 13225 26657 #> 3047 32484 14221 48531 #> 3048 32116 14007 50218 #> 3049 30823 12540 48816 #> 3050 30546 13314 12104 #> 3051 31784 NA 48525 #> 3052 32161 13591 48368 #> 3053 30934 11911 23592 #> 3054 29767 11552 11273 #> 3055 31315 13215 48964 #> 3056 9568 6381 5273 #> 3057 32592 14301 48952 #> 3058 27762 9784 8868 #> 3059 9513 7202 5173 #> 3060 30535 11940 12131 #> 3061 24817 7464 6182 #> 3062 30504 12456 12299 #> 3063 32255 14136 49588 #> 3064 29799 11273 11165 #> 3065 29424 11035 10824 #> 3066 32285 14141 48427 #> 3067 31355 12963 48552 #> 3068 24451 7319 6031 #> 3069 32385 14174 NA #> 3070 26840 8951 7999 #> 3071 31702 NA 49638 #> 3072 31678 13050 49584 #> 3073 30280 11929 11922 #> 3074 31507 13163 66951 #> 3075 26862 8968 8022 #> 3076 31037 12749 48565 #> 3077 28051 9691 8938 #> 3078 25947 8143 7221 #> 3079 30948 12384 51981 #> 3080 32399 14194 56885 #> 3081 31520 13289 66925 #> 3082 30626 11906 12246 #> 3083 8356 5319 3718 #> 3084 31539 13267 66923 #> 3085 32248 13567 91464 #> 3086 31277 13291 48436 #> 3087 32089 14039 49991 #> 3088 31541 13268 12893 #> 3089 31357 13091 66932 #> 3090 32519 14290 56643 #> 3091 31586 13260 49983 #> 3092 32203 13705 48652 #> 3093 30608 12515 12106 #> 3094 27602 9404 8709 #> 3095 27298 9193 8387 #> 3096 31774 12974 49906 #> 3097 24778 9761 3378 #> 3098 30730 12413 12230 #> 3099 30787 12124 12323 #> 3100 31633 13194 44610 #> 3101 31669 13244 50627 #> 3102 24056 6683 5605 #> 3103 28826 10720 9772 #> 3104 32619 14324 50085 #> 3105 25225 7805 6483 #> 3106 29581 11413 10937 #> 3107 9508 7141 5168 #> 3108 7761 4743 2957 #> 3109 31527 12665 48826 #> 3110 28568 10312 9613 #> 3111 28109 10101 9310 #> 3112 26823 8984 7981 #> 3113 30605 13401 12157 #> 3114 30215 11923 11857 #> 3115 29050 10808 10101 #> 3116 7883 5152 3079 #> 3117 27983 10025 8940 #> 3118 28233 10443 8993 #> 3119 30921 12633 51671 #> 3120 26821 5250 7979 #> 3121 32178 14053 49989 #> 3122 28694 10615 10010 #> 3123 31392 NA 49990 #> 3124 26054 8564 7459 #> 3125 31788 13387 49890 #> 3126 31446 13153 66936 #> 3127 27972 9685 8976 #> 3128 30810 12485 48872 #> 3129 32370 14161 14834 #> 3130 31542 12756 50036 #> 3131 28580 10330 9625 #> 3132 31248 12573 36926 #> 3133 32146 14156 48633 #> 3134 28928 10870 9928 #> 3135 31312 13236 48695 #> 3136 27245 9113 8261 #> 3137 31289 13253 44545 #> 3138 28602 10489 9647 #> 3139 29488 11543 10888 #> 3140 29683 11537 11079 #> 3141 8967 6900 4504 #> 3142 28523 10319 9568 #> 3143 29314 10892 10714 #> 3144 31417 12864 50032 #> 3145 31362 13088 48791 #> 3146 27565 9254 8672 #> 3147 25048 7874 6607 #> 3148 30701 12634 39139 #> 3149 31474 12639 48732 #> 3150 28789 10668 9944 #> 3151 24852 7474 6217 #> 3152 28484 10327 9529 #> 3153 32544 14263 55373 #> 3154 28178 9636 9022 #> 3155 28755 10347 10098 #> 3156 27610 9270 8717 #> 3157 26960 9523 8184 #> 3158 23978 6583 5528 #> 3159 31686 13058 48737 #> 3160 32524 14224 49971 #> 3161 32445 14283 48982 #> 3162 30021 11558 11490 #> 3163 30517 12118 47053 #> 3164 30739 12414 12238 #> 3165 29695 11266 11408 #> 3166 29550 11047 10966 #> 3167 30757 12335 12260 #> 3168 31467 13161 NA #> 3169 27739 9774 8845 #> 3170 30318 11771 11961 #> 3171 28496 10203 9541 #> 3172 26299 8247 7377 #> 3173 24760 8588 6142 #> 3174 32216 14079 30027 #> 3175 29571 11406 10931 #> 3176 31513 13167 13455 #> 3177 27135 8846 8420 #> 3178 26601 9899 8438 #> 3179 28594 10205 9639 #> 3180 31443 12789 47265 #> 3181 28068 9857 10269 #> 3182 25158 7970 6997 #> 3183 31407 13103 NA #> 3184 28583 10480 9628 #> 3185 31340 13038 27536 #> 3186 31341 13018 45660 #> 3187 29939 11564 NA #> 3188 27744 9676 8850 #> 3189 25884 8318 7166 #> 3190 30663 12928 49298 #> 3191 30404 12876 51594 #> 3192 24880 7539 6245 #> 3193 32430 14207 13543 #> 3194 29021 10750 9850 #> 3195 31333 13394 26637 #> 3196 30358 12034 NA #> 3197 30825 12474 49127 #> 3198 32567 14244 49074 #> 3199 29027 NA 10044 #> 3200 29952 11443 11343 #> 3201 27680 9313 8787 #> 3202 28801 10723 9698 #> 3203 24112 6653 5659 #> 3204 31587 12912 49274 #> 3205 29577 10708 10935 #> 3206 24977 7542 6342 #> 3207 30311 12241 NA #> 3208 32572 14274 13581 #> 3209 29086 10678 10117 #> 3210 24219 6822 5767 #> 3211 27650 9300 8757 #> 3212 8422 5874 3784 #> 3213 23989 6645 5539 #> 3214 7864 4991 3060 #> 3215 7121 4677 1972 #> 3216 32106 13696 NA #> 3217 31455 13143 49138 #> 3218 32478 13853 33180 #> 3219 24590 7144 5820 #> 3220 27269 9093 8471 #> 3221 29363 11093 10763 #> 3222 30508 12478 12306 #> 3223 26989 9194 8102 #> 3224 30560 11995 12308 #> 3225 31395 12816 49234 #> 3226 26978 9192 8450 #> 3227 7956 4972 3152 #> 3228 26922 9228 8525 #> 3229 9441 6903 5101 #> 3230 9376 6217 5035 #> 3231 31237 12831 49136 #> 3232 28879 11411 9753 #> 3233 8291 5370 3653 #> 3234 32531 14227 49084 #> 3235 8275 5368 3637 #> 3236 9311 6102 4970 #> 3237 30461 12509 51293 #> 3238 30687 12334 12142 #> 3239 31693 13329 24816 #> 3240 24139 6650 5686 #> 3241 NA 14154 51344 #> 3242 32507 14259 27965 #> 3243 31159 12959 50460 #> 3244 25849 8265 7136 #> 3245 31294 12837 35978 #> 3246 32257 14138 94360 #> 3247 31530 12750 50545 #> 3248 25090 7817 6625 #> 3249 28153 9299 9103 #> 3250 30331 12214 11973 #> 3251 31545 13261 45093 #> 3252 31731 12718 51365 #> 3253 32382 14169 NA #> 3254 32563 14241 60184 #> 3255 25851 8338 7138 #> 3256 31419 NA 32671 #> 3257 27628 9440 8735 #> 3258 30554 12457 12272 #> 3259 30665 12927 46129 #> 3260 32167 14196 28936 #> 3261 30414 11803 12223 #> 3262 25026 7615 6391 #> 3263 32431 14278 46883 #> 3264 30789 11822 12325 #> 3265 29762 11549 11268 #> 3266 29594 11416 10944 #> 3267 28603 10490 9648 #> 3268 25781 8337 7073 #> 3269 30235 11819 11877 #> 3270 30325 12212 11967 #> 3271 26070 8248 7338 #> 3272 31309 12577 33068 #> 3273 28032 10011 9216 #> 3274 30599 12148 12148 #> 3275 8379 6327 3741 #> 3276 9557 7002 5229 #> 3277 30400 11795 38837 #> 3278 32593 14302 45497 #> 3279 24020 6559 5570 #> 3280 32249 14149 46057 #> 3281 30501 12145 12300 #> 3282 26665 8735 7823 #> 3283 31640 13199 NA #> 3284 30657 12429 46317 #> 3285 29732 11448 11151 #> 3286 25415 8439 6848 #> 3287 30289 11789 11931 #> 3288 31311 13235 46194 #> 3289 9538 6354 5390 #> 3290 24888 7440 6253 #> 3291 25750 8126 7044 #> 3292 30817 12592 46707 #> 3293 30684 11809 12139 #> 3294 28951 10714 9862 #> 3295 31536 12677 46073 #> 3296 24036 6543 5586 #> 3297 32637 14337 60159 #> 3298 25889 8352 7169 #> 3299 26630 8702 7788 #> 3300 32284 14108 NA #> 3301 30228 12200 11870 #> 3302 32537 14260 46037 #> 3303 32217 14060 27225 #> 3304 9315 6052 4974 #> 3305 9457 7119 5117 #> 3306 27855 10010 9305 #> 3307 29977 11096 11370 #> 3308 29964 11521 11360 #> 3309 26643 8731 7801 #> 3310 28579 10478 9623 #> 3311 28083 10124 9232 #> 3312 32460 14212 46782 #> 3313 29395 10895 10795 #> 3314 29402 11025 10802 #> 3315 27671 9445 8778 #> 3316 24959 7444 6324 #> 3317 NA 14349 NA #> 3318 30277 11753 11919 #> 3319 31752 13133 46268 #> 3320 27677 9744 8784 #> 3321 32156 14047 NA #> 3322 27228 9086 8230 #> 3323 30593 12452 12084 #> 3324 29863 10965 11237 #> 3325 31639 13198 45239 #> 3326 29676 11046 11072 #> 3327 27888 10123 8960 #> 3328 31458 13144 46092 #> 3329 29583 11298 10958 #> 3330 31569 12668 46350 #> 3331 32635 13604 46178 #> 3332 26688 8703 7846 #> 3333 28647 10765 9743 #> 3334 31656 12741 46225 #> 3335 30260 11811 11902 #> 3336 31677 13048 46885 #> 3337 30567 14176 12285 #> 3338 31691 13204 66955 #> 3339 32335 13952 46832 #> 3340 32525 13676 46378 #> 3341 30506 12444 12302 #> 3342 28500 10298 9545 #> 3343 27058 9119 8211 #> 3344 29840 10972 11223 #> 3345 29187 11450 10271 #> 3346 26309 8604 7689 #> 3347 32350 13957 46318 #> 3348 31581 13259 48864 #> 3349 9373 6337 5032 #> 3350 32583 14275 46039 #> 3351 32620 14325 40799 #> 3352 8340 5394 3702 #> 3353 31344 12694 38924 #> 3354 31778 13377 32654 #> 3355 29850 11741 11244 #> 3356 8842 5717 4379 #> 3357 31378 13389 NA #> 3358 27917 10088 9046 #> 3359 8925 6323 4449 #> 3360 24067 6558 5616 #> 3361 26411 8502 7703 #> 3362 30929 12185 47169 #> 3363 24048 6556 5598 #> 3364 27266 9583 11481 #> 3365 30903 12296 18066 #> 3366 31303 13211 66449 #> 3367 31304 12659 46666 #> 3368 27508 10087 8928 #> 3369 26709 8705 7867 #> 3370 25754 8206 7642 #> 3371 31512 13166 21885 #> 3372 30585 12131 46857 #> 3373 31232 13148 46682 #> 3374 32197 14069 94377 #> 3375 24127 6735 5674 #> 3376 32241 13487 49714 #> 3377 29484 10940 10884 #> 3378 31272 13043 50904 #> 3379 30514 12427 12083 #> 3380 31292 13254 49064 #> 3381 31811 13554 22613 #> 3382 31744 13942 NA #> 3383 30815 12448 49669 #> 3384 31434 13112 50234 #> 3385 31245 13125 51026 #> 3386 28720 10865 9792 #> 3387 31566 12742 51161 #> 3388 31440 13118 66939 #> 3389 32113 13899 58208 #> 3390 30760 12471 12264 #> 3391 30576 12133 50096 #> 3392 31487 13174 50742 #> 3393 32512 13732 26073 #> 3394 30635 12558 49204 #> 3395 27649 9354 8756 #> 3396 32360 13869 58181 #> 3397 30099 11708 11750 #> 3398 31563 13248 50845 #> 3399 30039 11613 11431 #> 3400 32520 13838 NA #> 3401 30471 11964 12062 #> 3402 32340 13799 49887 #> 3403 31661 13239 50920 #> 3404 32453 13571 49864 #> 3405 30220 11958 11862 #> 3406 31717 13316 51019 #> 3407 27740 9775 8846 #> 3408 32100 14034 44987 #> 3409 30857 12250 12348 #> 3410 31504 13160 51015 #> 3411 32291 14140 50783 #> 3412 30424 12355 12038 #> 3413 32181 13731 89295 #> 3414 29473 11243 10873 #> 3415 31780 13381 50667 #> 3416 32446 13698 81293 #> 3417 32190 NA 49816 #> 3418 31663 13240 66953 #> 3419 31468 13367 NA #> 3420 29359 11220 10759 #> 3421 29394 10920 10794 #> 3422 31187 12917 50812 #> 3423 30387 11974 12060 #> 3424 5046 1299 595 #> 3425 29659 11434 NA #> 3426 4269 994 422 #> 3427 27958 9816 NA #> 3428 31361 13093 NA #> 3429 32369 14160 NA #> 3430 26789 8898 7948 #> 3431 29834 11097 NA #> 3432 3727 395 226 #> 3433 28103 9845 9140 #> 3434 9219 5849 NA #> 3435 6243 2832 1223 #> 3436 7505 4661 NA #> 3437 25509 7479 6767 #> 3438 27682 9388 8789 #> 3439 28999 10688 9911 #> 3440 27801 9946 8929 #> 3441 24827 7477 6192 #> 3442 27684 9385 8791 #> 3443 24871 7478 6236 #> 3444 24507 7021 5945 #> 3445 9072 5740 4583 #> 3446 31305 13234 49695 #> 3447 28506 10361 9551 #> 3448 26855 8957 8015 #> 3449 25940 8313 7214 #> 3450 28377 10153 10248 #> 3451 32413 14252 NA #> 3452 28845 10677 9825 #> 3453 27179 9110 8138 #> 3454 26475 8578 7561 #> 3455 31264 13039 49716 #> 3456 9543 6283 5310 #> 3457 8944 5811 4481 #> 3458 25762 8183 7055 #> 3459 25864 8344 7147 #> 3460 25327 7718 6633 #> 3461 27601 9387 8708 #> 3462 26856 8821 8016 #> 3463 32648 14347 35991 #> 3464 7569 7166 2476 #> 3465 28788 10711 9943 #> 3466 27275 9106 8515 #> 3467 24154 6753 5701 #> 3468 27672 9371 8779 #> 3469 24358 7285 6022 #> 3470 27557 9396 8664 #> 3471 8006 5108 2945 #> 3472 25593 7759 6817 #> 3473 32651 13457 38864 #> 3474 27736 9773 8842 #> 3475 28908 10373 9815 #> 3476 28411 10308 9456 #> 3477 23991 6569 5541 #> 3478 25852 8252 7648 #> 3479 26816 8956 7974 #> 3480 24193 6606 5740 #> 3481 24336 7215 5811 #> 3482 31313 13214 51465 #> 3483 31288 12966 50145 #> 3484 27770 9792 8876 #> 3485 25748 8136 7042 #> 3486 28607 10371 9652 #> 3487 28470 10358 9515 #> 3488 26238 8522 7280 #> 3489 9310 6074 4969 #> 3490 28916 10381 9824 #> 3491 28517 10367 9562 #> 3492 7191 4486 2232 #> 3493 27638 9642 8745 #> 3494 6346 3001 1326 #> 3495 28529 10369 9574 #> 3496 28900 10676 10025 #> 3497 28695 10379 10011 #> 3498 25738 8135 7033 #> 3499 31766 13369 50883 #> 3500 32555 14269 51580 #> 3501 24855 7498 6220 #> 3502 9290 6072 4949 #> 3503 32239 13875 NA #> 3504 26743 8720 7902 #> 3505 28528 10370 9573 #> 3506 28560 10471 9605 #> 3507 28943 10717 9962 #> 3508 31511 13173 24758 #> 3509 32514 14230 39380 #> 3510 28707 10617 9998 #> 3511 28597 10336 9642 #> 3512 9277 6056 4936 #> 3513 32607 14315 49691 #> 3514 28467 10350 9512 #> 3515 24890 7454 6255 #> 3516 28565 10378 9610 #> 3517 28998 10709 9910 #> 3518 24826 7475 6191 #> 3519 27543 9369 8650 #> 3520 7455 7122 2539 #> 3521 30970 12983 NA #> 3522 32121 14030 NA #> 3523 24337 7178 5813 #> 3524 8370 5347 3732 #> 3525 27214 9145 8476 #> 3526 31470 12792 NA #> 3527 29231 11192 NA #> 3528 31724 12703 NA #> 3529 32265 14152 NA #> 3530 32433 14279 NA #> 3531 30030 11577 NA #> 3532 29330 10950 10730 #> 3533 32517 14233 NA #> 3534 28611 10495 9656 #> 3535 31217 12908 48637 #> 3536 24808 7466 6173 #> 3537 32308 13747 27584 #> 3538 31263 NA 49938 #> 3539 31442 13120 50551 #> 3540 32606 14311 48536 #> 3541 32245 14142 94362 #> 3542 32505 14217 44949 #> 3543 31694 13330 66959 #> 3544 32296 14095 NA #> 3545 31613 13301 48934 #> 3546 30429 12604 48901 #> 3547 30336 12215 11978 #> 3548 32506 14218 58435 #> 3549 31267 13042 38557 #> 3550 31428 12862 23066 #> 3551 32334 14101 50015 #> 3552 32595 14304 48717 #> 3553 30905 11909 49641 #> 3554 30515 12265 49579 #> 3555 31549 13273 28309 #> 3556 8339 5393 3701 #> 3557 31681 13049 39093 #> 3558 24294 6973 5806 #> 3559 31229 12664 27368 #> 3560 32532 14228 37329 #> 3561 26690 8677 7848 #> 3562 31212 12588 49940 #> 3563 29263 11148 10663 #> 3564 30294 11912 11936 #> 3565 31533 13262 49674 #> 3566 30094 11735 11745 #> 3567 32007 13462 27832 #> 3568 31709 13307 50171 #> 3569 29818 11118 11285 #> 3570 30261 11962 11903 #> 3571 29955 10983 11351 #> 3572 32477 13892 91477 #> 3573 31147 12587 49817 #> 3574 32316 13771 91467 #> 3575 32549 13643 50232 #> 3576 29584 11135 10938 #> 3577 31696 13202 50836 #> 3578 29797 11084 11164 #> 3579 30803 12415 48388 #> 3580 32307 14123 57870 #> 3581 32451 13605 48473 #> 3582 30638 12423 50835 #> 3583 31638 13197 50189 #> 3584 29546 11318 10962 #> 3585 31300 12576 51032 #> 3586 30489 12408 12016 #> 3587 28798 10384 9695 #> 3588 30340 11907 11982 #> 3589 29501 10971 11007 #> 3590 31714 13334 48511 #> 3591 31377 12553 50287 #> 3592 32154 14045 50789 #> 3593 32462 13923 49760 #> 3594 31735 13343 50184 #> 3595 30700 12084 12250 #> 3596 31317 13217 31778 #> 3597 30470 12608 50908 #> 3598 31532 12748 50942 #> 3599 30455 12650 12032 #> 3600 30347 11934 11989 #> 3601 30462 12417 12031 #> 3602 32305 14121 49870 #> 3603 32377 14168 50780 #> 3604 29894 11371 11124 #> 3605 30783 12497 12319 #> 3606 32558 13543 50105 #> 3607 31412 13105 30063 #> 3608 32499 13975 50204 #> 3609 32529 14226 28100 #> 3610 32401 14020 50286 #> 3611 31230 12796 50074 #> 3612 31802 13402 29246 #> 3613 32654 13837 50975 #> 3614 32343 14115 51199 #> 3615 29713 11570 11183 #> 3616 32131 13772 35938 #> 3617 31570 NA 49761 #> 3618 32540 14262 NA #> 3619 32311 14122 94368 #> 3620 28809 10614 9803 #> 3621 29456 11239 10856 #> 3622 31720 13338 50108 #> 3623 31679 13051 27390 #> 3624 32288 14137 75806 #> 3625 31745 13350 50923 #> 3626 30393 12060 48594 #> 3627 31502 13405 50972 #> 3628 31471 13029 45663 #> 3629 32586 14242 37438 #> 3630 31186 12487 49818 #> 3631 32617 14323 50303 #> 3632 900007 10862 10338 #> 3633 29437 11147 10837 #> 3634 31568 13278 49729 #> 3635 29403 11263 10803 #> 3636 30764 14483 12268 #> 3637 32434 13792 39605 #> 3638 29832 11595 11208 #> 3639 28536 10363 9581 #> 3640 28599 10487 9644 #> 3641 31197 13006 51491 #> 3642 30640 12303 12211 #> 3643 32042 13754 50932 #> 3644 30281 11975 11923 #> 3645 31979 13506 51047 #> 3646 31597 13232 18551 #> 3647 31398 NA 50797 #> 3648 29937 11563 11317 #> 3649 30881 12521 12409 #> 3650 29617 11386 11014 #> 3651 29522 11476 10992 #> 3652 30361 12222 12003 #> 3653 30100 11711 11749 #> 3654 28902 10805 10027 #> 3655 29716 11573 11187 #> 3656 31469 13344 NA #> 3657 31472 12755 50272 #> 3658 31290 12717 46597 #> 3659 30198 11794 11840 #> 3660 31438 13116 47025 #> 3661 31559 13246 66954 #> 3662 30847 12980 46330 #> 3663 32353 14178 46342 #> 3664 29675 11532 11071 #> 3665 31697 13332 46856 #> 3666 31596 13231 46243 #> 3667 32090 13858 41770 #> 3668 31674 13046 30713 #> 3669 31285 13249 39334 #> 3670 28217 10097 9160 #> 3671 29919 11346 11340 #> 3672 30323 11817 NA #> 3673 31326 13223 30687 #> 3674 32643 13945 97057 #> 3675 30344 12217 11986 #> 3676 31254 13284 26461 #> 3677 31593 12603 47015 #> 3678 29947 11128 11329 #> 3679 28948 10746 9860 #> 3680 31616 13294 24752 #> 3681 28960 13317 9975 #> 3682 29858 11509 NA #> 3683 31249 13122 29930 #> 3684 29969 11466 11346 #> 3685 32373 14173 NA #> 3686 32587 14240 NA #> 3687 26796 9363 7955 #> 3688 30457 12101 12025 #> 3689 28631 10306 9676 #> 3690 32423 14202 47000 #> 3691 31426 13124 46946 #> 3692 32196 13719 27847 #> 3693 32485 14291 28334 #> 3694 31332 12688 46875 #> 3695 32274 14145 26627 #> 3696 30313 11757 11955 #> 3697 32571 14277 46897 #> 3698 30584 12482 46807 #> 3699 30413 12284 12221 #> 3700 31725 13319 46221 #> 3701 32182 13724 46217 #> 3702 30473 12381 46332 #> 3703 31757 13364 46370 #> 3704 31692 13324 NA #> 3705 28646 10764 9742 #> 3706 32064 13992 NA #> 3707 29434 11140 10834 #> 3708 31453 13141 46976 #> 3709 30910 12981 38173 #> 3710 32209 13916 NA #> 3711 32539 14261 NA #> 3712 32185 14058 37228 #> 3713 30753 12516 12296 #> 3714 32119 14029 26501 #> 3715 31673 12732 46920 #> 3716 32264 14151 60087 #> 3717 32349 13882 45388 #> 3718 32347 NA 46840 #> 3719 29746 11576 11193 #> 3720 31456 12856 15466 #> 3721 30723 12439 12172 #> 3722 31604 13229 46960 #> 3723 29331 11154 10731 #> 3724 29773 11556 11277 #> 3725 32312 14125 46668 #> 3726 30537 11824 12133 #> 3727 28625 10499 9670 #> 3728 32132 13937 38739 #> 3729 30101 11727 NA #> 3730 31628 13292 NA #> 3731 5171 7123 673 #> 3732 31689 12695 NA #> 3733 30113 12197 NA #> 3734 27459 9027 8104 #> 3735 30621 11826 12119 #> 3736 6983 4066 1939 #> 3737 32548 14265 NA #> 3738 8020 7975 3493 #> 3739 28307 10131 9155 #> 3740 30086 12424 NA #> 3741 26422 9083 7410 #> 3742 26468 8389 7573 #> 3743 28905 10693 9812 #> 3744 24979 7562 6344 #> 3745 30967 13419 38062 #> 3746 32166 14088 NA #> 3747 26778 8985 NA #> 3748 32282 13968 46604 #> 3749 29373 11007 10773 #> 3750 31804 13404 NA #> 3751 26346 8499 7305 #> 3752 25767 8033 7059 #> 3753 28491 10163 9536 #> 3754 26738 8748 7897 #> 3755 31560 12652 46580 #> 3756 31734 13078 66453 #> 3757 31688 12700 46594 #> 3758 23976 6452 5526 #> 3759 31365 12657 46387 #> 3760 31695 13183 25079 #> 3761 27429 8991 8374 #> 3762 32479 13518 NA #> 3763 29260 10730 10660 #> 3764 31173 12491 38321 #> 3765 30800 12309 39739 #> 3766 6624 3153 1693 #> 3767 29812 10915 11279 #> 3768 31308 13213 66929 #> 3769 27663 9701 8770 #> 3770 7389 4313 2430 #> 3771 6760 3763 1722 #> 3772 31252 12913 46542 #> 3773 29284 10733 10685 #> 3774 31169 12770 46586 #> 3775 32634 14336 39415 #> 3776 31330 13068 66934 #> 3777 29334 10978 10734 #> 3778 31490 12638 34874 #> 3779 31351 13086 29577 #> 3780 29327 11090 10727 #> 3781 9269 5973 4928 #> 3782 26639 8749 7797 #> 3783 25732 8056 7028 #> 3784 26317 8374 7423 #> 3785 31239 13151 54507 #> 3786 6337 3014 1317 #> 3787 29722 11441 11144 #> 3788 32152 14040 27308 #> 3789 25711 7237 7007 #> 3790 30328 11835 11970 #> 3791 7406 4574 2447 #> 3792 29870 10943 11253 #> 3793 32327 13908 46399 #> 3794 28463 10175 9508 #> 3795 28272 9550 9286 #> 3796 29661 10898 11057 #> 3797 32419 13452 35859 #> 3798 30351 12219 11994 #> 3799 29085 10568 10115 #> 3800 32238 14082 45826 #> 3801 28887 10188 9761 #> 3802 25238 7666 6432 #> 3803 28714 10185 9993 #> 3804 31514 12867 35977 #> 3805 31781 13379 45966 #> 3806 29575 11410 10933 #> 3807 31795 13395 45705 #> 3808 31825 13936 NA #> 3809 29805 10956 11265 #> 3810 24858 7359 6223 #> 3811 31595 12894 23614 #> 3812 27597 9519 8704 #> 3813 26596 8083 8547 #> 3814 28283 9841 9244 #> 3815 26810 8757 7968 #> 3816 32466 13500 30806 #> 3817 30873 12419 NA #> 3818 8850 5663 4387 #> 3819 31653 12744 45802 #> 3820 32400 14061 94358 #> 3821 29694 11265 11090 #> 3822 26024 8454 7457 #> 3823 32226 13524 35314 #> 3824 31423 13108 26401 #> 3825 28865 10191 9717 #> 3826 28044 9891 9047 #> 3827 29599 11005 10907 #> 3828 28537 10082 9582 #> 3829 31338 12475 29310 #> 3830 29700 10969 11104 #> 3831 8266 5202 3628 #> 3832 31196 13005 45732 #> 3833 27167 9062 8283 #> 3834 28513 10066 9558 #> 3835 28014 9535 9295 #> 3836 30915 12327 45898 #> 3837 32579 14276 45943 #> 3838 27666 9539 8773 #> 3839 30703 11770 45841 #> 3840 31805 13409 NA #> 3841 32597 14299 45974 #> 3842 8821 5662 4358 #> 3843 31241 12943 27875 #> 3844 26878 8931 8101 #> 3845 24400 6833 6007 #> 3846 29518 11209 10988 #> 3847 31798 13398 40196 #> 3848 25816 8028 7106 #> 3849 900379 NA 39604 #> 3850 32615 14320 NA #> 3851 32621 14326 95845 #> 3852 27583 9350 8690 #> 3853 30370 11759 12202 #> 3854 30365 11760 12006 #> 3855 25481 8022 6440 #> 3856 31339 13079 40665 #> 3857 30658 12229 26758 #> 3858 29715 11012 11186 #> 3859 8790 5578 4327 #> 3860 29178 10511 9889 #> 3861 30245 11769 11887 #> 3862 29993 11340 11383 #> 3863 8801 5627 4338 #> 3864 26853 8766 8013 #> 3865 28562 10187 9607 #> 3866 31748 13355 NA #> 3867 28526 10149 9571 #> 3868 28185 9280 9187 #> 3869 28953 10195 9864 #> 3870 31575 12895 45861 #> 3871 30696 12344 12197 #> 3872 7306 4320 2347 #> 3873 29542 11197 10982 #> 3874 31590 13021 45948 #> 3875 27821 9238 8906 #> 3876 8926 5785 4463 #> 3877 24913 7367 6278 #> 3878 28494 10186 9539 #> 3879 27622 9282 8729 #> 3880 28847 10196 9827 #> 3881 31425 13130 25681 #> 3882 32376 14166 29027 #> 3883 31396 12893 24942 #> 3884 24843 7250 6208 #> 3885 27709 9360 8816 #> 3886 27790 9534 9184 #> 3887 28483 10189 9528 #> 3888 31622 12783 28564 #> 3889 30496 12891 12022 #> 3890 31704 13312 26957 #> 3891 26787 8760 7946 #> 3892 32508 13638 38565 #> 3893 31029 12620 45664 #> 3894 26079 8937 7361 #> 3895 29680 11125 11076 #> 3896 31685 13057 45695 #> 3897 32395 13951 45985 #> 3898 25777 8030 7069 #> 3899 30650 11773 45671 #> 3900 29821 10938 11286 #> 3901 29471 10997 10871 #> 3902 32332 14090 NA #> 3903 23987 6449 5537 #> 3904 24318 6482 5863 #> 3905 32279 13657 45989 #> 3906 29184 10636 10292 #> 3907 28874 10197 9839 #> 3908 24932 7253 6297 #> 3909 30717 12339 12167 #> 3910 30234 11778 11876 #> 3911 30319 11762 11958 #> 3912 32043 13637 35170 #> 3913 32129 14011 34388 #> 3914 26685 8758 7843 #> 3915 30354 11706 11997 #> 3916 31787 13385 38976 #> 3917 30533 12336 12129 #> 3918 24860 7361 6225 #> 3919 31275 13027 47518 #> 3920 30398 12116 NA #> 3921 32170 13832 45711 #> 3922 32162 14042 94355 #> 3923 26719 8600 7878 #> 3924 31335 13326 66918 #> 3925 32473 13665 30228 #> 3926 28618 10200 9663 #> 3927 31564 12904 45939 #> 3928 30587 12313 45938 #> 3929 31278 13070 45993 #> 3930 23984 6478 5534 #> 3931 9560 5816 4914 #> 3932 8781 5579 4318 #> 3933 31485 12947 30845 #> 3934 31082 12463 45996 #> 3935 26684 8620 7842 #> 3936 31466 13024 NA #> 3937 29368 10989 10768 #> 3938 31493 13177 NA #> 3939 25741 8058 7035 #> 3940 31360 12733 49155 #> 3941 32149 14255 56268 #> 3942 32510 13694 91420 #> 3943 31259 13287 49150 #> 3944 31448 13146 49474 #> 3945 27710 9339 8817 #> 3946 32394 13695 49422 #> 3947 28585 10386 9630 #> 3948 29845 11500 11226 #> 3949 27081 8688 8361 #> 3950 27549 9288 8656 #> 3951 28828 11188 9774 #> 3952 30557 12135 12274 #> 3953 31363 13305 66920 #> 3954 25091 7530 6621 #> 3955 NA 14084 34876 #> 3956 29022 10540 9851 #> 3957 28830 10692 9776 #> 3958 26288 8476 7396 #> 3959 29286 10985 10687 #> 3960 31611 12745 49041 #> 3961 32260 13767 51413 #> 3962 30334 12000 11976 #> 3963 24603 7057 5924 #> 3964 31306 13212 49046 #> 3965 26866 8940 8026 #> 3966 29833 11104 11291 #> 3967 24326 7186 5906 #> 3968 32108 13922 36125 #> 3969 32184 13980 51430 #> 3970 29829 11593 11206 #> 3971 29061 10566 10055 #> 3972 30485 13408 12012 #> 3973 29361 11050 10761 #> 3974 24259 6909 5779 #> 3975 27653 9587 8760 #> 3976 29216 10829 10341 #> 3977 31763 13360 49014 #> 3978 30236 12003 11878 #> 3979 30807 13165 12199 #> 3980 32228 13578 33565 #> 3981 31664 13241 49063 #> 3982 26641 8685 7799 #> 3983 32591 13902 49066 #> 3984 28889 10391 10015 #> 3985 32165 14195 30633 #> 3986 26734 8780 7893 #> 3987 24046 6648 5596 #> 3988 28712 10665 9991 #> 3989 30713 12407 12165 #> 3990 30578 12425 51176 #> 3991 31296 13065 51402 #> 3992 30460 12147 12026 #> 3993 28870 10603 9834 #> 3994 30961 12931 10226 #> 3995 30300 12006 11942 #> 3996 32468 13644 27380 #> 3997 26484 8495 7593 #> 3998 31829 13940 NA #> 3999 24109 6651 5656 #> 4000 30672 12591 12216 #> 4001 28497 10454 9542 #> 4002 30631 12122 39381 #> 4003 23980 6643 5530 #> 4004 30673 12005 51415 #> 4005 30447 12648 51588 #> 4006 24887 7537 6252 #> 4007 30695 12594 12196 #> 4008 30838 12984 12331 #> 4009 26694 8689 7852 #> 4010 30824 12522 12181 #> 4011 28441 10265 9486 #> 4012 27760 9783 8866 #> 4013 27572 9287 8679 #> 4014 9181 5836 4623 #> 4015 25714 8013 7010 #> 4016 24836 7436 6201 #> 4017 28956 10705 9867 #> 4018 28498 10261 9543 #> 4019 27765 9425 8871 #> 4020 25001 7626 6366 #> 4021 24879 7631 6244 #> 4022 9604 7191 5426 #> 4023 27192 9100 8460 #> 4024 28454 10291 9499 #> 4025 27669 9416 8776 #> 4026 28507 10286 9552 #> 4027 27033 9090 8496 #> 4028 24570 6955 5847 #> 4029 25751 8124 7045 #> 4030 29004 10690 9917 #> 4031 8119 5150 3459 #> 4032 27530 9279 8637 #> 4033 26918 9174 8501 #> 4034 27510 9244 9032 #> 4035 28628 10501 9673 #> 4036 29159 10613 10203 #> 4037 27803 9970 9137 #> 4038 28676 10681 10124 #> 4039 25911 8348 7657 #> 4040 8282 5296 3644 #> 4041 32314 14120 26892 #> 4042 32153 14041 38702 #> 4043 28688 10661 10135 #> 4044 31546 13271 47181 #> 4045 31751 13357 47268 #> 4046 9505 6145 5165 #> 4047 29857 11124 11247 #> 4048 31719 13322 66965 #> 4049 30240 11896 11882 #> 4050 32324 14071 47096 #> 4051 31682 13054 47039 #> 4052 32313 14119 47071 #> 4053 8907 5783 4455 #> 4054 6663 3172 1609 #> 4055 29465 10820 10865 #> 4056 28975 10558 9884 #> 4057 29034 10554 10034 #> 4058 7755 4732 2951 #> 4059 29422 11139 10822 #> 4060 25744 8064 7038 #> 4061 25838 8114 7128 #> 4062 28964 10560 9980 #> 4063 30756 11848 12347 #> 4064 8416 5403 3778 #> 4065 31491 12713 47171 #> 4066 31346 13082 47321 #> 4067 29451 11236 10851 #> 4068 30314 11694 11956 #> 4069 28608 10493 9653 #> 4070 31770 12753 47249 #> 4071 28253 9937 9128 #> 4072 30008 11277 11411 #> 4073 28480 10246 9525 #> 4074 31684 13056 47269 #> 4075 29055 10769 10072 #> 4076 27914 9808 9303 #> 4077 28642 12382 9687 #> 4078 29508 11468 10904 #> 4079 32647 14346 NA #> 4080 30048 11619 11462 #> 4081 26729 8784 7888 #> 4082 29532 11492 10993 #> 4083 24045 6530 5595 #> 4084 29046 10700 10070 #> 4085 30958 12486 66437 #> 4086 24961 7424 6326 #> 4087 28215 10016 8954 #> 4088 24108 6535 5655 #> 4089 24942 7384 6307 #> 4090 30888 12646 51667 #> 4091 28511 10213 9556 #> 4092 31715 13203 31983 #> 4093 31528 13416 39669 #> 4094 31364 13906 66919 #> 4095 8838 5709 4375 #> 4096 32262 14134 40455 #> 4097 31746 13352 47197 #> 4098 28192 9498 9070 #> 4099 25992 8606 7515 #> 4100 31234 13149 47430 #> 4101 30441 12975 47207 #> 4102 31255 12948 47243 #> 4103 32127 14010 27260 #> 4104 28617 10254 9662 #> 4105 27566 9241 8673 #> 4106 31501 13162 47299 #> 4107 6791 3872 1753 #> 4108 26253 8516 7274 #> 4109 27580 9292 8687 #> 4110 30702 12333 25432 #> 4111 27213 8980 8286 #> 4112 32564 14249 NA #> 4113 29913 10917 11335 #> 4114 26670 8787 7828 #> 4115 7924 4888 3120 #> 4116 30765 12386 12182 #> 4117 25826 8042 7116 #> 4118 31635 13035 47133 #> 4119 9472 6130 5132 #> 4120 30527 12123 12126 #> 4121 28941 10255 9960 #> 4122 28348 9920 9400 #> 4123 27577 9242 8684 #> 4124 28590 10484 9635 #> 4125 29623 11422 11020 #> 4126 26050 9091 7693 #> 4127 29414 11212 NA #> 4128 29728 10777 11148 #> 4129 28813 10626 9807 #> 4130 28021 9654 9107 #> 4131 9444 6124 5104 #> 4132 24608 6871 5795 #> 4133 31614 12793 23189 #> 4134 31680 13052 25172 #> 4135 27926 9901 8981 #> 4136 32128 13437 47580 #> 4137 29963 11647 11359 #> 4138 32352 13687 47344 #> 4139 32094 13666 29686 #> 4140 25774 8041 7066 #> 4141 27050 9136 8392 #> 4142 24916 7415 6281 #> 4143 29944 11397 11326 #> 4144 31276 13290 47367 #> 4145 29537 11496 10977 #> 4146 31747 12583 NA #> 4147 31298 13209 47202 #> 4148 30603 12342 12154 #> 4149 29504 11132 11010 #> 4150 30388 11894 12055 #> 4151 23996 6455 5546 #> 4152 25820 8113 7110 #> 4153 32173 14188 84058 #> 4154 24834 7412 6199 #> 4155 31202 12714 48991 #> 4156 29879 10946 11220 #> 4157 29587 11300 10960 #> 4158 28456 10127 9501 #> 4159 31515 13169 66950 #> 4160 29475 11001 10875 #> 4161 30808 12307 48033 #> 4162 30482 12364 12010 #> 4163 31642 13023 47790 #> 4164 29320 10899 10720 #> 4165 8813 5691 4350 #> 4166 28475 10211 9520 #> headshot_url #> 1 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115972.png #> 2 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128707.png #> 3 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038999.png #> 4 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13975.png #> 5 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3821572.png #> 6 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977742.png #> 7 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9610.png #> 8 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15817.png #> 9 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13980.png #> 10 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14940.png #> 11 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035402.png #> 12 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123966.png #> 13 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4043089.png #> 14 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2579163.png #> 15 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15782.png #> 16 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929648.png #> 17 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3138765.png #> 18 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15906.png #> 19 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17017.png #> 20 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2517779.png #> 21 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574582.png #> 22 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035666.png #> 23 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915282.png #> 24 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577466.png #> 25 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3910660.png #> 26 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971881.png #> 27 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15025.png #> 28 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115482.png #> 29 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045286.png #> 30 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15808.png #> 31 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122145.png #> 32 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512538.png #> 33 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/8461.png #> 34 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043234.png #> 35 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16486.png #> 36 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4334300.png #> 37 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16820.png #> 38 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576482.png #> 39 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3894901.png #> 40 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047582.png #> 41 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2514270.png #> 42 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980504.png #> 43 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042895.png #> 44 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971432.png #> 45 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051925.png #> 46 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040180.png #> 47 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14927.png #> 48 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046605.png #> 49 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043197.png #> 50 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576809.png #> 51 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035875.png #> 52 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035462.png #> 53 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15241.png #> 54 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13292.png #> 55 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035452.png #> 56 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9709.png #> 57 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/5713.png #> 58 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917315.png #> 59 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040206.png #> 60 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577189.png #> 61 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979843.png #> 62 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3119195.png #> 63 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052143.png #> 64 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242873.png #> 65 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978124.png #> 66 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039274.png #> 67 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971605.png #> 68 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3859100.png #> 69 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127287.png #> 70 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914630.png #> 71 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15035.png #> 72 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120434.png #> 73 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576585.png #> 74 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13998.png #> 75 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971048.png #> 76 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052166.png #> 77 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115981.png #> 78 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2566659.png #> 79 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917292.png #> 80 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970726.png #> 81 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4212989.png #> 82 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4198679.png #> 83 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124537.png #> 84 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3894883.png #> 85 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16172.png #> 86 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914328.png #> 87 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15795.png #> 88 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124369.png #> 89 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4373937.png #> 90 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4048717.png #> 91 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/5528.png #> 92 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895856.png #> 93 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122168.png #> 94 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12616.png #> 95 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126302.png #> 96 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17211.png #> 97 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4360643.png #> 98 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16718.png #> 99 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982866.png #> 100 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4239995.png #> 101 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915437.png #> 102 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4048718.png #> 103 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3925358.png #> 104 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16882.png #> 105 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15881.png #> 106 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915122.png #> 107 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3858276.png #> 108 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054962.png #> 109 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15936.png #> 110 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980100.png #> 111 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134315.png #> 112 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14020.png #> 113 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051376.png #> 114 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124015.png #> 115 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576492.png #> 116 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4411771.png #> 117 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2517230.png #> 118 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035494.png #> 119 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17315.png #> 120 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13993.png #> 121 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2587711.png #> 122 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4044138.png #> 123 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3672833.png #> 124 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049899.png #> 125 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048898.png #> 126 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16449.png #> 127 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4243009.png #> 128 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976545.png #> 129 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3055105.png #> 130 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051852.png #> 131 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120810.png #> 132 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3137087.png #> 133 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050073.png #> 134 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15151.png #> 135 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916449.png #> 136 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11237.png #> 137 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040535.png #> 138 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/5615.png #> 139 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886841.png #> 140 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977644.png #> 141 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123969.png #> 142 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125403.png #> 143 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123944.png #> 144 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976099.png #> 145 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045128.png #> 146 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15874.png #> 147 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3157727.png #> 148 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16713.png #> 149 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16247.png #> 150 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127304.png #> 151 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14099.png #> 152 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3924365.png #> 153 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3118954.png #> 154 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3925357.png #> 155 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917914.png #> 156 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037235.png #> 157 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4366710.png #> 158 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13982.png #> 159 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4052137.png #> 160 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126002.png #> 161 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115378.png #> 162 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051889.png #> 163 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115255.png #> 164 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037481.png #> 165 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516865.png #> 166 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3863820.png #> 167 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576733.png #> 168 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035112.png #> 169 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578378.png #> 170 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16948.png #> 171 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976244.png #> 172 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13963.png #> 173 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4027919.png #> 174 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912545.png #> 175 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126356.png #> 176 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054841.png #> 177 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047188.png #> 178 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915255.png #> 179 <NA> #> 180 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914477.png #> 181 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045130.png #> 182 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929846.png #> 183 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115914.png #> 184 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915186.png #> 185 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053044.png #> 186 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14964.png #> 187 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035245.png #> 188 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895837.png #> 189 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115492.png #> 190 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915837.png #> 191 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11284.png #> 192 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125872.png #> 193 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15973.png #> 194 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2975417.png #> 195 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14018.png #> 196 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037650.png #> 197 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912157.png #> 198 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046551.png #> 199 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576569.png #> 200 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15792.png #> 201 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242247.png #> 202 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054842.png #> 203 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15683.png #> 204 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122141.png #> 205 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036153.png #> 206 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14202.png #> 207 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242207.png #> 208 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2579634.png #> 209 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122766.png #> 210 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040037.png #> 211 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040615.png #> 212 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042445.png #> 213 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15264.png #> 214 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3961466.png #> 215 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3060403.png #> 216 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915184.png #> 217 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13848.png #> 218 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15875.png #> 219 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16857.png #> 220 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054971.png #> 221 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9789.png #> 222 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035671.png #> 223 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916387.png #> 224 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14875.png #> 225 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116172.png #> 226 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13981.png #> 227 <NA> #> 228 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051926.png #> 229 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241985.png #> 230 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038441.png #> 231 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577139.png #> 232 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13845.png #> 233 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045463.png #> 234 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039713.png #> 235 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16004.png #> 236 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12622.png #> 237 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980153.png #> 238 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116370.png #> 239 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2517074.png #> 240 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915136.png #> 241 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116365.png #> 242 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915400.png #> 243 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2511973.png #> 244 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574591.png #> 245 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17348.png #> 246 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932423.png #> 247 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4043161.png #> 248 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13215.png #> 249 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576581.png #> 250 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916204.png #> 251 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515962.png #> 252 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241372.png #> 253 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728254.png #> 254 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3909416.png #> 255 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16945.png #> 256 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040628.png #> 257 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039050.png #> 258 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17258.png #> 259 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2514122.png #> 260 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929631.png #> 261 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16385.png #> 262 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042717.png #> 263 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15124.png #> 264 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971734.png #> 265 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576665.png #> 266 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895791.png #> 267 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916577.png #> 268 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16898.png #> 269 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3133440.png #> 270 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057524.png #> 271 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121003.png #> 272 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3672862.png #> 273 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15960.png #> 274 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3957672.png #> 275 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13245.png #> 276 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16751.png #> 277 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240585.png #> 278 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051371.png #> 279 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14320.png #> 280 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980098.png #> 281 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15802.png #> 282 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577078.png #> 283 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117255.png #> 284 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982857.png #> 285 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4262273.png #> 286 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971883.png #> 287 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057899.png #> 288 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039303.png #> 289 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512577.png #> 290 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15879.png #> 291 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040166.png #> 292 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917232.png #> 293 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127313.png #> 294 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929950.png #> 295 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895831.png #> 296 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240528.png #> 297 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051398.png #> 298 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127075.png #> 299 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035232.png #> 300 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15964.png #> 301 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976249.png #> 302 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16475.png #> 303 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046287.png #> 304 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976549.png #> 305 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039396.png #> 306 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15948.png #> 307 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240689.png #> 308 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052600.png #> 309 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3918298.png #> 310 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035676.png #> 311 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976516.png #> 312 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16944.png #> 313 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14167.png #> 314 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4420894.png #> 315 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040629.png #> 316 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040761.png #> 317 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15979.png #> 318 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2519038.png #> 319 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917159.png #> 320 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886808.png #> 321 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3707061.png #> 322 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051324.png #> 323 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2514244.png #> 324 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977954.png #> 325 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15724.png #> 326 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930086.png #> 327 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2582410.png #> 328 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125999.png #> 329 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039505.png #> 330 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14215.png #> 331 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122818.png #> 332 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115315.png #> 333 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128724.png #> 334 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3085107.png #> 335 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976212.png #> 336 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16804.png #> 337 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043841.png #> 338 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16016.png #> 339 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15349.png #> 340 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13226.png #> 341 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4243537.png #> 342 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242540.png #> 343 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16847.png #> 344 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17196.png #> 345 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3928936.png #> 346 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3843769.png #> 347 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3943270.png #> 348 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14989.png #> 349 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046679.png #> 350 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051929.png #> 351 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046353.png #> 352 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121552.png #> 353 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040506.png #> 354 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241889.png #> 355 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035290.png #> 356 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3138733.png #> 357 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16877.png #> 358 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126238.png #> 359 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4043169.png #> 360 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139108.png #> 361 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115456.png #> 362 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035726.png #> 363 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126362.png #> 364 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972362.png #> 365 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259594.png #> 366 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035631.png #> 367 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051766.png #> 368 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3734467.png #> 369 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577392.png #> 370 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17071.png #> 371 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035495.png #> 372 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046721.png #> 373 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051369.png #> 374 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15862.png #> 375 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035407.png #> 376 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4212884.png #> 377 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915304.png #> 378 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576639.png #> 379 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916943.png #> 380 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259480.png #> 381 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3163375.png #> 382 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16741.png #> 383 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124084.png #> 384 <NA> #> 385 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14938.png #> 386 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15070.png #> 387 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15373.png #> 388 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978313.png #> 389 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17401.png #> 390 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053047.png #> 391 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3928928.png #> 392 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917673.png #> 393 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035177.png #> 394 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11759.png #> 395 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17475.png #> 396 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3924357.png #> 397 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16728.png #> 398 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051308.png #> 399 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115252.png #> 400 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3791110.png #> 401 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116642.png #> 402 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4261020.png #> 403 <NA> #> 404 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117251.png #> 405 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3025433.png #> 406 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4044133.png #> 407 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577740.png #> 408 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123303.png #> 409 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4047661.png #> 410 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2973051.png #> 411 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13242.png #> 412 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912487.png #> 413 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4045305.png #> 414 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980120.png #> 415 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035426.png #> 416 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916749.png #> 417 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2531358.png #> 418 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977629.png #> 419 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042417.png #> 420 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917166.png #> 421 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4294520.png #> 422 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048897.png #> 423 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039968.png #> 424 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574808.png #> 425 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121427.png #> 426 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3138760.png #> 427 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915416.png #> 428 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046401.png #> 429 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2591718.png #> 430 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577346.png #> 431 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129307.png #> 432 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14139.png #> 433 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916126.png #> 434 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578317.png #> 435 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3860287.png #> 436 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16715.png #> 437 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4243253.png #> 438 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051921.png #> 439 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045278.png #> 440 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4294837.png #> 441 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036651.png #> 442 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115257.png #> 443 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15235.png #> 444 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969944.png #> 445 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3960454.png #> 446 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2566034.png #> 447 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4257195.png #> 448 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13984.png #> 449 <NA> #> 450 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969921.png #> 451 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574891.png #> 452 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3924310.png #> 453 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16831.png #> 454 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14984.png #> 455 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4376288.png #> 456 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3894849.png #> 457 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4032052.png #> 458 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972304.png #> 459 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912245.png #> 460 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129290.png #> 461 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16035.png #> 462 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241422.png #> 463 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17427.png #> 464 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034949.png #> 465 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915189.png #> 466 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917016.png #> 467 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124779.png #> 468 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15805.png #> 469 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577145.png #> 470 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15074.png #> 471 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128303.png #> 472 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16710.png #> 473 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116368.png #> 474 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15867.png #> 475 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14572.png #> 476 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15846.png #> 477 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117922.png #> 478 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969924.png #> 479 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16952.png #> 480 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16863.png #> 481 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039707.png #> 482 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14877.png #> 483 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16252.png #> 484 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127335.png #> 485 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4042808.png #> 486 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3066158.png #> 487 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035538.png #> 488 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16020.png #> 489 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054847.png #> 490 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13419.png #> 491 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979595.png #> 492 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3060134.png #> 493 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979499.png #> 494 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16848.png #> 495 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15096.png #> 496 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4362648.png #> 497 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982484.png #> 498 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970262.png #> 499 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4258595.png #> 500 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3940587.png #> 501 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13232.png #> 502 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16318.png #> 503 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10453.png #> 504 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2580216.png #> 505 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045164.png #> 506 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035015.png #> 507 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035019.png #> 508 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043134.png #> 509 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059918.png #> 510 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040655.png #> 511 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14100.png #> 512 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3909300.png #> 513 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050487.png #> 514 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16799.png #> 515 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15807.png #> 516 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17172.png #> 517 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512172.png #> 518 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051407.png #> 519 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576283.png #> 520 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126245.png #> 521 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042619.png #> 522 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045120.png #> 523 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115308.png #> 524 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042785.png #> 525 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3061106.png #> 526 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125356.png #> 527 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575171.png #> 528 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240624.png #> 529 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982632.png #> 530 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919512.png #> 531 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051911.png #> 532 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116082.png #> 533 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121416.png #> 534 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039029.png #> 535 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037633.png #> 536 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2508191.png #> 537 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14994.png #> 538 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13311.png #> 539 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15844.png #> 540 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915388.png #> 541 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515319.png #> 542 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046557.png #> 543 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047571.png #> 544 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128752.png #> 545 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895869.png #> 546 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040622.png #> 547 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16801.png #> 548 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3821683.png #> 549 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15091.png #> 550 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917142.png #> 551 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116724.png #> 552 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14519.png #> 553 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917992.png #> 554 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3112083.png #> 555 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040621.png #> 556 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052660.png #> 557 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3918330.png #> 558 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10686.png #> 559 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929801.png #> 560 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979632.png #> 561 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977670.png #> 562 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128815.png #> 563 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2580666.png #> 564 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12669.png #> 565 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915776.png #> 566 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915511.png #> 567 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042876.png #> 568 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577128.png #> 569 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574511.png #> 570 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035222.png #> 571 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3693033.png #> 572 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116389.png #> 573 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116385.png #> 574 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15826.png #> 575 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15877.png #> 576 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051388.png #> 577 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046382.png #> 578 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915532.png #> 579 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040726.png #> 580 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576789.png #> 581 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915106.png #> 582 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914371.png #> 583 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040470.png #> 584 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972331.png #> 585 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574576.png #> 586 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127310.png #> 587 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3923392.png #> 588 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13983.png #> 589 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3699902.png #> 590 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3921564.png #> 591 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919557.png #> 592 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4239993.png #> 593 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977800.png #> 594 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045144.png #> 595 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123986.png #> 596 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3931391.png #> 597 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052177.png #> 598 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16001.png #> 599 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3691031.png #> 600 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039016.png #> 601 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2566591.png #> 602 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036898.png #> 603 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035437.png #> 604 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16927.png #> 605 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971632.png #> 606 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915535.png #> 607 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038437.png #> 608 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3153653.png #> 609 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116679.png #> 610 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2511523.png #> 611 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4334405.png #> 612 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242208.png #> 613 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052125.png #> 614 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13939.png #> 615 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917852.png #> 616 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2981511.png #> 617 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912553.png #> 618 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037459.png #> 619 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4048257.png #> 620 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046907.png #> 621 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122132.png #> 622 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120964.png #> 623 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14982.png #> 624 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13965.png #> 625 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039052.png #> 626 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15811.png #> 627 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046343.png #> 628 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043112.png #> 629 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976194.png #> 630 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050122.png #> 631 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040499.png #> 632 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974317.png #> 633 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16740.png #> 634 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040626.png #> 635 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045474.png #> 636 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049575.png #> 637 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3676763.png #> 638 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052413.png #> 639 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17082.png #> 640 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040983.png #> 641 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14214.png #> 642 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125073.png #> 643 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242206.png #> 644 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116667.png #> 645 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3138834.png #> 646 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576489.png #> 647 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3131775.png #> 648 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15379.png #> 649 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051775.png #> 650 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3936185.png #> 651 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049872.png #> 652 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15168.png #> 653 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052587.png #> 654 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915381.png #> 655 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929828.png #> 656 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128720.png #> 657 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139602.png #> 658 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059915.png #> 659 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914450.png #> 660 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046700.png #> 661 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3910402.png #> 662 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3859006.png #> 663 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976639.png #> 664 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241482.png #> 665 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16076.png #> 666 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116135.png #> 667 <NA> #> 668 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2509370.png #> 669 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976213.png #> 670 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4384564.png #> 671 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3910156.png #> 672 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979534.png #> 673 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040774.png #> 674 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043275.png #> 675 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3948283.png #> 676 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123076.png #> 677 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128439.png #> 678 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3924367.png #> 679 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971830.png #> 680 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059760.png #> 681 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040137.png #> 682 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039725.png #> 683 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16733.png #> 684 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047876.png #> 685 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16790.png #> 686 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578369.png #> 687 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4258195.png #> 688 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042910.png #> 689 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4249496.png #> 690 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917569.png #> 691 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2573307.png #> 692 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035788.png #> 693 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15793.png #> 694 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2566609.png #> 695 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15108.png #> 696 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979655.png #> 697 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4243831.png #> 698 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040966.png #> 699 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977756.png #> 700 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11363.png #> 701 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977689.png #> 702 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052101.png #> 703 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17474.png #> 704 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045207.png #> 705 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042718.png #> 706 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035425.png #> 707 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040572.png #> 708 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116387.png #> 709 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2573317.png #> 710 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917006.png #> 711 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13988.png #> 712 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930024.png #> 713 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16802.png #> 714 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035660.png #> 715 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040479.png #> 716 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3928979.png #> 717 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14987.png #> 718 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14939.png #> 719 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3008150.png #> 720 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4042141.png #> 721 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577278.png #> 722 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574009.png #> 723 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241221.png #> 724 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3892883.png #> 725 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15653.png #> 726 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16709.png #> 727 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4033748.png #> 728 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3821577.png #> 729 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14993.png #> 730 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574282.png #> 731 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3138677.png #> 732 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052896.png #> 733 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116097.png #> 734 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17266.png #> 735 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932336.png #> 736 <NA> #> 737 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13284.png #> 738 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039075.png #> 739 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9349.png #> 740 <NA> #> 741 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14723.png #> 742 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972515.png #> 743 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14012.png #> 744 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895785.png #> 745 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577417.png #> 746 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16809.png #> 747 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916148.png #> 748 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038815.png #> 749 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038539.png #> 750 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051392.png #> 751 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122135.png #> 752 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929795.png #> 753 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048698.png #> 754 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034522.png #> 755 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895830.png #> 756 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4686629.png #> 757 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728250.png #> 758 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512504.png #> 759 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13978.png #> 760 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120738.png #> 761 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577302.png #> 762 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915834.png #> 763 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2991767.png #> 764 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117256.png #> 765 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2514206.png #> 766 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036275.png #> 767 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2968204.png #> 768 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115928.png #> 769 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122430.png #> 770 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036335.png #> 771 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121409.png #> 772 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976499.png #> 773 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036348.png #> 774 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241389.png #> 775 <NA> #> 776 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126095.png #> 777 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4032749.png #> 778 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035448.png #> 779 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040013.png #> 780 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16842.png #> 781 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515641.png #> 782 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037647.png #> 783 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2613234.png #> 784 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037216.png #> 785 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3894830.png #> 786 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976259.png #> 787 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13254.png #> 788 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3843234.png #> 789 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16562.png #> 790 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115250.png #> 791 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971248.png #> 792 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929850.png #> 793 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117249.png #> 794 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969860.png #> 795 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16837.png #> 796 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045377.png #> 797 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4422407.png #> 798 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116733.png #> 799 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3145343.png #> 800 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915525.png #> 801 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576508.png #> 802 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15816.png #> 803 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16785.png #> 804 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3131784.png #> 805 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134288.png #> 806 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512544.png #> 807 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035566.png #> 808 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14047.png #> 809 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040910.png #> 810 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038544.png #> 811 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125082.png #> 812 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576245.png #> 813 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16339.png #> 814 <NA> #> 815 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14932.png #> 816 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2579601.png #> 817 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124634.png #> 818 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13976.png #> 819 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919548.png #> 820 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728310.png #> 821 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16761.png #> 822 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15075.png #> 823 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040150.png #> 824 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974344.png #> 825 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512419.png #> 826 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930915.png #> 827 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577712.png #> 828 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982304.png #> 829 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3925443.png #> 830 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16377.png #> 831 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15928.png #> 832 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3924327.png #> 833 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574630.png #> 834 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3722362.png #> 835 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035102.png #> 836 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916721.png #> 837 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052117.png #> 838 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914534.png #> 839 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576434.png #> 840 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122672.png #> 841 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912343.png #> 842 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116602.png #> 843 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128773.png #> 844 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059839.png #> 845 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13050.png #> 846 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123867.png #> 847 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035662.png #> 848 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16722.png #> 849 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912573.png #> 850 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045264.png #> 851 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036131.png #> 852 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045225.png #> 853 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035115.png #> 854 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576399.png #> 855 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125402.png #> 856 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125107.png #> 857 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045118.png #> 858 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128429.png #> 859 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971397.png #> 860 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241463.png #> 861 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057987.png #> 862 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134353.png #> 863 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3700815.png #> 864 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4422214.png #> 865 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034964.png #> 866 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240380.png #> 867 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17463.png #> 868 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971093.png #> 869 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128689.png #> 870 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16876.png #> 871 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116175.png #> 872 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241984.png #> 873 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515490.png #> 874 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575523.png #> 875 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13681.png #> 876 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15812.png #> 877 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969422.png #> 878 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050916.png #> 879 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577707.png #> 880 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4030779.png #> 881 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575164.png #> 882 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039292.png #> 883 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046680.png #> 884 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042499.png #> 885 http://static.nfl.com/static/content/public/static/img/fantasy/transparent/200x200/MOO227635.png #> 886 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046690.png #> 887 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576267.png #> 888 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3873928.png #> 889 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728253.png #> 890 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980147.png #> 891 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126352.png #> 892 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042746.png #> 893 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574519.png #> 894 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128264.png #> 895 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13373.png #> 896 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043127.png #> 897 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728248.png #> 898 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4243257.png #> 899 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578384.png #> 900 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124052.png #> 901 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2317118.png #> 902 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128412.png #> 903 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930040.png #> 904 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15972.png #> 905 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978331.png #> 906 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915252.png #> 907 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11122.png #> 908 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128444.png #> 909 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4423367.png #> 910 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3044729.png #> 911 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116158.png #> 912 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124587.png #> 913 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115310.png #> 914 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15830.png #> 915 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054951.png #> 916 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979855.png #> 917 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16764.png #> 918 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17070.png #> 919 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/8362.png #> 920 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916370.png #> 921 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12483.png #> 922 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12471.png #> 923 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116188.png #> 924 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916925.png #> 925 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259545.png #> 926 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919104.png #> 927 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10452.png #> 928 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052449.png #> 929 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125232.png #> 930 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15842.png #> 931 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915297.png #> 932 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045238.png #> 933 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046435.png #> 934 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971557.png #> 935 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3145005.png #> 936 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976292.png #> 937 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122687.png #> 938 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3144062.png #> 939 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978727.png #> 940 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979590.png #> 941 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932433.png #> 942 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4243318.png #> 943 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036133.png #> 944 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3061612.png #> 945 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126997.png #> 946 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14922.png #> 947 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15072.png #> 948 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11674.png #> 949 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035793.png #> 950 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056476.png #> 951 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115913.png #> 952 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974858.png #> 953 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16864.png #> 954 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915139.png #> 955 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3041098.png #> 956 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124849.png #> 957 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052170.png #> 958 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980150.png #> 959 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/5432.png #> 960 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895429.png #> 961 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916676.png #> 962 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3144984.png #> 963 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040870.png #> 964 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2582132.png #> 965 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3928920.png #> 966 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038538.png #> 967 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049331.png #> 968 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240024.png #> 969 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974348.png #> 970 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15021.png #> 971 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916220.png #> 972 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051894.png #> 973 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3676832.png #> 974 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917340.png #> 975 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4239817.png #> 976 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930048.png #> 977 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15380.png #> 978 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040661.png #> 979 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16549.png #> 980 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977626.png #> 981 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15900.png #> 982 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930912.png #> 983 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115485.png #> 984 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576736.png #> 985 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929936.png #> 986 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929794.png #> 987 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10636.png #> 988 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035577.png #> 989 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577446.png #> 990 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046523.png #> 991 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240655.png #> 992 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051746.png #> 993 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116431.png #> 994 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043168.png #> 995 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035817.png #> 996 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034781.png #> 997 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128675.png #> 998 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970181.png #> 999 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16767.png #> 1000 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980350.png #> 1001 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122752.png #> 1002 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045242.png #> 1003 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045166.png #> 1004 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126368.png #> 1005 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/8439.png #> 1006 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045169.png #> 1007 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036378.png #> 1008 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3118906.png #> 1009 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932449.png #> 1010 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915536.png #> 1011 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039358.png #> 1012 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042519.png #> 1013 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2573974.png #> 1014 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4239934.png #> 1015 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980453.png #> 1016 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915419.png #> 1017 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971364.png #> 1018 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917563.png #> 1019 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16759.png #> 1020 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3871880.png #> 1021 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15963.png #> 1022 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13302.png #> 1023 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9614.png #> 1024 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917962.png #> 1025 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036129.png #> 1026 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914151.png #> 1027 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035014.png #> 1028 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980444.png #> 1029 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2975674.png #> 1030 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116573.png #> 1031 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16800.png #> 1032 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4408988.png #> 1033 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974503.png #> 1034 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932442.png #> 1035 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122167.png #> 1036 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17402.png #> 1037 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120588.png #> 1038 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128390.png #> 1039 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15786.png #> 1040 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051738.png #> 1041 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128317.png #> 1042 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977609.png #> 1043 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2579850.png #> 1044 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4047834.png #> 1045 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121537.png #> 1046 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4331768.png #> 1047 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054955.png #> 1048 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929653.png #> 1049 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240780.png #> 1050 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728261.png #> 1051 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16719.png #> 1052 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123963.png #> 1053 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16750.png #> 1054 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16313.png #> 1055 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117135.png #> 1056 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051391.png #> 1057 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970716.png #> 1058 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128746.png #> 1059 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240575.png #> 1060 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3138764.png #> 1061 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929865.png #> 1062 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977681.png #> 1063 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13979.png #> 1064 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038557.png #> 1065 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050754.png #> 1066 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13989.png #> 1067 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977625.png #> 1068 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047570.png #> 1069 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3911982.png #> 1070 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886633.png #> 1071 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15123.png #> 1072 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16923.png #> 1073 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971573.png #> 1074 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2986109.png #> 1075 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116367.png #> 1076 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577429.png #> 1077 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116134.png #> 1078 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043276.png #> 1079 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051750.png #> 1080 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14936.png #> 1081 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895228.png #> 1082 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916409.png #> 1083 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039783.png #> 1084 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123863.png #> 1085 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576885.png #> 1086 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2508212.png #> 1087 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577854.png #> 1088 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13729.png #> 1089 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17061.png #> 1090 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116761.png #> 1091 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14950.png #> 1092 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122840.png #> 1093 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16810.png #> 1094 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3609.png #> 1095 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126246.png #> 1096 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122716.png #> 1097 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2508176.png #> 1098 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4362878.png #> 1099 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969962.png #> 1100 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122143.png #> 1101 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15231.png #> 1102 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3931399.png #> 1103 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17087.png #> 1104 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3131498.png #> 1105 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122923.png #> 1106 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126035.png #> 1107 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051890.png #> 1108 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895840.png #> 1109 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3921964.png #> 1110 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128452.png #> 1111 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971281.png #> 1112 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15773.png #> 1113 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3933327.png #> 1114 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14053.png #> 1115 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043225.png #> 1116 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3066074.png #> 1117 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915823.png #> 1118 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895857.png #> 1119 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4248504.png #> 1120 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051857.png #> 1121 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052876.png #> 1122 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122839.png #> 1123 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16731.png #> 1124 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578475.png #> 1125 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971563.png #> 1126 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128790.png #> 1127 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16808.png #> 1128 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917058.png #> 1129 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134448.png #> 1130 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3910229.png #> 1131 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124574.png #> 1132 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15810.png #> 1133 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3910754.png #> 1134 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4044540.png #> 1135 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4218312.png #> 1136 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912544.png #> 1137 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125287.png #> 1138 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2511090.png #> 1139 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3821692.png #> 1140 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035661.png #> 1141 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050199.png #> 1142 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121415.png #> 1143 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040513.png #> 1144 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17447.png #> 1145 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047512.png #> 1146 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14048.png #> 1147 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051942.png #> 1148 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124970.png #> 1149 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034530.png #> 1150 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4041572.png #> 1151 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126489.png #> 1152 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929658.png #> 1153 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971282.png #> 1154 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976632.png #> 1155 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129308.png #> 1156 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915470.png #> 1157 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978298.png #> 1158 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915165.png #> 1159 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056362.png #> 1160 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126179.png #> 1161 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045251.png #> 1162 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15068.png #> 1163 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048912.png #> 1164 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117253.png #> 1165 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929928.png #> 1166 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128252.png #> 1167 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3071353.png #> 1168 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124005.png #> 1169 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2566045.png #> 1170 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4058825.png #> 1171 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3060187.png #> 1172 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914922.png #> 1173 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16382.png #> 1174 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578570.png #> 1175 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977665.png #> 1176 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035003.png #> 1177 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/5529.png #> 1178 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916430.png #> 1179 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051891.png #> 1180 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038533.png #> 1181 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242335.png #> 1182 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139605.png #> 1183 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971589.png #> 1184 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980197.png #> 1185 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929835.png #> 1186 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14977.png #> 1187 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916678.png #> 1188 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577631.png #> 1189 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4611135.png #> 1190 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13970.png #> 1191 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117259.png #> 1192 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972351.png #> 1193 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516053.png #> 1194 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121595.png #> 1195 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059936.png #> 1196 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13483.png #> 1197 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035379.png #> 1198 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4032479.png #> 1199 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16504.png #> 1200 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2998565.png #> 1201 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930298.png #> 1202 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16974.png #> 1203 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930097.png #> 1204 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4054085.png #> 1205 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121410.png #> 1206 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4374496.png #> 1207 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515759.png #> 1208 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120659.png #> 1209 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4061956.png #> 1210 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916071.png #> 1211 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978109.png #> 1212 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14924.png #> 1213 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035687.png #> 1214 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971418.png #> 1215 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15794.png #> 1216 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979515.png #> 1217 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16270.png #> 1218 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886327.png #> 1219 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115968.png #> 1220 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241977.png #> 1221 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127299.png #> 1222 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4361499.png #> 1223 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3931400.png #> 1224 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240596.png #> 1225 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4371737.png #> 1226 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122160.png #> 1227 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3918331.png #> 1228 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2567725.png #> 1229 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4249092.png #> 1230 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971498.png #> 1231 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576755.png #> 1232 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915239.png #> 1233 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242205.png #> 1234 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042476.png #> 1235 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2507719.png #> 1236 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16090.png #> 1237 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13493.png #> 1238 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052059.png #> 1239 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115249.png #> 1240 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16376.png #> 1241 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038987.png #> 1242 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16853.png #> 1243 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4220624.png #> 1244 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574579.png #> 1245 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14083.png #> 1246 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17037.png #> 1247 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516325.png #> 1248 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17388.png #> 1249 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16770.png #> 1250 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035113.png #> 1251 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11923.png #> 1252 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3135726.png #> 1253 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2998120.png #> 1254 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3068939.png #> 1255 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3923413.png #> 1256 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037468.png #> 1257 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977819.png #> 1258 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3110565.png #> 1259 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917797.png #> 1260 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139453.png #> 1261 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042874.png #> 1262 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045267.png #> 1263 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047566.png #> 1264 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4042125.png #> 1265 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16941.png #> 1266 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3928931.png #> 1267 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915520.png #> 1268 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121587.png #> 1269 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3072765.png #> 1270 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115480.png #> 1271 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124900.png #> 1272 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15837.png #> 1273 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038524.png #> 1274 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3699935.png #> 1275 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3923397.png #> 1276 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15966.png #> 1277 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917812.png #> 1278 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4052042.png #> 1279 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4421446.png #> 1280 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2983509.png #> 1281 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970661.png #> 1282 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035505.png #> 1283 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051716.png #> 1284 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126153.png #> 1285 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4611506.png #> 1286 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123064.png #> 1287 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116739.png #> 1288 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115949.png #> 1289 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115313.png #> 1290 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3920814.png #> 1291 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034961.png #> 1292 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2975863.png #> 1293 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2508079.png #> 1294 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047488.png #> 1295 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15788.png #> 1296 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930900.png #> 1297 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914240.png #> 1298 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3921690.png #> 1299 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915174.png #> 1300 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3071572.png #> 1301 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915296.png #> 1302 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241723.png #> 1303 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034944.png #> 1304 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3892889.png #> 1305 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4243160.png #> 1306 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115394.png #> 1307 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578533.png #> 1308 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039720.png #> 1309 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039043.png #> 1310 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14110.png #> 1311 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917290.png #> 1312 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2514816.png #> 1313 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056354.png #> 1314 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3140141.png #> 1315 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16890.png #> 1316 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040652.png #> 1317 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040432.png #> 1318 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3924364.png #> 1319 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128630.png #> 1320 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037361.png #> 1321 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915163.png #> 1322 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917909.png #> 1323 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17259.png #> 1324 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916207.png #> 1325 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15976.png #> 1326 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914553.png #> 1327 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045210.png #> 1328 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576242.png #> 1329 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052926.png #> 1330 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982313.png #> 1331 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915487.png #> 1332 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4408979.png #> 1333 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121634.png #> 1334 <NA> #> 1335 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4058925.png #> 1336 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3044859.png #> 1337 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17377.png #> 1338 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14957.png #> 1339 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/169.png #> 1340 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16958.png #> 1341 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16327.png #> 1342 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115922.png #> 1343 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3055899.png #> 1344 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045132.png #> 1345 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259804.png #> 1346 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040207.png #> 1347 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16883.png #> 1348 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3140643.png #> 1349 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122169.png #> 1350 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122906.png #> 1351 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4043618.png #> 1352 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16665.png #> 1353 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17230.png #> 1354 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122930.png #> 1355 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/8513.png #> 1356 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915398.png #> 1357 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139477.png #> 1358 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11128.png #> 1359 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11291.png #> 1360 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242418.png #> 1361 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17359.png #> 1362 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14135.png #> 1363 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4361606.png #> 1364 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042494.png #> 1365 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115375.png #> 1366 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15825.png #> 1367 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242214.png #> 1368 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122136.png #> 1369 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15851.png #> 1370 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15422.png #> 1371 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042702.png #> 1372 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15790.png #> 1373 <NA> #> 1374 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241213.png #> 1375 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3894924.png #> 1376 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14951.png #> 1377 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035518.png #> 1378 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059766.png #> 1379 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051806.png #> 1380 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15847.png #> 1381 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971426.png #> 1382 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971280.png #> 1383 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4329472.png #> 1384 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043116.png #> 1385 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036055.png #> 1386 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982828.png #> 1387 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16725.png #> 1388 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3066052.png #> 1389 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4408854.png #> 1390 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915097.png #> 1391 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035004.png #> 1392 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980460.png #> 1393 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036416.png #> 1394 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116406.png #> 1395 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046399.png #> 1396 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2582448.png #> 1397 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134666.png #> 1398 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2525933.png #> 1399 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046536.png #> 1400 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972896.png #> 1401 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045373.png #> 1402 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4239833.png #> 1403 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040901.png #> 1404 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046292.png #> 1405 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116179.png #> 1406 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040613.png #> 1407 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917012.png #> 1408 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035013.png #> 1409 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049268.png #> 1410 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059620.png #> 1411 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4032481.png #> 1412 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14944.png #> 1413 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040703.png #> 1414 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16716.png #> 1415 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054857.png #> 1416 <NA> #> 1417 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914150.png #> 1418 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120552.png #> 1419 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043198.png #> 1420 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040008.png #> 1421 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917660.png #> 1422 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056608.png #> 1423 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052180.png #> 1424 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14816.png #> 1425 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053774.png #> 1426 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4249087.png #> 1427 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134310.png #> 1428 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115317.png #> 1429 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116177.png #> 1430 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052667.png #> 1431 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043136.png #> 1432 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048692.png #> 1433 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040109.png #> 1434 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122678.png #> 1435 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045527.png #> 1436 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3909013.png #> 1437 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040968.png #> 1438 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034967.png #> 1439 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116424.png #> 1440 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035542.png #> 1441 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040072.png #> 1442 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14676.png #> 1443 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127294.png #> 1444 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047495.png #> 1445 <NA> #> 1446 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15153.png #> 1447 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124092.png #> 1448 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127051.png #> 1449 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16724.png #> 1450 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3675812.png #> 1451 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046779.png #> 1452 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240021.png #> 1453 <NA> #> 1454 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916209.png #> 1455 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039359.png #> 1456 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2570986.png #> 1457 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039007.png #> 1458 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3144988.png #> 1459 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035663.png #> 1460 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515613.png #> 1461 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914440.png #> 1462 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035478.png #> 1463 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9641.png #> 1464 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3706968.png #> 1465 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3918639.png #> 1466 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3918003.png #> 1467 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2573401.png #> 1468 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122103.png #> 1469 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052096.png #> 1470 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15880.png #> 1471 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930066.png #> 1472 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046715.png #> 1473 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3910287.png #> 1474 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977187.png #> 1475 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115306.png #> 1476 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3119317.png #> 1477 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13974.png #> 1478 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969262.png #> 1479 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4410136.png #> 1480 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045458.png #> 1481 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053795.png #> 1482 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14966.png #> 1483 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14398.png #> 1484 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912028.png #> 1485 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16039.png #> 1486 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4032484.png #> 1487 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046687.png #> 1488 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3691739.png #> 1489 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4365493.png #> 1490 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051389.png #> 1491 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14926.png #> 1492 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052894.png #> 1493 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915990.png #> 1494 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120358.png #> 1495 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3863182.png #> 1496 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916917.png #> 1497 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116746.png #> 1498 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139036.png #> 1499 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979482.png #> 1500 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047572.png #> 1501 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919555.png #> 1502 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17063.png #> 1503 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16789.png #> 1504 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2981439.png #> 1505 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045779.png #> 1506 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123052.png #> 1507 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129310.png #> 1508 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3821576.png #> 1509 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039254.png #> 1510 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241394.png #> 1511 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971816.png #> 1512 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2579621.png #> 1513 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036959.png #> 1514 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914613.png #> 1515 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970622.png #> 1516 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054855.png #> 1517 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13281.png #> 1518 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16231.png #> 1519 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3674831.png #> 1520 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3061740.png #> 1521 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2582324.png #> 1522 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14163.png #> 1523 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120590.png #> 1524 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038941.png #> 1525 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3910544.png #> 1526 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3068267.png #> 1527 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040640.png #> 1528 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2983319.png #> 1529 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128774.png #> 1530 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035611.png #> 1531 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116136.png #> 1532 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039413.png #> 1533 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16919.png #> 1534 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969961.png #> 1535 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052513.png #> 1536 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4411189.png #> 1537 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2973014.png #> 1538 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13247.png #> 1539 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917870.png #> 1540 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046439.png #> 1541 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912092.png #> 1542 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14085.png #> 1543 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121378.png #> 1544 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576854.png #> 1545 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4683123.png #> 1546 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3894912.png #> 1547 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4069806.png #> 1548 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15818.png #> 1549 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915522.png #> 1550 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4282647.png #> 1551 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037591.png #> 1552 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932430.png #> 1553 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045138.png #> 1554 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977627.png #> 1555 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14013.png #> 1556 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932244.png #> 1557 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259493.png #> 1558 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4239694.png #> 1559 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16769.png #> 1560 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971478.png #> 1561 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042436.png #> 1562 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915506.png #> 1563 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054031.png #> 1564 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035458.png #> 1565 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126182.png #> 1566 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16929.png #> 1567 <NA> #> 1568 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3921709.png #> 1569 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053801.png #> 1570 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4010714.png #> 1571 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2614825.png #> 1572 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976151.png #> 1573 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577162.png #> 1574 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3152371.png #> 1575 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16917.png #> 1576 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728258.png #> 1577 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3843843.png #> 1578 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916655.png #> 1579 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115469.png #> 1580 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15798.png #> 1581 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045220.png #> 1582 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15841.png #> 1583 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3044732.png #> 1584 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040471.png #> 1585 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917668.png #> 1586 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2985235.png #> 1587 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16753.png #> 1588 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/8495.png #> 1589 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3925344.png #> 1590 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035479.png #> 1591 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932960.png #> 1592 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051909.png #> 1593 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512400.png #> 1594 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4232830.png #> 1595 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2581818.png #> 1596 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728263.png #> 1597 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121423.png #> 1598 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978304.png #> 1599 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15038.png #> 1600 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969922.png #> 1601 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052889.png #> 1602 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052357.png #> 1603 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4329484.png #> 1604 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3686689.png #> 1605 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16757.png #> 1606 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972092.png #> 1607 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972236.png #> 1608 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576980.png #> 1609 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122866.png #> 1610 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4047365.png #> 1611 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972091.png #> 1612 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15994.png #> 1613 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16473.png #> 1614 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115333.png #> 1615 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728305.png #> 1616 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3072292.png #> 1617 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930054.png #> 1618 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043109.png #> 1619 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045160.png #> 1620 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134312.png #> 1621 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13496.png #> 1622 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929633.png #> 1623 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576804.png #> 1624 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576925.png #> 1625 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4527.png #> 1626 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15403.png #> 1627 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3843945.png #> 1628 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121398.png #> 1629 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042373.png #> 1630 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241475.png #> 1631 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115365.png #> 1632 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2587819.png #> 1633 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059722.png #> 1634 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051400.png #> 1635 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3135321.png #> 1636 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046320.png #> 1637 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038818.png #> 1638 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971618.png #> 1639 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120980.png #> 1640 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3060000.png #> 1641 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917868.png #> 1642 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121541.png #> 1643 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576188.png #> 1644 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3892777.png #> 1645 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2513035.png #> 1646 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2509574.png #> 1647 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242516.png #> 1648 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124702.png #> 1649 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978935.png #> 1650 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575606.png #> 1651 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039059.png #> 1652 <NA> #> 1653 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972505.png #> 1654 <NA> #> 1655 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052527.png #> 1656 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036214.png #> 1657 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057956.png #> 1658 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4047458.png #> 1659 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914456.png #> 1660 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728266.png #> 1661 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977740.png #> 1662 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895843.png #> 1663 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728308.png #> 1664 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4421391.png #> 1665 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035299.png #> 1666 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915309.png #> 1667 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3843217.png #> 1668 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976649.png #> 1669 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969952.png #> 1670 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035008.png #> 1671 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124679.png #> 1672 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3133487.png #> 1673 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977679.png #> 1674 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977798.png #> 1675 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050851.png #> 1676 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047530.png #> 1677 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16772.png #> 1678 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577637.png #> 1679 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915107.png #> 1680 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915507.png #> 1681 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2987743.png #> 1682 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048402.png #> 1683 <NA> #> 1684 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3843470.png #> 1685 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040965.png #> 1686 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115383.png #> 1687 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043237.png #> 1688 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2582424.png #> 1689 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241479.png #> 1690 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3926936.png #> 1691 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/8664.png #> 1692 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127211.png #> 1693 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4243315.png #> 1694 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049916.png #> 1695 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886818.png #> 1696 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039436.png #> 1697 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577654.png #> 1698 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915115.png #> 1699 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259979.png #> 1700 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042455.png #> 1701 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576002.png #> 1702 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917592.png #> 1703 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929752.png #> 1704 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047614.png #> 1705 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4271632.png #> 1706 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2517316.png #> 1707 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052897.png #> 1708 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4198676.png #> 1709 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3138744.png #> 1710 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116164.png #> 1711 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17051.png #> 1712 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915145.png #> 1713 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2991662.png #> 1714 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577641.png #> 1715 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576623.png #> 1716 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17177.png #> 1717 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047504.png #> 1718 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124069.png #> 1719 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915399.png #> 1720 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116729.png #> 1721 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3173563.png #> 1722 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035385.png #> 1723 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895841.png #> 1724 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259170.png #> 1725 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3676819.png #> 1726 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929847.png #> 1727 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3909365.png #> 1728 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4220625.png #> 1729 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116104.png #> 1730 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045136.png #> 1731 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917147.png #> 1732 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929845.png #> 1733 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15085.png #> 1734 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577814.png #> 1735 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2525492.png #> 1736 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037511.png #> 1737 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046537.png #> 1738 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3908608.png #> 1739 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974353.png #> 1740 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976560.png #> 1741 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121414.png #> 1742 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576040.png #> 1743 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3119119.png #> 1744 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929833.png #> 1745 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038849.png #> 1746 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259181.png #> 1747 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127274.png #> 1748 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979523.png #> 1749 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4012556.png #> 1750 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3924352.png #> 1751 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3821678.png #> 1752 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16861.png #> 1753 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4048231.png #> 1754 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4682831.png #> 1755 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14322.png #> 1756 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578718.png #> 1757 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3975763.png #> 1758 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3701669.png #> 1759 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978211.png #> 1760 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2510863.png #> 1761 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3892773.png #> 1762 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045212.png #> 1763 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056916.png #> 1764 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121538.png #> 1765 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16711.png #> 1766 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122420.png #> 1767 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17497.png #> 1768 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038946.png #> 1769 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038201.png #> 1770 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15726.png #> 1771 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16866.png #> 1772 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972144.png #> 1773 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128685.png #> 1774 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12773.png #> 1775 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886812.png #> 1776 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14880.png #> 1777 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036149.png #> 1778 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2517017.png #> 1779 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576336.png #> 1780 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895835.png #> 1781 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139033.png #> 1782 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116593.png #> 1783 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4048244.png #> 1784 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14945.png #> 1785 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575446.png #> 1786 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14930.png #> 1787 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123954.png #> 1788 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120502.png #> 1789 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930270.png #> 1790 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4411192.png #> 1791 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14054.png #> 1792 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040980.png #> 1793 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3925348.png #> 1794 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122920.png #> 1795 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047968.png #> 1796 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916566.png #> 1797 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16460.png #> 1798 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917067.png #> 1799 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929637.png #> 1800 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4262921.png #> 1801 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2973637.png #> 1802 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039374.png #> 1803 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17361.png #> 1804 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578529.png #> 1805 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16788.png #> 1806 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15089.png #> 1807 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139389.png #> 1808 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14942.png #> 1809 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917853.png #> 1810 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12691.png #> 1811 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971027.png #> 1812 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035286.png #> 1813 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121649.png #> 1814 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2973647.png #> 1815 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4401811.png #> 1816 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039010.png #> 1817 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13236.png #> 1818 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040031.png #> 1819 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16010.png #> 1820 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980080.png #> 1821 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115974.png #> 1822 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042726.png #> 1823 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912189.png #> 1824 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972342.png #> 1825 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14185.png #> 1826 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728306.png #> 1827 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15958.png #> 1828 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916922.png #> 1829 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974365.png #> 1830 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115349.png #> 1831 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576917.png #> 1832 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3144994.png #> 1833 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046545.png #> 1834 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977779.png #> 1835 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117420.png #> 1836 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10621.png #> 1837 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3913295.png #> 1838 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978887.png #> 1839 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3924319.png #> 1840 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3925350.png #> 1841 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051905.png #> 1842 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4048736.png #> 1843 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576257.png #> 1844 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046528.png #> 1845 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116187.png #> 1846 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14933.png #> 1847 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16393.png #> 1848 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575907.png #> 1849 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2511690.png #> 1850 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16912.png #> 1851 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3931395.png #> 1852 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13994.png #> 1853 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12477.png #> 1854 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3921586.png #> 1855 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3892775.png #> 1856 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16913.png #> 1857 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128721.png #> 1858 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15971.png #> 1859 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3925347.png #> 1860 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15478.png #> 1861 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039607.png #> 1862 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12527.png #> 1863 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16286.png #> 1864 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17487.png #> 1865 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16768.png #> 1866 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124112.png #> 1867 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116455.png #> 1868 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056899.png #> 1869 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115303.png #> 1870 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577773.png #> 1871 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14116.png #> 1872 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047575.png #> 1873 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128713.png #> 1874 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047536.png #> 1875 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240861.png #> 1876 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576179.png #> 1877 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046522.png #> 1878 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915486.png #> 1879 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915308.png #> 1880 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915508.png #> 1881 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051869.png #> 1882 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577667.png #> 1883 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916433.png #> 1884 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916129.png #> 1885 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12649.png #> 1886 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576395.png #> 1887 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052122.png #> 1888 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4424106.png #> 1889 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3910176.png #> 1890 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16791.png #> 1891 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11387.png #> 1892 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16787.png #> 1893 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4047839.png #> 1894 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115387.png #> 1895 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917331.png #> 1896 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13238.png #> 1897 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14974.png #> 1898 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116166.png #> 1899 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121421.png #> 1900 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970625.png #> 1901 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979612.png #> 1902 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15359.png #> 1903 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977661.png #> 1904 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122882.png #> 1905 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929920.png #> 1906 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15865.png #> 1907 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2585962.png #> 1908 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16758.png #> 1909 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052743.png #> 1910 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976313.png #> 1911 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13971.png #> 1912 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124058.png #> 1913 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3918310.png #> 1914 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4027908.png #> 1915 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039064.png #> 1916 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886601.png #> 1917 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895834.png #> 1918 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977635.png #> 1919 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2582150.png #> 1920 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4002046.png #> 1921 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574023.png #> 1922 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970204.png #> 1923 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971698.png #> 1924 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515270.png #> 1925 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978278.png #> 1926 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122925.png #> 1927 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4258199.png #> 1928 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17178.png #> 1929 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2507667.png #> 1930 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15058.png #> 1931 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2985659.png #> 1932 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971641.png #> 1933 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14958.png #> 1934 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917657.png #> 1935 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043107.png #> 1936 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14860.png #> 1937 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124890.png #> 1938 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976541.png #> 1939 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929818.png #> 1940 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9287.png #> 1941 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575788.png #> 1942 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4045180.png #> 1943 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12701.png #> 1944 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969939.png #> 1945 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2580.png #> 1946 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2468609.png #> 1947 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2511109.png #> 1948 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577134.png #> 1949 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046676.png #> 1950 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054850.png #> 1951 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3911993.png #> 1952 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15920.png #> 1953 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3002265.png #> 1954 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115481.png #> 1955 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12426.png #> 1956 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034953.png #> 1957 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3938169.png #> 1958 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915147.png #> 1959 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917676.png #> 1960 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15821.png #> 1961 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3911853.png #> 1962 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16143.png #> 1963 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115360.png #> 1964 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982151.png #> 1965 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12537.png #> 1966 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2987440.png #> 1967 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057863.png #> 1968 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976316.png #> 1969 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16995.png #> 1970 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128451.png #> 1971 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4411193.png #> 1972 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917200.png #> 1973 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039057.png #> 1974 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974339.png #> 1975 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574918.png #> 1976 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929645.png #> 1977 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13295.png #> 1978 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035170.png #> 1979 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057850.png #> 1980 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116096.png #> 1981 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577792.png #> 1982 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17066.png #> 1983 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122797.png #> 1984 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916720.png #> 1985 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970264.png #> 1986 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121660.png #> 1987 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242973.png #> 1988 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2572841.png #> 1989 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3911073.png #> 1990 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971699.png #> 1991 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046675.png #> 1992 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038440.png #> 1993 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15861.png #> 1994 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241470.png #> 1995 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128740.png #> 1996 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917872.png #> 1997 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4030955.png #> 1998 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035483.png #> 1999 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14036.png #> 2000 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971622.png #> 2001 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116748.png #> 2002 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127587.png #> 2003 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575965.png #> 2004 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516029.png #> 2005 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042516.png #> 2006 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14931.png #> 2007 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915142.png #> 2008 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14460.png #> 2009 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12460.png #> 2010 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972400.png #> 2011 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4045165.png #> 2012 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128715.png #> 2013 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123054.png #> 2014 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915171.png #> 2015 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034766.png #> 2016 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123233.png #> 2017 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122593.png #> 2018 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978273.png #> 2019 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051924.png #> 2020 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038811.png #> 2021 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574229.png #> 2022 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16359.png #> 2023 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17304.png #> 2024 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979591.png #> 2025 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979860.png #> 2026 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040204.png #> 2027 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577619.png #> 2028 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917792.png #> 2029 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13199.png #> 2030 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13484.png #> 2031 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116144.png #> 2032 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15693.png #> 2033 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4683485.png #> 2034 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14198.png #> 2035 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045127.png #> 2036 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048680.png #> 2037 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053732.png #> 2038 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512197.png #> 2039 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929630.png #> 2040 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15009.png #> 2041 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115962.png #> 2042 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15125.png #> 2043 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915970.png #> 2044 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3921936.png #> 2045 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122865.png #> 2046 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040210.png #> 2047 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259566.png #> 2048 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16932.png #> 2049 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4032758.png #> 2050 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13964.png #> 2051 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051876.png #> 2052 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4044452.png #> 2053 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4045062.png #> 2054 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15980.png #> 2055 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056577.png #> 2056 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13217.png #> 2057 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056906.png #> 2058 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2973626.png #> 2059 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040623.png #> 2060 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916945.png #> 2061 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919510.png #> 2062 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3871102.png #> 2063 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127306.png #> 2064 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980378.png #> 2065 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976592.png #> 2066 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978929.png #> 2067 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577367.png #> 2068 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980597.png #> 2069 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048026.png #> 2070 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125705.png #> 2071 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980115.png #> 2072 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4411769.png #> 2073 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916144.png #> 2074 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3870072.png #> 2075 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2579840.png #> 2076 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4239965.png #> 2077 <NA> #> 2078 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980110.png #> 2079 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4243250.png #> 2080 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034849.png #> 2081 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16879.png #> 2082 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127367.png #> 2083 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932901.png #> 2084 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886528.png #> 2085 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120464.png #> 2086 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915123.png #> 2087 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039375.png #> 2088 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2517752.png #> 2089 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045172.png #> 2090 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982880.png #> 2091 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3041112.png #> 2092 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4076951.png #> 2093 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16963.png #> 2094 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976295.png #> 2095 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15718.png #> 2096 http://static.nfl.com/static/content/public/static/img/fantasy/transparent/200x200/CAS762935.png #> 2097 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3150744.png #> 2098 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2582139.png #> 2099 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15806.png #> 2100 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057876.png #> 2101 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16243.png #> 2102 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576761.png #> 2103 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16720.png #> 2104 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059880.png #> 2105 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728281.png #> 2106 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052977.png #> 2107 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3911689.png #> 2108 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977647.png #> 2109 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127273.png #> 2110 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2570996.png #> 2111 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512999.png #> 2112 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051333.png #> 2113 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2983155.png #> 2114 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040982.png #> 2115 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035239.png #> 2116 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042565.png #> 2117 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16821.png #> 2118 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051381.png #> 2119 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11252.png #> 2120 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914395.png #> 2121 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912547.png #> 2122 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915411.png #> 2123 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4262315.png #> 2124 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034952.png #> 2125 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123675.png #> 2126 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/8479.png #> 2127 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932420.png #> 2128 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4264341.png #> 2129 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3858271.png #> 2130 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16269.png #> 2131 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914277.png #> 2132 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116110.png #> 2133 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971584.png #> 2134 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2583951.png #> 2135 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240090.png #> 2136 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3701582.png #> 2137 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3936647.png #> 2138 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123050.png #> 2139 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039253.png #> 2140 <NA> #> 2141 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15887.png #> 2142 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576716.png #> 2143 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123075.png #> 2144 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115330.png #> 2145 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4249030.png #> 2146 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576019.png #> 2147 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929118.png #> 2148 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035403.png #> 2149 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040792.png #> 2150 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917849.png #> 2151 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14402.png #> 2152 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3155188.png #> 2153 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2519013.png #> 2154 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972460.png #> 2155 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916744.png #> 2156 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14124.png #> 2157 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126364.png #> 2158 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15863.png #> 2159 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971603.png #> 2160 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16217.png #> 2161 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982870.png #> 2162 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116058.png #> 2163 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123938.png #> 2164 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917576.png #> 2165 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046538.png #> 2166 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15222.png #> 2167 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3935064.png #> 2168 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036924.png #> 2169 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035463.png #> 2170 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035389.png #> 2171 <NA> #> 2172 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3693166.png #> 2173 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13239.png #> 2174 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14959.png #> 2175 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241264.png #> 2176 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3044706.png #> 2177 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115336.png #> 2178 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929834.png #> 2179 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14941.png #> 2180 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2983055.png #> 2181 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971725.png #> 2182 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15047.png #> 2183 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577757.png #> 2184 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2973027.png #> 2185 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978247.png #> 2186 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14962.png #> 2187 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4044438.png #> 2188 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576647.png #> 2189 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3055886.png #> 2190 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121009.png #> 2191 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050478.png #> 2192 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126204.png #> 2193 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121544.png #> 2194 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038902.png #> 2195 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971929.png #> 2196 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042725.png #> 2197 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040762.png #> 2198 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2612151.png #> 2199 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4360645.png #> 2200 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040475.png #> 2201 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036507.png #> 2202 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2565971.png #> 2203 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051397.png #> 2204 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4371989.png #> 2205 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979501.png #> 2206 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040715.png #> 2207 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2573079.png #> 2208 <NA> #> 2209 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3060022.png #> 2210 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035006.png #> 2211 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4045163.png #> 2212 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4042112.png #> 2213 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051439.png #> 2214 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045260.png #> 2215 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040790.png #> 2216 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139368.png #> 2217 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051901.png #> 2218 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976540.png #> 2219 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576229.png #> 2220 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15797.png #> 2221 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4334215.png #> 2222 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129116.png #> 2223 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932668.png #> 2224 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127264.png #> 2225 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/6012.png #> 2226 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15835.png #> 2227 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578377.png #> 2228 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916564.png #> 2229 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972240.png #> 2230 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121023.png #> 2231 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932936.png #> 2232 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917940.png #> 2233 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16786.png #> 2234 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15839.png #> 2235 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040035.png #> 2236 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932935.png #> 2237 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139522.png #> 2238 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241802.png #> 2239 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124964.png #> 2240 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4050373.png #> 2241 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3931397.png #> 2242 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14912.png #> 2243 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11283.png #> 2244 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4373673.png #> 2245 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13250.png #> 2246 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126353.png #> 2247 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046719.png #> 2248 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979605.png #> 2249 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3044724.png #> 2250 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13249.png #> 2251 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980383.png #> 2252 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259252.png #> 2253 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4408864.png #> 2254 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045287.png #> 2255 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036213.png #> 2256 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976210.png #> 2257 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116149.png #> 2258 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977615.png #> 2259 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16873.png #> 2260 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122690.png #> 2261 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241451.png #> 2262 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13233.png #> 2263 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16798.png #> 2264 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915253.png #> 2265 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13977.png #> 2266 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3699462.png #> 2267 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122915.png #> 2268 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576450.png #> 2269 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917599.png #> 2270 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969959.png #> 2271 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14935.png #> 2272 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17372.png #> 2273 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126081.png #> 2274 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129446.png #> 2275 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15934.png #> 2276 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576702.png #> 2277 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128268.png #> 2278 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036261.png #> 2279 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045282.png #> 2280 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16920.png #> 2281 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978524.png #> 2282 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037333.png #> 2283 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3920867.png #> 2284 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16991.png #> 2285 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2967885.png #> 2286 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2472364.png #> 2287 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125280.png #> 2288 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3044720.png #> 2289 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/5536.png #> 2290 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116407.png #> 2291 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040616.png #> 2292 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116721.png #> 2293 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241941.png #> 2294 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035072.png #> 2295 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970090.png #> 2296 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042429.png #> 2297 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045147.png #> 2298 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16179.png #> 2299 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124067.png #> 2300 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115371.png #> 2301 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3925345.png #> 2302 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971556.png #> 2303 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971616.png #> 2304 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3119215.png #> 2305 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976554.png #> 2306 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980142.png #> 2307 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17404.png #> 2308 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129473.png #> 2309 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16706.png #> 2310 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040778.png #> 2311 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126261.png #> 2312 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16732.png #> 2313 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15853.png #> 2314 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049290.png #> 2315 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929924.png #> 2316 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932963.png #> 2317 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126263.png #> 2318 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046692.png #> 2319 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932905.png #> 2320 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4049301.png #> 2321 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122449.png #> 2322 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241983.png #> 2323 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728262.png #> 2324 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120348.png #> 2325 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042738.png #> 2326 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122432.png #> 2327 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915190.png #> 2328 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121344.png #> 2329 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054026.png #> 2330 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516049.png #> 2331 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886824.png #> 2332 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15535.png #> 2333 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046326.png #> 2334 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4243244.png #> 2335 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912347.png #> 2336 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577553.png #> 2337 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886834.png #> 2338 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139387.png #> 2339 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043258.png #> 2340 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125816.png #> 2341 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915396.png #> 2342 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4254276.png #> 2343 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577642.png #> 2344 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980097.png #> 2345 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912562.png #> 2346 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13274.png #> 2347 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116449.png #> 2348 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16528.png #> 2349 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15858.png #> 2350 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036138.png #> 2351 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115312.png #> 2352 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14471.png #> 2353 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13246.png #> 2354 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4362647.png #> 2355 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15814.png #> 2356 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3136374.png #> 2357 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978933.png #> 2358 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971614.png #> 2359 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12910.png #> 2360 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2473037.png #> 2361 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886816.png #> 2362 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4043130.png #> 2363 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3926229.png #> 2364 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054029.png #> 2365 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16463.png #> 2366 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915196.png #> 2367 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14979.png #> 2368 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054862.png #> 2369 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14946.png #> 2370 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14140.png #> 2371 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17378.png #> 2372 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115979.png #> 2373 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125114.png #> 2374 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929851.png #> 2375 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128843.png #> 2376 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15864.png #> 2377 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052450.png #> 2378 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14881.png #> 2379 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126367.png #> 2380 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139925.png #> 2381 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046409.png #> 2382 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16777.png #> 2383 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915427.png #> 2384 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240631.png #> 2385 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037457.png #> 2386 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919596.png #> 2387 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115373.png #> 2388 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045214.png #> 2389 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121417.png #> 2390 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971615.png #> 2391 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2511825.png #> 2392 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11260.png #> 2393 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242246.png #> 2394 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577690.png #> 2395 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128449.png #> 2396 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10475.png #> 2397 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916587.png #> 2398 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16121.png #> 2399 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242557.png #> 2400 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127292.png #> 2401 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125404.png #> 2402 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577327.png #> 2403 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3933064.png #> 2404 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039000.png #> 2405 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034950.png #> 2406 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917546.png #> 2407 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051650.png #> 2408 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049249.png #> 2409 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4212909.png #> 2410 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4047650.png #> 2411 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2579604.png #> 2412 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126115.png #> 2413 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15705.png #> 2414 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2565338.png #> 2415 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13802.png #> 2416 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16746.png #> 2417 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577185.png #> 2418 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16743.png #> 2419 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516984.png #> 2420 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048681.png #> 2421 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14086.png #> 2422 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122630.png #> 2423 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115337.png #> 2424 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128743.png #> 2425 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15866.png #> 2426 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17444.png #> 2427 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16726.png #> 2428 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3871875.png #> 2429 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16893.png #> 2430 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040975.png #> 2431 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974247.png #> 2432 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039278.png #> 2433 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970694.png #> 2434 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16717.png #> 2435 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052434.png #> 2436 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971275.png #> 2437 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116726.png #> 2438 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117258.png #> 2439 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15785.png #> 2440 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976114.png #> 2441 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040605.png #> 2442 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15800.png #> 2443 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2567711.png #> 2444 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17068.png #> 2445 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16707.png #> 2446 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051807.png #> 2447 <NA> #> 2448 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259491.png #> 2449 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919607.png #> 2450 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3894915.png #> 2451 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929641.png #> 2452 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16002.png #> 2453 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512477.png #> 2454 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14976.png #> 2455 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976117.png #> 2456 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574302.png #> 2457 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9354.png #> 2458 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576030.png #> 2459 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15819.png #> 2460 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3138826.png #> 2461 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3908558.png #> 2462 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043184.png #> 2463 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919117.png #> 2464 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916903.png #> 2465 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979553.png #> 2466 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14426.png #> 2467 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578698.png #> 2468 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035685.png #> 2469 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11394.png #> 2470 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059989.png #> 2471 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16760.png #> 2472 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886377.png #> 2473 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979520.png #> 2474 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4049391.png #> 2475 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16782.png #> 2476 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16838.png #> 2477 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122976.png #> 2478 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576414.png #> 2479 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123857.png #> 2480 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979477.png #> 2481 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3928925.png #> 2482 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043110.png #> 2483 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3931424.png #> 2484 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124889.png #> 2485 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2509844.png #> 2486 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053804.png #> 2487 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15831.png #> 2488 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13241.png #> 2489 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970513.png #> 2490 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915777.png #> 2491 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052885.png #> 2492 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574573.png #> 2493 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916465.png #> 2494 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15082.png #> 2495 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916075.png #> 2496 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4335942.png #> 2497 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115359.png #> 2498 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120303.png #> 2499 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3880416.png #> 2500 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15860.png #> 2501 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035020.png #> 2502 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040151.png #> 2503 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040569.png #> 2504 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115328.png #> 2505 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039604.png #> 2506 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045523.png #> 2507 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16763.png #> 2508 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126486.png #> 2509 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886598.png #> 2510 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4041703.png #> 2511 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15062.png #> 2512 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042435.png #> 2513 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116680.png #> 2514 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122899.png #> 2515 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052056.png #> 2516 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4360438.png #> 2517 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054970.png #> 2518 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12726.png #> 2519 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16038.png #> 2520 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932886.png #> 2521 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574666.png #> 2522 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139613.png #> 2523 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3873935.png #> 2524 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916923.png #> 2525 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16843.png #> 2526 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3920823.png #> 2527 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919107.png #> 2528 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3155647.png #> 2529 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034790.png #> 2530 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980206.png #> 2531 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886826.png #> 2532 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13234.png #> 2533 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13256.png #> 2534 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3933407.png #> 2535 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16019.png #> 2536 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3892689.png #> 2537 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038840.png #> 2538 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3699530.png #> 2539 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575453.png #> 2540 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121542.png #> 2541 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3722375.png #> 2542 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049339.png #> 2543 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3165702.png #> 2544 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3920591.png #> 2545 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15901.png #> 2546 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13403.png #> 2547 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059021.png #> 2548 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12731.png #> 2549 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045259.png #> 2550 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15856.png #> 2551 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16723.png #> 2552 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3894856.png #> 2553 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16967.png #> 2554 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034496.png #> 2555 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035434.png #> 2556 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14985.png #> 2557 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13078.png #> 2558 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3065813.png #> 2559 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12895.png #> 2560 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134362.png #> 2561 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977680.png #> 2562 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2973605.png #> 2563 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576240.png #> 2564 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16140.png #> 2565 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10487.png #> 2566 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13987.png #> 2567 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2330.png #> 2568 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912550.png #> 2569 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12514.png #> 2570 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917612.png #> 2571 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912551.png #> 2572 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115364.png #> 2573 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15921.png #> 2574 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980148.png #> 2575 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039723.png #> 2576 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895798.png #> 2577 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576599.png #> 2578 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895859.png #> 2579 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2582147.png #> 2580 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17283.png #> 2581 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982323.png #> 2582 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240589.png #> 2583 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2573103.png #> 2584 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043080.png #> 2585 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050481.png #> 2586 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4081127.png #> 2587 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17453.png #> 2588 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13229.png #> 2589 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3951441.png #> 2590 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978308.png #> 2591 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4217370.png #> 2592 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116165.png #> 2593 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4368796.png #> 2594 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13934.png #> 2595 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035496.png #> 2596 <NA> #> 2597 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2310331.png #> 2598 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16737.png #> 2599 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914397.png #> 2600 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3118892.png #> 2601 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15109.png #> 2602 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2511330.png #> 2603 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040537.png #> 2604 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116105.png #> 2605 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040145.png #> 2606 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048663.png #> 2607 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17435.png #> 2608 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035433.png #> 2609 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4043605.png #> 2610 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576895.png #> 2611 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2588098.png #> 2612 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3675805.png #> 2613 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120347.png #> 2614 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036134.png #> 2615 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054859.png #> 2616 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574056.png #> 2617 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16734.png #> 2618 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915285.png #> 2619 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052511.png #> 2620 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035369.png #> 2621 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4374269.png #> 2622 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917316.png #> 2623 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051320.png #> 2624 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15090.png #> 2625 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240123.png #> 2626 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134316.png #> 2627 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122154.png #> 2628 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13294.png #> 2629 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15946.png #> 2630 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120070.png #> 2631 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516927.png #> 2632 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15245.png #> 2633 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035098.png #> 2634 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038994.png #> 2635 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9704.png #> 2636 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125126.png #> 2637 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2518789.png #> 2638 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16324.png #> 2639 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122793.png #> 2640 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16299.png #> 2641 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043128.png #> 2642 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039521.png #> 2643 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126349.png #> 2644 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13997.png #> 2645 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047559.png #> 2646 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916074.png #> 2647 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4422336.png #> 2648 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15355.png #> 2649 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13186.png #> 2650 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16910.png #> 2651 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3913020.png #> 2652 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11555.png #> 2653 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3044725.png #> 2654 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14876.png #> 2655 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129302.png #> 2656 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042749.png #> 2657 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036431.png #> 2658 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127586.png #> 2659 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043078.png #> 2660 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125116.png #> 2661 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17421.png #> 2662 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15813.png #> 2663 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3931422.png #> 2664 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259568.png #> 2665 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16708.png #> 2666 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13428.png #> 2667 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4408915.png #> 2668 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15054.png #> 2669 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122099.png #> 2670 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2514397.png #> 2671 <NA> #> 2672 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2508256.png #> 2673 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3144991.png #> 2674 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046704.png #> 2675 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049698.png #> 2676 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915772.png #> 2677 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054212.png #> 2678 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3675550.png #> 2679 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042778.png #> 2680 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139456.png #> 2681 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049329.png #> 2682 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2983209.png #> 2683 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4047646.png #> 2684 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971718.png #> 2685 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929785.png #> 2686 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576491.png #> 2687 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2973405.png #> 2688 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115443.png #> 2689 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976182.png #> 2690 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036831.png #> 2691 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969920.png #> 2692 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971586.png #> 2693 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16900.png #> 2694 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124086.png #> 2695 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042496.png #> 2696 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3058965.png #> 2697 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3141066.png #> 2698 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120508.png #> 2699 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045465.png #> 2700 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242154.png #> 2701 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121034.png #> 2702 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125248.png #> 2703 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116152.png #> 2704 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052883.png #> 2705 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976495.png #> 2706 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3686690.png #> 2707 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134690.png #> 2708 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3931408.png #> 2709 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3133368.png #> 2710 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139448.png #> 2711 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241986.png #> 2712 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054950.png #> 2713 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13973.png #> 2714 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122692.png #> 2715 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976263.png #> 2716 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4686421.png #> 2717 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3925354.png #> 2718 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929956.png #> 2719 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121581.png #> 2720 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054840.png #> 2721 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2566837.png #> 2722 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2581273.png #> 2723 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128263.png #> 2724 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2511708.png #> 2725 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978263.png #> 2726 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15965.png #> 2727 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3068715.png #> 2728 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15827.png #> 2729 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977645.png #> 2730 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575997.png #> 2731 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054844.png #> 2732 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035866.png #> 2733 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046525.png #> 2734 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122441.png #> 2735 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116689.png #> 2736 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14978.png #> 2737 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/8429.png #> 2738 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16888.png #> 2739 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12904.png #> 2740 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16166.png #> 2741 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2565969.png #> 2742 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115293.png #> 2743 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915436.png #> 2744 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/8416.png #> 2745 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14886.png #> 2746 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3931398.png #> 2747 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2572861.png #> 2748 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980077.png #> 2749 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051902.png #> 2750 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4360294.png #> 2751 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979841.png #> 2752 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578692.png #> 2753 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122927.png #> 2754 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916414.png #> 2755 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242230.png #> 2756 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049836.png #> 2757 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121656.png #> 2758 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16771.png #> 2759 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17202.png #> 2760 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049959.png #> 2761 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051387.png #> 2762 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036189.png #> 2763 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980073.png #> 2764 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16813.png #> 2765 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052576.png #> 2766 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2580330.png #> 2767 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046705.png #> 2768 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4029893.png #> 2769 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035853.png #> 2770 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121422.png #> 2771 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115314.png #> 2772 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915821.png #> 2773 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036163.png #> 2774 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3924318.png #> 2775 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14269.png #> 2776 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054845.png #> 2777 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4044121.png #> 2778 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917960.png #> 2779 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053760.png #> 2780 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2573343.png #> 2781 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16954.png #> 2782 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976257.png #> 2783 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10503.png #> 2784 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2565684.png #> 2785 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16742.png #> 2786 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057534.png #> 2787 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120360.png #> 2788 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126330.png #> 2789 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049048.png #> 2790 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4031164.png #> 2791 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14999.png #> 2792 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3163365.png #> 2793 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17262.png #> 2794 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043224.png #> 2795 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15915.png #> 2796 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052065.png #> 2797 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2511557.png #> 2798 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126288.png #> 2799 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11421.png #> 2800 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16846.png #> 2801 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3894905.png #> 2802 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16752.png #> 2803 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116734.png #> 2804 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116186.png #> 2805 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516310.png #> 2806 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3066250.png #> 2807 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979810.png #> 2808 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916742.png #> 2809 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3144996.png #> 2810 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4081136.png #> 2811 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120593.png #> 2812 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15978.png #> 2813 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3044707.png #> 2814 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049566.png #> 2815 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3138835.png #> 2816 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972298.png #> 2817 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16830.png #> 2818 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125783.png #> 2819 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048669.png #> 2820 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12624.png #> 2821 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045378.png #> 2822 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14157.png #> 2823 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052502.png #> 2824 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15888.png #> 2825 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2994680.png #> 2826 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972090.png #> 2827 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14948.png #> 2828 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15820.png #> 2829 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051880.png #> 2830 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13843.png #> 2831 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16747.png #> 2832 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120863.png #> 2833 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14998.png #> 2834 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15854.png #> 2835 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12424.png #> 2836 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15350.png #> 2837 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036434.png #> 2838 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978256.png #> 2839 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3110509.png #> 2840 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2513908.png #> 2841 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2973033.png #> 2842 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15713.png #> 2843 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4218143.png #> 2844 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052013.png #> 2845 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4339831.png #> 2846 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15419.png #> 2847 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037345.png #> 2848 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045642.png #> 2849 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4327530.png #> 2850 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10913.png #> 2851 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515587.png #> 2852 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976500.png #> 2853 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515418.png #> 2854 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969856.png #> 2855 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11366.png #> 2856 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912029.png #> 2857 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16144.png #> 2858 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045202.png #> 2859 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577071.png #> 2860 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4405778.png #> 2861 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916913.png #> 2862 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971880.png #> 2863 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116159.png #> 2864 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16914.png #> 2865 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2508192.png #> 2866 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057517.png #> 2867 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14943.png #> 2868 http://static.nfl.com/static/content/public/static/img/fantasy/transparent/200x200/FLE305635.png #> 2869 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3155134.png #> 2870 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039221.png #> 2871 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14133.png #> 2872 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2981866.png #> 2873 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971036.png #> 2874 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574530.png #> 2875 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3921563.png #> 2876 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971986.png #> 2877 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4463.png #> 2878 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2573091.png #> 2879 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3921688.png #> 2880 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2985844.png #> 2881 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929849.png #> 2882 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049271.png #> 2883 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14802.png #> 2884 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126096.png #> 2885 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577421.png #> 2886 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2582034.png #> 2887 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4331771.png #> 2888 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3140596.png #> 2889 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040198.png #> 2890 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116618.png #> 2891 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126176.png #> 2892 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972562.png #> 2893 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929030.png #> 2894 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116598.png #> 2895 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115496.png #> 2896 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047486.png #> 2897 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17244.png #> 2898 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042880.png #> 2899 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240629.png #> 2900 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15939.png #> 2901 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16949.png #> 2902 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15057.png #> 2903 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115329.png #> 2904 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15872.png #> 2905 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10613.png #> 2906 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3920576.png #> 2907 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576385.png #> 2908 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16805.png #> 2909 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124080.png #> 2910 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15398.png #> 2911 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578305.png #> 2912 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040007.png #> 2913 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14010.png #> 2914 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2565759.png #> 2915 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4010743.png #> 2916 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969716.png #> 2917 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11254.png #> 2918 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053794.png #> 2919 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/8421.png #> 2920 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577292.png #> 2921 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052169.png #> 2922 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16131.png #> 2923 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17450.png #> 2924 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2510713.png #> 2925 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3118081.png #> 2926 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12703.png #> 2927 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3060794.png #> 2928 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124861.png #> 2929 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512218.png #> 2930 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972273.png #> 2931 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4084949.png #> 2932 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915240.png #> 2933 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045123.png #> 2934 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974631.png #> 2935 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979849.png #> 2936 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16872.png #> 2937 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17416.png #> 2938 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242420.png #> 2939 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10462.png #> 2940 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15824.png #> 2941 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126311.png #> 2942 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16774.png #> 2943 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11250.png #> 2944 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977735.png #> 2945 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125961.png #> 2946 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046689.png #> 2947 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929033.png #> 2948 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972135.png #> 2949 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972550.png #> 2950 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059832.png #> 2951 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971592.png #> 2952 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050887.png #> 2953 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123972.png #> 2954 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17333.png #> 2955 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969954.png #> 2956 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3961462.png #> 2957 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13769.png #> 2958 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042884.png #> 2959 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576437.png #> 2960 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980480.png #> 2961 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4058338.png #> 2962 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16930.png #> 2963 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125790.png #> 2964 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13478.png #> 2965 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127082.png #> 2966 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3910120.png #> 2967 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122710.png #> 2968 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122666.png #> 2969 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049726.png #> 2970 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134000.png #> 2971 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128785.png #> 2972 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4331772.png #> 2973 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128687.png #> 2974 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912549.png #> 2975 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045126.png #> 2976 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3119436.png #> 2977 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4423369.png #> 2978 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14019.png #> 2979 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052283.png #> 2980 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049426.png #> 2981 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3676003.png #> 2982 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4043720.png #> 2983 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13992.png #> 2984 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982949.png #> 2985 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11236.png #> 2986 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3928743.png #> 2987 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117912.png #> 2988 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11300.png #> 2989 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12436.png #> 2990 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4043157.png #> 2991 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9677.png #> 2992 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049025.png #> 2993 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042381.png #> 2994 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045268.png #> 2995 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17184.png #> 2996 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14953.png #> 2997 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11337.png #> 2998 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976623.png #> 2999 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12442.png #> 3000 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2519069.png #> 3001 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13812.png #> 3002 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125208.png #> 3003 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2511687.png #> 3004 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16959.png #> 3005 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14967.png #> 3006 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053800.png #> 3007 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2514374.png #> 3008 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115911.png #> 3009 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917834.png #> 3010 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516417.png #> 3011 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977620.png #> 3012 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15829.png #> 3013 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16712.png #> 3014 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2514217.png #> 3015 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16773.png #> 3016 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971499.png #> 3017 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054854.png #> 3018 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3063943.png #> 3019 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049337.png #> 3020 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3530.png #> 3021 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122879.png #> 3022 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053000.png #> 3023 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578754.png #> 3024 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2509488.png #> 3025 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4239787.png #> 3026 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978355.png #> 3027 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127379.png #> 3028 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15278.png #> 3029 http://static.nfl.com/static/content/public/static/img/fantasy/transparent/200x200/ANA638910.png #> 3030 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2567970.png #> 3031 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972118.png #> 3032 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578530.png #> 3033 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049326.png #> 3034 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17141.png #> 3035 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052175.png #> 3036 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17430.png #> 3037 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043274.png #> 3038 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15356.png #> 3039 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12417.png #> 3040 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049895.png #> 3041 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15319.png #> 3042 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3041114.png #> 3043 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057530.png #> 3044 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123681.png #> 3045 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16431.png #> 3046 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042873.png #> 3047 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915769.png #> 3048 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042883.png #> 3049 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045152.png #> 3050 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2986781.png #> 3051 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3924375.png #> 3052 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914384.png #> 3053 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2973627.png #> 3054 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2573947.png #> 3055 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139339.png #> 3056 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12762.png #> 3057 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129292.png #> 3058 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16860.png #> 3059 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12692.png #> 3060 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057998.png #> 3061 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13985.png #> 3062 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050096.png #> 3063 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916590.png #> 3064 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970397.png #> 3065 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576678.png #> 3066 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122439.png #> 3067 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042693.png #> 3068 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13860.png #> 3069 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4051591.png #> 3070 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16037.png #> 3071 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3119152.png #> 3072 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045532.png #> 3073 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974324.png #> 3074 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3957496.png #> 3075 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15905.png #> 3076 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123045.png #> 3077 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17296.png #> 3078 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15064.png #> 3079 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4255255.png #> 3080 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049043.png #> 3081 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3163390.png #> 3082 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2981846.png #> 3083 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10546.png #> 3084 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3939134.png #> 3085 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4411188.png #> 3086 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116632.png #> 3087 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121643.png #> 3088 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123079.png #> 3089 http://static.nfl.com/static/content/public/static/img/fantasy/transparent/200x200/JAR737137.png #> 3090 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4263210.png #> 3091 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053061.png #> 3092 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124087.png #> 3093 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3894927.png #> 3094 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16776.png #> 3095 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16568.png #> 3096 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115307.png #> 3097 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16695.png #> 3098 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970137.png #> 3099 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042744.png #> 3100 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035707.png #> 3101 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053054.png #> 3102 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13288.png #> 3103 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575583.png #> 3104 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127341.png #> 3105 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14441.png #> 3106 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121601.png #> 3107 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12443.png #> 3108 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9598.png #> 3109 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057976.png #> 3110 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576371.png #> 3111 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17253.png #> 3112 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15937.png #> 3113 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970111.png #> 3114 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039721.png #> 3115 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051674.png #> 3116 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9720.png #> 3117 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17214.png #> 3118 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17428.png #> 3119 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052751.png #> 3120 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15955.png #> 3121 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125300.png #> 3122 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2579622.png #> 3123 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052510.png #> 3124 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15460.png #> 3125 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040172.png #> 3126 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3118188.png #> 3127 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17285.png #> 3128 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971436.png #> 3129 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3131528.png #> 3130 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128455.png #> 3131 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980071.png #> 3132 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929841.png #> 3133 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115929.png #> 3134 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042645.png #> 3135 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040516.png #> 3136 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16398.png #> 3137 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038466.png #> 3138 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515893.png #> 3139 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2581513.png #> 3140 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978281.png #> 3141 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11424.png #> 3142 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043238.png #> 3143 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976317.png #> 3144 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042747.png #> 3145 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125884.png #> 3146 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16744.png #> 3147 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14310.png #> 3148 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2469470.png #> 3149 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3918012.png #> 3150 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3908873.png #> 3151 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14014.png #> 3152 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578408.png #> 3153 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240239.png #> 3154 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/5273.png #> 3155 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516320.png #> 3156 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16738.png #> 3157 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16127.png #> 3158 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13240.png #> 3159 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116072.png #> 3160 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122924.png #> 3161 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115478.png #> 3162 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2572846.png #> 3163 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978244.png #> 3164 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2981212.png #> 3165 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576236.png #> 3166 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977698.png #> 3167 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2513199.png #> 3168 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045222.png #> 3169 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16875.png #> 3170 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045472.png #> 3171 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515931.png #> 3172 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15351.png #> 3173 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13940.png #> 3174 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3136308.png #> 3175 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2586700.png #> 3176 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045201.png #> 3177 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16366.png #> 3178 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15765.png #> 3179 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577467.png #> 3180 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116375.png #> 3181 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17223.png #> 3182 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14332.png #> 3183 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042434.png #> 3184 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516316.png #> 3185 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117250.png #> 3186 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3075100.png #> 3187 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578390.png #> 3188 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17467.png #> 3189 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15001.png #> 3190 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969018.png #> 3191 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049640.png #> 3192 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14016.png #> 3193 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912991.png #> 3194 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577110.png #> 3195 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039283.png #> 3196 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051737.png #> 3197 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045206.png #> 3198 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917203.png #> 3199 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516019.png #> 3200 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053027.png #> 3201 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16850.png #> 3202 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574557.png #> 3203 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13404.png #> 3204 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128706.png #> 3205 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2570484.png #> 3206 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14117.png #> 3207 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977613.png #> 3208 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115379.png #> 3209 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578554.png #> 3210 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13340.png #> 3211 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16904.png #> 3212 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10611.png #> 3213 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13251.png #> 3214 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9701.png #> 3215 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/5893.png #> 3216 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930075.png #> 3217 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980441.png #> 3218 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915291.png #> 3219 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13645.png #> 3220 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16419.png #> 3221 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971550.png #> 3222 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3892785.png #> 3223 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16206.png #> 3224 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050534.png #> 3225 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124020.png #> 3226 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16450.png #> 3227 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9793.png #> 3228 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16054.png #> 3229 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12644.png #> 3230 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12716.png #> 3231 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043146.png #> 3232 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2510547.png #> 3233 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10481.png #> 3234 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128688.png #> 3235 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10465.png #> 3236 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12619.png #> 3237 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971542.png #> 3238 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046342.png #> 3239 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049935.png #> 3240 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13395.png #> 3241 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915373.png #> 3242 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123658.png #> 3243 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122800.png #> 3244 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15079.png #> 3245 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139926.png #> 3246 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4076949.png #> 3247 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125916.png #> 3248 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14297.png #> 3249 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17317.png #> 3250 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043217.png #> 3251 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051706.png #> 3252 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050953.png #> 3253 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4422420.png #> 3254 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4243241.png #> 3255 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14995.png #> 3256 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3908989.png #> 3257 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16739.png #> 3258 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17727.png #> 3259 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977770.png #> 3260 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115391.png #> 3261 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047195.png #> 3262 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14070.png #> 3263 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124111.png #> 3264 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2613168.png #> 3265 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971279.png #> 3266 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4002060.png #> 3267 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2517252.png #> 3268 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14961.png #> 3269 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976113.png #> 3270 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980036.png #> 3271 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15276.png #> 3272 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122851.png #> 3273 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17102.png #> 3274 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977653.png #> 3275 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10568.png #> 3276 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12883.png #> 3277 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115302.png #> 3278 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116094.png #> 3279 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13261.png #> 3280 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128346.png #> 3281 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969004.png #> 3282 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15871.png #> 3283 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049589.png #> 3284 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2991684.png #> 3285 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2986639.png #> 3286 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14753.png #> 3287 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971635.png #> 3288 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057991.png #> 3289 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12972.png #> 3290 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14178.png #> 3291 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14981.png #> 3292 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052094.png #> 3293 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120361.png #> 3294 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2582406.png #> 3295 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052023.png #> 3296 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13273.png #> 3297 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4239773.png #> 3298 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15098.png #> 3299 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15787.png #> 3300 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059734.png #> 3301 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045153.png #> 3302 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120365.png #> 3303 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125897.png #> 3304 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12614.png #> 3305 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12728.png #> 3306 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17040.png #> 3307 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046434.png #> 3308 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577172.png #> 3309 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15801.png #> 3310 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516067.png #> 3311 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17210.png #> 3312 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124550.png #> 3313 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574570.png #> 3314 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577042.png #> 3315 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16859.png #> 3316 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14208.png #> 3317 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3910591.png #> 3318 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575978.png #> 3319 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046696.png #> 3320 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16835.png #> 3321 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127365.png #> 3322 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16403.png #> 3323 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122894.png #> 3324 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577115.png #> 3325 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052887.png #> 3326 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2582006.png #> 3327 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17013.png #> 3328 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056493.png #> 3329 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576355.png #> 3330 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054041.png #> 3331 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915102.png #> 3332 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15870.png #> 3333 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512571.png #> 3334 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046392.png #> 3335 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4081809.png #> 3336 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042907.png #> 3337 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2573414.png #> 3338 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3069758.png #> 3339 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121419.png #> 3340 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116735.png #> 3341 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977624.png #> 3342 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515944.png #> 3343 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16235.png #> 3344 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578713.png #> 3345 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2470264.png #> 3346 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15347.png #> 3347 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126065.png #> 3348 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040102.png #> 3349 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12680.png #> 3350 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929863.png #> 3351 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036407.png #> 3352 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10530.png #> 3353 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052516.png #> 3354 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3892890.png #> 3355 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915883.png #> 3356 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11299.png #> 3357 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051321.png #> 3358 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17095.png #> 3359 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11382.png #> 3360 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13283.png #> 3361 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15409.png #> 3362 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979845.png #> 3363 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13278.png #> 3364 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16412.png #> 3365 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116592.png #> 3366 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4294246.png #> 3367 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045217.png #> 3368 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16686.png #> 3369 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15869.png #> 3370 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14990.png #> 3371 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2973599.png #> 3372 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978250.png #> 3373 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052709.png #> 3374 http://static.nfl.com/static/content/public/static/img/fantasy/transparent/200x200/ALL656247.png #> 3375 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13451.png #> 3376 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914595.png #> 3377 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056472.png #> 3378 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045469.png #> 3379 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970256.png #> 3380 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045249.png #> 3381 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047235.png #> 3382 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128747.png #> 3383 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980586.png #> 3384 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046694.png #> 3385 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051458.png #> 3386 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974300.png #> 3387 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051412.png #> 3388 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4334406.png #> 3389 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4262186.png #> 3390 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980070.png #> 3391 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057972.png #> 3392 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052144.png #> 3393 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127302.png #> 3394 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042403.png #> 3395 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16926.png #> 3396 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259349.png #> 3397 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2323439.png #> 3398 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045180.png #> 3399 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2986701.png #> 3400 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040893.png #> 3401 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979532.png #> 3402 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3862861.png #> 3403 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129306.png #> 3404 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035474.png #> 3405 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042733.png #> 3406 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116737.png #> 3407 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16924.png #> 3408 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122794.png #> 3409 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045149.png #> 3410 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128853.png #> 3411 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3700080.png #> 3412 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051368.png #> 3413 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4250485.png #> 3414 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2585785.png #> 3415 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116052.png #> 3416 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115923.png #> 3417 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3133361.png #> 3418 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974249.png #> 3419 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037632.png #> 3420 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971051.png #> 3421 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577354.png #> 3422 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052161.png #> 3423 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040065.png #> 3424 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2148.png #> 3425 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971728.png #> 3426 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/1440.png #> 3427 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17130.png #> 3428 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059104.png #> 3429 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128692.png #> 3430 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15918.png #> 3431 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2582419.png #> 3432 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/1097.png #> 3433 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16976.png #> 3434 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11737.png #> 3435 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4333.png #> 3436 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9329.png #> 3437 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14262.png #> 3438 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16897.png #> 3439 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577602.png #> 3440 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16983.png #> 3441 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14026.png #> 3442 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16852.png #> 3443 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14023.png #> 3444 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13779.png #> 3445 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11609.png #> 3446 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121376.png #> 3447 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578565.png #> 3448 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15954.png #> 3449 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15040.png #> 3450 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2265764.png #> 3451 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120075.png #> 3452 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2579598.png #> 3453 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16268.png #> 3454 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15640.png #> 3455 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056831.png #> 3456 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12988.png #> 3457 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11401.png #> 3458 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14973.png #> 3459 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15112.png #> 3460 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14387.png #> 3461 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16762.png #> 3462 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16025.png #> 3463 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915778.png #> 3464 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9424.png #> 3465 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576461.png #> 3466 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16457.png #> 3467 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13422.png #> 3468 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16891.png #> 3469 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13851.png #> 3470 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16721.png #> 3471 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10138.png #> 3472 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14739.png #> 3473 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915393.png #> 3474 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16849.png #> 3475 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515545.png #> 3476 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577371.png #> 3477 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13248.png #> 3478 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15002.png #> 3479 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15930.png #> 3480 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13482.png #> 3481 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13766.png #> 3482 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2987188.png #> 3483 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056719.png #> 3484 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16902.png #> 3485 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14952.png #> 3486 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2510601.png #> 3487 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576646.png #> 3488 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15246.png #> 3489 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12449.png #> 3490 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2517389.png #> 3491 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515337.png #> 3492 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/8430.png #> 3493 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16937.png #> 3494 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4468.png #> 3495 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046428.png #> 3496 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516283.png #> 3497 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578388.png #> 3498 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14929.png #> 3499 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045361.png #> 3500 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123941.png #> 3501 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13995.png #> 3502 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12438.png #> 3503 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917286.png #> 3504 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15977.png #> 3505 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577219.png #> 3506 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3001171.png #> 3507 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577718.png #> 3508 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049262.png #> 3509 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917548.png #> 3510 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2514468.png #> 3511 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2468550.png #> 3512 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12439.png #> 3513 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3910330.png #> 3514 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979652.png #> 3515 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14152.png #> 3516 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576635.png #> 3517 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3085243.png #> 3518 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14015.png #> 3519 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16727.png #> 3520 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9276.png #> 3521 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980138.png #> 3522 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3144792.png #> 3523 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13777.png #> 3524 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10560.png #> 3525 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16361.png #> 3526 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122680.png #> 3527 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516051.png #> 3528 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052422.png #> 3529 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039982.png #> 3530 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914817.png #> 3531 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976115.png #> 3532 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974333.png #> 3533 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128354.png #> 3534 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2568060.png #> 3535 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126350.png #> 3536 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13968.png #> 3537 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115258.png #> 3538 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125323.png #> 3539 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121563.png #> 3540 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932392.png #> 3541 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912362.png #> 3542 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126348.png #> 3543 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4339830.png #> 3544 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4408860.png #> 3545 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048672.png #> 3546 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059973.png #> 3547 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052515.png #> 3548 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4243164.png #> 3549 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914155.png #> 3550 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042743.png #> 3551 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3119315.png #> 3552 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122684.png #> 3553 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042478.png #> 3554 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915787.png #> 3555 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048705.png #> 3556 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10529.png #> 3557 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128698.png #> 3558 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13608.png #> 3559 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057975.png #> 3560 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3918417.png #> 3561 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15850.png #> 3562 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917847.png #> 3563 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051886.png #> 3564 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2584628.png #> 3565 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116695.png #> 3566 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4081021.png #> 3567 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3921970.png #> 3568 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124544.png #> 3569 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982803.png #> 3570 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980639.png #> 3571 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2471470.png #> 3572 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4411196.png #> 3573 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128801.png #> 3574 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4390082.png #> 3575 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124030.png #> 3576 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971032.png #> 3577 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056487.png #> 3578 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051940.png #> 3579 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971022.png #> 3580 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4266934.png #> 3581 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116693.png #> 3582 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042370.png #> 3583 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050925.png #> 3584 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978064.png #> 3585 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914861.png #> 3586 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045851.png #> 3587 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515422.png #> 3588 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971565.png #> 3589 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576378.png #> 3590 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116620.png #> 3591 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916928.png #> 3592 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121408.png #> 3593 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139626.png #> 3594 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047923.png #> 3595 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972232.png #> 3596 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3118964.png #> 3597 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971373.png #> 3598 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045376.png #> 3599 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978065.png #> 3600 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576666.png #> 3601 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042361.png #> 3602 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120573.png #> 3603 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128396.png #> 3604 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978411.png #> 3605 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049574.png #> 3606 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912679.png #> 3607 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115352.png #> 3608 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128308.png #> 3609 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126363.png #> 3610 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117242.png #> 3611 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045261.png #> 3612 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124103.png #> 3613 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126478.png #> 3614 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116162.png #> 3615 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577919.png #> 3616 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917329.png #> 3617 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052451.png #> 3618 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3921958.png #> 3619 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4290803.png #> 3620 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515838.png #> 3621 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577203.png #> 3622 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125898.png #> 3623 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040024.png #> 3624 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4251200.png #> 3625 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036493.png #> 3626 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971636.png #> 3627 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129304.png #> 3628 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045243.png #> 3629 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3060799.png #> 3630 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052184.png #> 3631 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115384.png #> 3632 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16573.png #> 3633 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929954.png #> 3634 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126120.png #> 3635 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2567868.png #> 3636 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042536.png #> 3637 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3922125.png #> 3638 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576703.png #> 3639 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2520845.png #> 3640 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2514799.png #> 3641 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052996.png #> 3642 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2975680.png #> 3643 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121578.png #> 3644 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039776.png #> 3645 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034945.png #> 3646 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976524.png #> 3647 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051712.png #> 3648 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577651.png #> 3649 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976179.png #> 3650 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574163.png #> 3651 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574558.png #> 3652 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042773.png #> 3653 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2470344.png #> 3654 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2517002.png #> 3655 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576660.png #> 3656 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125119.png #> 3657 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122932.png #> 3658 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039921.png #> 3659 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972820.png #> 3660 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053777.png #> 3661 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3062371.png #> 3662 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916585.png #> 3663 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3137842.png #> 3664 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976546.png #> 3665 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040542.png #> 3666 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3928934.png #> 3667 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034773.png #> 3668 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052021.png #> 3669 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039942.png #> 3670 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17390.png #> 3671 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574396.png #> 3672 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971388.png #> 3673 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059941.png #> 3674 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4421448.png #> 3675 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2981069.png #> 3676 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051330.png #> 3677 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3844004.png #> 3678 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576443.png #> 3679 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516314.png #> 3680 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050401.png #> 3681 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2514802.png #> 3682 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575636.png #> 3683 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3119531.png #> 3684 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576365.png #> 3685 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116133.png #> 3686 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3055604.png #> 3687 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15927.png #> 3688 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974240.png #> 3689 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512704.png #> 3690 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117248.png #> 3691 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3140151.png #> 3692 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128699.png #> 3693 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122934.png #> 3694 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048635.png #> 3695 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139092.png #> 3696 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970255.png #> 3697 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128311.png #> 3698 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046702.png #> 3699 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969125.png #> 3700 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037476.png #> 3701 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115977.png #> 3702 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972575.png #> 3703 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116702.png #> 3704 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919077.png #> 3705 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2514505.png #> 3706 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915238.png #> 3707 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978275.png #> 3708 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042468.png #> 3709 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978519.png #> 3710 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4329476.png #> 3711 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3924355.png #> 3712 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3938130.png #> 3713 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978207.png #> 3714 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3138756.png #> 3715 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046323.png #> 3716 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4251009.png #> 3717 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036833.png #> 3718 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116658.png #> 3719 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974612.png #> 3720 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046693.png #> 3721 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2981862.png #> 3722 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056440.png #> 3723 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2573312.png #> 3724 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123982.png #> 3725 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121518.png #> 3726 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2987317.png #> 3727 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576480.png #> 3728 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120858.png #> 3729 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2471491.png #> 3730 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051938.png #> 3731 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2273.png #> 3732 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051820.png #> 3733 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046441.png #> 3734 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16623.png #> 3735 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980123.png #> 3736 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/5749.png #> 3737 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129309.png #> 3738 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10238.png #> 3739 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17495.png #> 3740 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2996095.png #> 3741 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15389.png #> 3742 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15616.png #> 3743 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516357.png #> 3744 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14073.png #> 3745 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050015.png #> 3746 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3133168.png #> 3747 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15926.png #> 3748 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128814.png #> 3749 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976299.png #> 3750 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979695.png #> 3751 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15187.png #> 3752 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14879.png #> 3753 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2466005.png #> 3754 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15904.png #> 3755 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139591.png #> 3756 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4290778.png #> 3757 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040134.png #> 3758 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13197.png #> 3759 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040507.png #> 3760 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059773.png #> 3761 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16593.png #> 3762 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3087801.png #> 3763 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977881.png #> 3764 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3041097.png #> 3765 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979985.png #> 3766 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/5209.png #> 3767 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575910.png #> 3768 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050022.png #> 3769 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16943.png #> 3770 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/8627.png #> 3771 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/5526.png #> 3772 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046412.png #> 3773 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057986.png #> 3774 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052061.png #> 3775 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139487.png #> 3776 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3118374.png #> 3777 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576261.png #> 3778 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3931782.png #> 3779 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053315.png #> 3780 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577243.png #> 3781 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12482.png #> 3782 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15803.png #> 3783 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14878.png #> 3784 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15407.png #> 3785 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048030.png #> 3786 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4459.png #> 3787 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3078660.png #> 3788 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040826.png #> 3789 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14874.png #> 3790 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123048.png #> 3791 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/8644.png #> 3792 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575214.png #> 3793 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115966.png #> 3794 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575660.png #> 3795 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17452.png #> 3796 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577692.png #> 3797 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886636.png #> 3798 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3918026.png #> 3799 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512191.png #> 3800 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122799.png #> 3801 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2521161.png #> 3802 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14360.png #> 3803 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576237.png #> 3804 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929855.png #> 3805 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124608.png #> 3806 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971435.png #> 3807 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139485.png #> 3808 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4421390.png #> 3809 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576280.png #> 3810 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14005.png #> 3811 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052662.png #> 3812 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16749.png #> 3813 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15755.png #> 3814 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17465.png #> 3815 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15893.png #> 3816 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124022.png #> 3817 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974712.png #> 3818 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11307.png #> 3819 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051762.png #> 3820 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4422215.png #> 3821 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575408.png #> 3822 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15457.png #> 3823 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3843406.png #> 3824 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4057659.png #> 3825 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972282.png #> 3826 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17284.png #> 3827 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576165.png #> 3828 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2573300.png #> 3829 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039226.png #> 3830 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972283.png #> 3831 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10456.png #> 3832 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048924.png #> 3833 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16055.png #> 3834 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577253.png #> 3835 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17133.png #> 3836 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049987.png #> 3837 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916451.png #> 3838 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16950.png #> 3839 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128267.png #> 3840 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4328969.png #> 3841 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126072.png #> 3842 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11278.png #> 3843 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121583.png #> 3844 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16040.png #> 3845 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13587.png #> 3846 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575553.png #> 3847 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034782.png #> 3848 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14894.png #> 3849 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124979.png #> 3850 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914267.png #> 3851 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4426310.png #> 3852 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16803.png #> 3853 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043216.png #> 3854 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051711.png #> 3855 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14518.png #> 3856 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4047769.png #> 3857 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040143.png #> 3858 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2570994.png #> 3859 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11247.png #> 3860 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2581598.png #> 3861 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047519.png #> 3862 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2580343.png #> 3863 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11258.png #> 3864 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16024.png #> 3865 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043097.png #> 3866 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3041102.png #> 3867 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576303.png #> 3868 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17396.png #> 3869 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577283.png #> 3870 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052163.png #> 3871 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054030.png #> 3872 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/8544.png #> 3873 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974212.png #> 3874 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126113.png #> 3875 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16969.png #> 3876 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11383.png #> 3877 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14129.png #> 3878 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515416.png #> 3879 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16783.png #> 3880 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515934.png #> 3881 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3928461.png #> 3882 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3135736.png #> 3883 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3140525.png #> 3884 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14017.png #> 3885 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16921.png #> 3886 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16994.png #> 3887 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980105.png #> 3888 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040146.png #> 3889 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970017.png #> 3890 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127374.png #> 3891 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15952.png #> 3892 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929927.png #> 3893 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3843750.png #> 3894 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15296.png #> 3895 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971289.png #> 3896 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117131.png #> 3897 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917814.png #> 3898 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14895.png #> 3899 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045199.png #> 3900 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577245.png #> 3901 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576873.png #> 3902 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122842.png #> 3903 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13204.png #> 3904 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13213.png #> 3905 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895788.png #> 3906 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574474.png #> 3907 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576408.png #> 3908 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14193.png #> 3909 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047969.png #> 3910 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912576.png #> 3911 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2968226.png #> 3912 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3705353.png #> 3913 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919544.png #> 3914 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15855.png #> 3915 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116690.png #> 3916 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052624.png #> 3917 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970183.png #> 3918 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14028.png #> 3919 http://static.nfl.com/static/content/public/static/img/fantasy/transparent/200x200/PHI112826.png #> 3920 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930272.png #> 3921 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124074.png #> 3922 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3119996.png #> 3923 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15832.png #> 3924 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4339834.png #> 3925 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3060919.png #> 3926 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2514123.png #> 3927 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123212.png #> 3928 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040644.png #> 3929 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116563.png #> 3930 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13203.png #> 3931 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11788.png #> 3932 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11238.png #> 3933 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129453.png #> 3934 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917846.png #> 3935 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15848.png #> 3936 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4294229.png #> 3937 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971888.png #> 3938 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042728.png #> 3939 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14885.png #> 3940 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122761.png #> 3941 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4243243.png #> 3942 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117846.png #> 3943 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128696.png #> 3944 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122442.png #> 3945 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16833.png #> 3946 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127378.png #> 3947 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2517248.png #> 3948 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980380.png #> 3949 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16195.png #> 3950 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16735.png #> 3951 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2572986.png #> 3952 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979584.png #> 3953 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4339173.png #> 3954 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14274.png #> 3955 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3918008.png #> 3956 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2511832.png #> 3957 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574553.png #> 3958 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15305.png #> 3959 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043215.png #> 3960 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121433.png #> 3961 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117414.png #> 3962 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3894908.png #> 3963 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13338.png #> 3964 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123667.png #> 3965 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16008.png #> 3966 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976308.png #> 3967 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13697.png #> 3968 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3921654.png #> 3969 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127305.png #> 3970 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577076.png #> 3971 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3894939.png #> 3972 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2973956.png #> 3973 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2986767.png #> 3974 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13544.png #> 3975 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16819.png #> 3976 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2470860.png #> 3977 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115472.png #> 3978 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134683.png #> 3979 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971519.png #> 3980 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3931774.png #> 3981 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116423.png #> 3982 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15809.png #> 3983 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122173.png #> 3984 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515405.png #> 3985 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916064.png #> 3986 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15992.png #> 3987 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13264.png #> 3988 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577293.png #> 3989 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3957450.png #> 3990 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979535.png #> 3991 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052080.png #> 3992 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043147.png #> 3993 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574756.png #> 3994 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512591.png #> 3995 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056913.png #> 3996 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929926.png #> 3997 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15612.png #> 3998 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2161946.png #> 3999 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13336.png #> 4000 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976184.png #> 4001 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2519211.png #> 4002 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042721.png #> 4003 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13252.png #> 4004 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970724.png #> 4005 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972155.png #> 4006 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14143.png #> 4007 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3140807.png #> 4008 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2986898.png #> 4009 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15852.png #> 4010 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978946.png #> 4011 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576971.png #> 4012 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16894.png #> 4013 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16796.png #> 4014 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11689.png #> 4015 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14928.png #> 4016 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14041.png #> 4017 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053814.png #> 4018 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2513131.png #> 4019 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16892.png #> 4020 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14197.png #> 4021 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14030.png #> 4022 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13066.png #> 4023 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16333.png #> 4024 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971660.png #> 4025 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16865.png #> 4026 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2511692.png #> 4027 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16222.png #> 4028 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13585.png #> 4029 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14971.png #> 4030 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577503.png #> 4031 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10062.png #> 4032 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/7439.png #> 4033 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16047.png #> 4034 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16680.png #> 4035 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516338.png #> 4036 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977676.png #> 4037 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16997.png #> 4038 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056893.png #> 4039 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15013.png #> 4040 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10472.png #> 4041 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127376.png #> 4042 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120540.png #> 4043 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2508328.png #> 4044 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126158.png #> 4045 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116132.png #> 4046 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12506.png #> 4047 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577892.png #> 4048 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3957316.png #> 4049 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059945.png #> 4050 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125414.png #> 4051 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039970.png #> 4052 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116195.png #> 4053 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11364.png #> 4054 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/5362.png #> 4055 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047558.png #> 4056 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2470916.png #> 4057 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039924.png #> 4058 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9592.png #> 4059 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2580052.png #> 4060 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14900.png #> 4061 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15003.png #> 4062 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2468368.png #> 4063 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3957543.png #> 4064 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10605.png #> 4065 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123714.png #> 4066 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052991.png #> 4067 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2990959.png #> 4068 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045466.png #> 4069 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2513770.png #> 4070 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039793.png #> 4071 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17423.png #> 4072 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576449.png #> 4073 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576389.png #> 4074 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3935107.png #> 4075 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574931.png #> 4076 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17091.png #> 4077 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577661.png #> 4078 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125253.png #> 4079 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116661.png #> 4080 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2309428.png #> 4081 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15974.png #> 4082 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574404.png #> 4083 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13272.png #> 4084 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512523.png #> 4085 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3007919.png #> 4086 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14145.png #> 4087 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17391.png #> 4088 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13387.png #> 4089 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14156.png #> 4090 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4227184.png #> 4091 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052066.png #> 4092 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139447.png #> 4093 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051719.png #> 4094 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4338875.png #> 4095 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11295.png #> 4096 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3926590.png #> 4097 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3074230.png #> 4098 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17392.png #> 4099 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15515.png #> 4100 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121396.png #> 4101 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979554.png #> 4102 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129455.png #> 4103 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126196.png #> 4104 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2579846.png #> 4105 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16795.png #> 4106 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125991.png #> 4107 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/5557.png #> 4108 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15204.png #> 4109 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16797.png #> 4110 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3931761.png #> 4111 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16323.png #> 4112 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3065510.png #> 4113 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969241.png #> 4114 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15836.png #> 4115 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9761.png #> 4116 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059165.png #> 4117 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14902.png #> 4118 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115251.png #> 4119 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12550.png #> 4120 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115399.png #> 4121 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972765.png #> 4122 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2476373.png #> 4123 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16792.png #> 4124 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046413.png #> 4125 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3144999.png #> 4126 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15284.png #> 4127 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4002672.png #> 4128 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970038.png #> 4129 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048976.png #> 4130 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17169.png #> 4131 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12699.png #> 4132 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13726.png #> 4133 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3060410.png #> 4134 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047912.png #> 4135 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17165.png #> 4136 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122421.png #> 4137 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2566643.png #> 4138 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915230.png #> 4139 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116384.png #> 4140 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14901.png #> 4141 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16285.png #> 4142 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14204.png #> 4143 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577731.png #> 4144 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051861.png #> 4145 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2582138.png #> 4146 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134314.png #> 4147 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125891.png #> 4148 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040071.png #> 4149 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512657.png #> 4150 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045163.png #> 4151 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13228.png #> 4152 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14904.png #> 4153 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134013.png #> 4154 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14007.png #> 4155 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039794.png #> 4156 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2981998.png #> 4157 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2567213.png #> 4158 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512593.png #> 4159 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4337702.png #> 4160 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576498.png #> 4161 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2988624.png #> 4162 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982809.png #> 4163 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045763.png #> 4164 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982804.png #> 4165 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11270.png #> 4166 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574549.png #> fantasy_data_id sleeper_id years_exp sportradar_id #> 1 19898 5062 NA 53d25371-e3ce-4030-8d0a-82def5cdc600 #> 2 20763 6058 NA 0c8b0581-9ed2-488b-bcaa-ef783261dfd1 #> 3 20888 5864 NA c025b513-9431-4097-bc25-9777bf08f846 #> 4 13135 908 NA f1879cfa-4c07-4140-9da0-c7ebe9af2dfd #> 5 22171 7169 NA 528bf5c9-1d23-40c3-adda-df21f8f0e2ab #> 6 18293 3527 NA 30e539c3-74dd-4a9a-9ebb-4bdd0f0d39f8 #> 7 4490 172 NA 06dab231-dbbd-4ccb-8233-3c2d70318ee3 #> 8 15177 1540 NA 4f5ca039-21f3-4045-9c2e-c0b4d5d564c5 #> 9 13415 972 NA 9f3b934e-52d6-4e16-ae92-d3e60be10493 #> 10 13871 1068 NA e972d67d-8302-4c64-9c1c-bc3121b90af4 #> 11 21941 7432 NA 2d969b4e-4da9-4bf6-abd7-02c5e607c080 #> 12 21251 6344 NA cff07c85-137a-4496-8df9-4f96f68f1318 #> 13 21635 6711 NA 56992f39-70e7-4b6a-86da-0a4776504e7a #> 14 18521 3714 NA 7757384a-6b03-41fb-9c77-3c016a968d1c #> 15 15011 1442 NA 6c7704c2-f833-46aa-9f9c-d975d5ad1297 #> 16 20879 5900 NA 26d3edb9-e572-4272-835a-21b63200ea64 #> 17 21141 6304 NA cf0c253d-45bd-48f5-9602-88c3d9ca1082 #> 18 15069 1474 NA 0606c9ab-8351-4a38-8ca4-ceb16e982f6a #> 19 16153 1920 NA 6399b33c-6d3d-4fc5-b142-1a5deb33ef76 #> 20 16911 2454 NA 376a61bd-de05-4fb1-a698-7f93fd1a102c #> 21 16861 2405 NA e9799059-f592-47e8-aab3-e2027fe7b148 #> 22 22083 6948 NA 2040899a-0b04-4de7-900b-f9e6861c6150 #> 23 20738 5871 NA f68685e7-9904-47bc-b39a-e1c813435385 #> 24 16813 2357 NA 023af11a-3aa1-4266-b163-31cf6369ef3b #> 25 21124 6273 NA 344f10b9-b272-4f2f-8d1e-468f38f59f5e #> 26 18524 3716 NA 64d8dddf-b3fe-4146-8d08-36e9c0b6eede #> 27 14585 1243 NA be62bf39-c737-416f-a1ea-6b9d61684a62 #> 28 21266 6570 NA 8b7ee20f-238e-4b6f-b43d-4f9624bf2534 #> 29 19001 4155 NA f4f08533-c692-4aba-84fe-fc21101c7bda #> 30 15094 1496 NA b6fe2eb8-3692-450a-98b3-11e47c8b6711 #> 31 21160 6560 NA 1dc22599-4ce9-49c2-bc8a-179a50e13cc1 #> 32 16894 2437 NA f19b687d-b81f-4104-9151-92e2af7d234d #> 33 11735 658 NA e017e12b-07a7-4a35-b837-2faa9ffe3ce8 #> 34 19079 4233 NA cd0f4ef0-9914-4125-be4d-804a72350ceb #> 35 15854 4958 NA 99c9de87-7fe1-4d5e-928e-586f48af2d79 #> 36 20085 5158 NA 48700b7b-210c-4ced-9c57-3e21162e7752 #> 37 16397 2084 NA 036131ed-3862-4f06-8379-084d3b2352d5 #> 38 16792 2336 NA e2a4fca8-0482-442e-93f7-3cef0fb2358d #> 39 20088 5161 NA 83849bc5-0b6c-4c76-b622-9c7042758e97 #> 40 19965 5069 NA ec198436-31b1-458e-a47b-9d1cd134300f #> 41 16845 2389 NA 4f090881-03fc-4a34-b02f-fd1df1e411de #> 42 18909 4063 NA ee399a97-6868-4db1-9381-09073914c2d6 #> 43 19071 4225 NA 23f29e42-92e5-41b2-88eb-b9fb17a0eede #> 44 16819 2363 NA 78eb0872-fff0-4fc2-94ee-6a5c518ecaa5 #> 45 19591 4689 NA 1fc0af83-3c6e-4f4d-aadf-233e501c7241 #> 46 18037 3276 NA 25a643a9-3b59-4739-8430-2713a818fb69 #> 47 13749 1038 NA 5197def5-f444-4561-ad28-7aac10dc748e #> 48 22383 7398 NA 75513062-bfe5-4e32-af04-04a805c0fd8d #> 49 19433 4552 NA 983aee62-70d8-4d39-a857-da6fee82bef1 #> 50 18180 3417 NA dc447507-2380-494c-96c9-e0edb2679a3c #> 51 22002 7040 NA 41dabf34-2055-4420-8aef-c222d7df48e6 #> 52 22004 6781 NA b87d80b7-f129-4f3d-938a-1272f8122589 #> 53 14042 1122 NA 99149c69-e14f-4e05-9c3a-8ae7e3b1f00b #> 54 11437 608 NA a50e3085-370b-4fd2-b79a-28d3b9c5c1c7 #> 55 21885 7004 NA 6e9763f5-2f5c-45d4-b50b-d7bbf91e1a65 #> 56 5929 236 NA 6a3bcfd5-a855-4173-a2aa-94e2c77c8268 #> 57 3100 112 NA edaad8e3-62cd-4715-b225-0010ee9825a0 #> 58 20889 5849 NA dd5a6b6e-ffae-45a5-b8e6-718a9251f374 #> 59 21866 6778 NA 23461354-f2d7-4e36-9046-fe9cde6dd413 #> 60 16907 2450 NA e97f5ca9-186e-4346-ae65-1cd757ada455 #> 61 18003 3242 NA a0b93053-d349-4dd1-a840-24577102699b #> 62 19919 5000 NA d8d9b161-7ef4-42bf-89b7-7edf806a0ad1 #> 63 19129 4283 NA d16f5060-d562-492b-9ab8-4a495920e808 #> 64 21773 6951 NA aebf7b65-da15-4499-b1af-6687fa50b2e4 #> 65 18253 3488 NA 39d12962-65a4-4107-8924-56f48fce31ef #> 66 21782 7087 NA 1dc6b133-355f-451e-856f-d02839681578 #> 67 16881 2425 NA 1686f2b7-90e8-4d0a-89f8-415310ae2bd8 #> 68 20729 5866 NA db3a0416-6758-485d-89e1-806af99e0991 #> 69 18927 4081 NA 5ce20f3e-0f02-4f53-a2ef-5b076361f2b1 #> 70 22029 6808 NA 476d6de7-0d10-4f9c-96c9-2bd289052dce #> 71 13913 1088 NA d96246d7-aa2c-4d05-9c58-8d6bc5e20cdf #> 72 21140 6303 NA c0221755-d6a6-4f55-9ed3-672a9625ee6c #> 73 18416 3629 NA 87f9b9a9-5362-4947-8fc4-3b718b00566a #> 74 12897 842 NA cb332cbe-4490-48c6-9a21-046475206e07 #> 75 16785 2329 NA 90d9c6b2-3970-45e1-a558-b68a977a8995 #> 76 19176 4323 NA 7574eb56-a34a-419e-9682-c4788cfe2019 #> 77 21208 6308 NA 38b32cb2-42a0-44ce-87ae-bf16c338b3af #> 78 18057 3296 NA a2451bf7-83dd-496c-b527-c14d8d518598 #> 79 21493 6493 NA f5153e47-fc18-4441-afc0-10c8a5ffec53 #> 80 16816 2360 NA 52f4a43a-64a9-4d69-a9e2-28bd60f68e49 #> 81 19659 4741 NA d479a777-b53b-4bbf-a8e4-0c1675ac48df #> 82 19403 4526 NA a2368d42-9e6b-4268-883a-f23ef7ef5638 #> 83 20835 5962 NA 7e8f4076-25e1-41e5-8e71-f70397a3729d #> 84 19314 4451 NA 1af02026-aef5-4dcb-baa2-9c9c91d22533 #> 85 15509 1684 NA 51952c7b-11c5-4229-baf9-08d4694cc2ad #> 86 20820 5915 NA 04f9a4be-b236-4eed-9bc4-794f615ccd13 #> 87 14986 1426 NA 5c48ade7-4b9a-4757-9643-87a6e3839e2b #> 88 21318 6373 NA 3ad7f1fa-2389-4cea-94a1-28c5479ca542 #> 89 22358 7370 NA 4dcd8f79-23db-4555-a4dc-2eebd409e508 #> 90 20194 5197 NA f7365f88-4cd0-42e9-9e4e-7bade08e9e5b #> 91 5571 223 NA b6a61b38-5cfa-46eb-b1c5-b0255d7ebaf5 #> 92 19815 4950 NA ebcd87ce-218c-4144-810b-921c2f59d6e8 #> 93 20081 5154 NA 18ccb826-5584-4f6a-8434-cf9a3b927b0f #> 94 8485 359 NA 7cfc5f12-e344-4a41-8f54-52a5c2bbd52d #> 95 21475 6455 NA 7579c408-f3d3-43a6-a05a-2aec8291a618 #> 96 16173 1934 NA ca2ced2e-dc69-403b-8675-b92b7a0b3a75 #> 97 22191 7189 NA 2899f9bf-018a-4c91-8fe8-c42a5b6c12c4 #> 98 16107 1887 NA 05b308c7-13f6-4ea7-baed-4314896663cb #> 99 18467 3667 NA 90434aff-bd29-44be-8e76-056e412a9624 #> 100 22075 6836 NA 1eae2610-be1d-4f53-82a2-28cf4a2db352 #> 101 19868 5044 NA 83d45661-2687-4ca9-ac45-91beac7b7082 #> 102 22190 7188 NA 74761bca-f09c-4a06-8dd4-5f3cf2a2b897 #> 103 20938 6140 NA fafdc4a3-ddbd-48b4-b10e-cd8a0189dae1 #> 104 16520 2167 NA 4ba33131-8214-45bf-9ce1-5ac08f1b68c5 #> 105 14983 1423 NA 829307ad-fb1d-4c7b-b073-3098be9464e7 #> 106 22153 7151 NA 25396df1-3597-468c-b1d7-ce40edb0f7f2 #> 107 21933 7058 NA c588e277-fc9e-4187-9358-2b9e1a2b0cd9 #> 108 17942 3181 NA cc9c2006-e72b-4073-afcc-69c187cb28b7 #> 109 15203 1561 NA c639a18a-ee1a-46ed-8707-580711fa33db #> 110 16764 2308 NA 6bc85af5-fc58-4656-82da-d02780a0f6f6 #> 111 20233 5505 NA e47c71c1-2e10-42d0-b5f8-5651909a0ff4 #> 112 13029 875 NA 750c6332-6848-4303-9916-a6ed49833a56 #> 113 19899 5042 NA 6524f633-b8dd-439d-82df-cd4f9f07ad29 #> 114 20942 6174 NA f413306f-0134-467d-82d0-df73f5f7bbe5 #> 115 17059 2592 NA e1fe1900-fae3-414e-8530-55eece80471f #> 116 21009 6116 NA c41a772c-8458-4f5d-b7b5-8c2a23406fa3 #> 117 16914 2457 NA be07b323-a23c-4589-9fe0-29ae6a537de9 #> 118 21884 6838 NA 73afc75b-68f0-4cb0-823d-5bfe33969766 #> 119 16378 2073 NA 955093e0-39aa-48b4-b34d-259b369e6535 #> 120 13462 989 NA 53b0a001-2efe-4009-8ff1-572b687d4397 #> 121 18043 3282 NA e4250936-5b20-4f18-80cd-7a0b8fa7964a #> 122 21951 6881 NA c498bd15-f54b-4371-ab38-549b1c6d9201 #> 123 20857 5895 NA e02c98ff-b5d8-4647-a4ed-bba595ae9e5a #> 124 19565 4666 NA a8c79523-3d0e-48dd-b4c6-e3d8afd24a13 #> 125 21105 6208 NA 67da0db1-ed58-435d-b8bf-f7ffa02d8a24 #> 126 15450 1666 NA 0555927e-18ad-40f9-b2d6-f63d533d91aa #> 127 21989 7012 NA 86d7dd69-9957-4853-b069-5ad7e35edc64 #> 128 17983 3222 NA a2a587d3-2971-41f5-a5d4-828d9cf1494e #> 129 19125 4279 NA c69c8d25-f81b-4240-a361-6bb328ad9474 #> 130 18921 4075 NA f7d0d3ea-6de1-4adc-b431-166c6dde9cc9 #> 131 21457 6531 NA e0924e2e-74c2-4ae7-8d2a-4579871c6c29 #> 132 16991 2531 NA 530f22b9-0f36-4ad1-9ead-ea44292b83a8 #> 133 20007 5332 NA 0a415a08-ea30-40b2-aac9-42689e3e996a #> 134 14567 1238 NA 8bbd5520-52e9-4187-889f-bd4552622869 #> 135 22144 7141 NA aecf0860-27aa-49ac-b133-69fe2c4c63e1 #> 136 732 24 NA 7e648a0b-fdc8-4661-a587-5826f2cac11b #> 137 20089 5142 NA bd684ac3-89d5-4b6b-84df-2a4a9b04cae1 #> 138 4633 178 NA 1f09583f-dcc1-43e8-a7fc-f063d2c96508 #> 139 21549 6585 NA fc793c8d-b29d-46f8-8f89-8e2964ff4480 #> 140 16771 2315 NA 14263792-d1d3-4b0c-85f7-2a85b4aed6f1 #> 141 19924 5004 NA d033bdd4-2a32-4b08-a9a7-8365933816c3 #> 142 19033 4187 NA 26873576-2bbd-4622-bc3e-ec847577855b #> 143 20900 6002 NA c44534f8-a567-40e7-b51e-1a72c49cb24e #> 144 19034 4188 NA f9c86838-11e5-4582-a03e-c15e02b2013c #> 145 17988 3227 NA 486c2ff3-5e42-4bad-9849-2084ad0af423 #> 146 15087 1489 NA f4ebaa64-aebe-4a32-b11e-f4f47f511770 #> 147 20093 5146 NA a6b00103-9678-41e4-b310-fef78c2a6e43 #> 148 16531 2172 NA ee9c975e-68f9-49cc-886d-f1d00286305d #> 149 15063 1469 NA 543a98a6-42fb-4fbc-9899-f0ee59b1a114 #> 150 20870 5874 NA 37095914-53be-4d16-b5c7-2194dbb6d6c2 #> 151 13370 963 NA 5b712aed-201c-43dd-b978-b7b6ef91178e #> 152 19843 4973 NA 1b125fc4-5dd9-4eb9-a42f-048e61ca42b7 #> 153 20662 5754 NA 97e65d1d-c738-4812-840e-030f0242bc29 #> 154 19802 4981 NA 926e2674-52d6-4cec-9991-46ee85cc8cfd #> 155 21142 6271 NA d8281390-f081-41e5-b55e-75779536fe94 #> 156 21071 5970 NA 4484c7d1-025a-4f26-8e9b-48503afb0c68 #> 157 22176 7174 NA 9c2185ab-5dcb-485e-950b-e035d9edb692 #> 158 13291 947 NA 0b3217b9-ba37-4222-95cb-a7a222441e8b #> 159 22177 7175 NA 40f11577-5646-4da3-99ba-ea8b038b17a3 #> 160 20224 5241 NA d90a2ae8-cbd6-40cd-a545-3501c93c0822 #> 161 20006 5110 NA 4501e6f4-4683-4357-b241-8b4a0b6aae81 #> 162 17914 3155 NA 2e0badcd-b78c-40ee-a83b-a1bbb36bc545 #> 163 20487 5695 NA 5ec01774-4a79-40aa-be4a-e33c71bd5bf4 #> 164 20227 5244 NA 35b82de6-eded-4f37-9bcd-33eb8ed001bd #> 165 17491 2986 NA 7d58beec-bd16-475d-bf08-9137b86aef17 #> 166 21206 6306 NA d027528c-6fb1-41bb-9ede-4f45ec731fdd #> 167 18205 3441 NA 7e7b5ec8-dcf4-409f-a0eb-99246b7493c5 #> 168 22010 6930 NA a3f67680-66f1-4efc-b21b-badd19467cc9 #> 169 16779 2323 NA 402f063b-4703-4729-b6ea-3a9d45a314c7 #> 170 16128 1902 NA f8f7a845-ae30-404c-8800-66bd643b6d2d #> 171 18027 3266 NA 1880777d-9908-4a32-a492-264b4fec967d #> 172 12829 825 NA c3d6c803-1c91-4bd9-956c-7f6c292558c5 #> 173 22202 7200 NA e8b1322a-6162-4535-b6af-4ca60ce8b09c #> 174 20867 6023 NA 0b93712a-3c39-4d73-aca5-ca04ed05bd59 #> 175 18917 4071 NA bf9749c6-6609-456e-a3eb-b8cab21dd76a #> 176 19927 5301 NA 791b7f98-c5ff-4145-ab8c-c67e3ca801c4 #> 177 19967 5078 NA 45c926b6-0f2f-4d29-b806-d21e4ea89ba2 #> 178 21174 6243 NA ac84c815-7ed4-49b2-b84a-08cf6c016eb5 #> 179 22098 6986 NA f5fc76fa-4381-4026-b8c0-384cb4dff19b #> 180 21414 6634 NA ea8d0a80-2de3-4715-bcce-710f625ccb6a #> 181 18160 3399 NA 708e045b-17fd-4f81-87e3-8686b165a278 #> 182 19960 5071 NA 83128a20-392f-4ca7-878e-689c6e6dfbfc #> 183 17978 3217 NA 852b00dd-fd1c-4edb-809d-912a6472cd07 #> 184 21908 7019 NA a5a7243e-d842-400d-89ff-5d451338426f #> 185 17999 3238 NA 41524c86-8ab6-42e9-871b-a00e29cd2705 #> 186 14059 1128 NA 30f98123-214c-4f32-b29c-ac6f3ff56f39 #> 187 21900 6818 NA 904f702b-e8b1-4fef-a4a0-278d18cc15e3 #> 188 22196 7194 NA 1c1c956f-0f4c-4b22-98f2-6bbbd5e4a504 #> 189 21358 6602 NA 457123e2-aeb5-41c7-b2a8-ddc42c04f977 #> 190 21886 7122 NA 6f695364-f31f-420d-8baa-434539e2b12d #> 191 3341 125 NA 0333b8f0-3aab-45aa-a684-6d402a309413 #> 192 21487 6488 NA cc4d595a-3fd3-49ed-a332-8d9bab9159fd #> 193 14891 1369 NA 97c96dce-9b33-4d0e-ba01-5eb629192d19 #> 194 19209 4353 NA cb68b95f-ef6f-4e5e-b861-8bfe6cfeacf5 #> 195 13085 893 NA 80cd039e-08e5-48ef-935d-ac46db36460d #> 196 20914 5910 NA cfcac921-0ac6-457c-9f37-82324327f3e3 #> 197 21170 6486 NA 98074bf2-0c4d-48d4-b3c9-52f707a22280 #> 198 21990 6934 NA ab3ce81f-6625-45d3-aa6d-79f95ae4f503 #> 199 18028 3267 NA c9e9ca73-6605-42cb-ab44-2230dcea187a #> 200 15077 1480 NA a3855ea8-e71c-4028-86fb-5a1abbd94488 #> 201 22027 7112 NA b4908ca3-f723-4d41-ab98-58acf0aa4a94 #> 202 20008 5298 NA 20c1c6e8-509a-46a6-8edf-d402d56c20b2 #> 203 14688 1264 NA 20a0bad2-d530-4ff4-a2df-5c0a21a1f5db #> 204 21482 6432 NA 209307c5-8e39-44a6-8879-5e033e017eb4 #> 205 22199 7197 NA 0782b3a2-9693-40f6-aff2-a21bc8fa4c5d #> 206 12822 823 NA 4b62138a-e222-408c-8595-936d1a194eca #> 207 21982 6807 NA bc4c0c7d-a6f4-4cff-95ec-a4d0523c2232 #> 208 21515 6544 NA 171e1cf6-8bcc-46f1-8afe-47756967611c #> 209 20755 5879 NA 4706e72c-c7ef-4fa0-b16b-e864a1085dd7 #> 210 18930 4084 NA b36539fa-de45-4cfd-90be-49d14149e64e #> 211 21996 6867 NA 32575119-3aca-47cb-aaaf-162c48b7d372 #> 212 20099 5141 NA a84d5d5d-3fa3-483e-b737-6587971decc5 #> 213 13892 1078 NA 0cc99dff-5895-48ed-9f30-e70e916bb52a #> 214 18064 3303 NA 99d79bb9-45aa-4c64-99aa-a92ba2c278af #> 215 20245 5753 NA 07247409-1cf8-4e67-a05b-15de83ca1bf9 #> 216 21421 6594 NA 32ad0298-bbc6-4b66-bd4d-e87a169ad27a #> 217 11008 525 NA 513df09d-7d3a-44a8-873c-34f2fe46326b #> 218 14906 1383 NA 7963d8ea-c627-47cb-b46f-a917abb9e9d7 #> 219 16315 2031 NA 7e2c36bd-bae6-42e8-84fc-147106ed7270 #> 220 19995 5381 NA 2eb0706c-3017-4895-a207-71d6fe9e1549 #> 221 430 13 NA 544e4159-3da3-47ad-866c-bf48d7634f25 #> 222 21810 7083 NA 7c226f73-a59f-4db6-ad98-2766d05d4d5a #> 223 19781 4881 NA e06a9c07-453a-4bb0-a7e9-2c3a64166dad #> 224 14257 1169 NA 8dfb370d-460c-4bfc-9d62-888687248783 #> 225 20874 5974 NA d4d135fd-b710-4c12-9082-9d6e544b3f8d #> 226 13337 956 NA f336567d-44a9-4245-8452-1dd485fd70fb #> 227 22126 7098 NA 9e31f935-1e60-437d-9859-e1f2bb936aa5 #> 228 20239 5248 NA 3ffc3993-461e-4477-9def-c9633b7feac1 #> 229 21674 6806 NA a57b9914-4315-4295-98b4-9b348c52d6a1 #> 230 20802 5995 NA 528e71ec-8fb3-4928-ace5-fc5ffbf26eb3 #> 231 16825 2369 NA 13f716fb-7249-4b0a-9858-8af8cb83f78b #> 232 14767 1298 NA 04e8ea8f-8424-4196-a0fd-7dff3740c734 #> 233 19070 4224 NA 1105ae60-a4b6-4246-a77e-0849179b07b2 #> 234 20643 5715 NA 47999e1e-b526-4ab5-bd4f-5f5cac53a62a #> 235 15116 1510 NA cf881df8-d5a0-4736-be01-eb72767366b0 #> 236 8459 358 NA 17a056be-39c0-4913-bacf-1663f3ac4a56 #> 237 17921 3162 NA a792cbbf-d96a-48fc-a187-6f7f5b7dd214 #> 238 19814 4948 NA 9d699fbc-ce11-4e42-a9b1-c94ecee8f613 #> 239 16984 2524 NA 81066eaf-4e76-4870-99e3-407b753cdf8c #> 240 21780 7015 NA a8614822-2740-4b1f-a01e-b7960a4f07f6 #> 241 19803 5012 NA 0618f387-9b72-4270-8b8f-dec4cccc9e4a #> 242 22113 7065 NA 71c657d6-a2d9-48f3-b6db-dd4372e910f4 #> 243 17223 2755 NA b3d7169b-9cf6-4fea-815a-26e4fb0ec16a #> 244 16931 2474 NA 9480dd9f-151f-4e6d-b5a3-35f07bda4cac #> 245 16395 2082 NA c9557ff2-899f-41e3-8a0e-35ca874db9b2 #> 246 21037 5965 NA d1ed6f8c-1611-4695-8b48-5adce0de50dd #> 247 20979 6165 NA 8e43eb21-92e4-4720-8766-c9204259c063 #> 248 11270 574 NA b84fb536-9705-45a9-b652-92a33578ac48 #> 249 18030 3269 NA 0b504d67-639b-4ba8-979a-498a3086257b #> 250 21723 6957 NA c65488d4-251e-40fc-9f32-7019bbdaf75e #> 251 17269 2801 NA e0abf267-f265-4682-9bb7-72bbcefda451 #> 252 21045 5848 NA feeee40a-dd63-41a7-89cd-6c95b5456833 #> 253 19980 5101 NA 3da67e95-bd15-409f-b5de-b2feb54efda7 #> 254 22193 7191 NA 34cc08f0-53ee-4fc8-95a3-971e6620884c #> 255 16305 2023 NA 35823109-daf1-4825-92b8-564271398ecb #> 256 21722 6939 NA 630e6b5d-0486-4bc3-a919-1f02687c1291 #> 257 21721 6847 NA d93dbc83-e604-4823-a24e-d162cbd8d4d9 #> 258 16141 1911 NA 8482bc94-0eb0-4e92-8f99-ced135f3cd5d #> 259 16810 2354 NA 49c9f374-118a-4207-8030-dcdaf938dac5 #> 260 21027 6000 NA 08553010-dfb8-4ca8-86a0-8159355f8705 #> 261 15424 1658 NA 6a8a9040-0b42-40c0-a827-94e4150add24 #> 262 18918 4072 NA 13de701c-c77c-4eb5-b54c-8881ca5e0871 #> 263 14340 1182 NA 2bdf19ad-a957-4f3c-bb2f-2bb72b0b3595 #> 264 18546 3735 NA 7e5aaa20-df98-403f-92df-c3cc2ca9907d #> 265 18573 3761 NA 8cfce145-c6aa-40e0-b759-cad33237144a #> 266 22060 6969 NA 089763ae-208d-4ad9-bb30-c97c0fcfdcd1 #> 267 21216 6314 NA d5dee97b-aa96-4fa6-868f-b6dc1f66245c #> 268 16620 2228 NA ab7df007-37bf-407b-b77d-0e719c80f065 #> 269 20102 5153 NA 3cd88d26-6c80-47a1-a044-9164fa96459a #> 270 19963 5098 NA 82100457-f4ee-4f24-8ca2-584bfdc85749 #> 271 19928 5341 NA 3443dde2-23bc-4dba-b499-069d501a59cf #> 272 20834 5930 NA c128dad7-899d-4bdf-af9b-9c205dbd4666 #> 273 15136 1525 NA e030ef2b-1dcc-4c66-b8de-0016ca0d52d2 #> 274 20839 6051 NA 0e72812f-db64-4eb8-a7e4-41347067b375 #> 275 11132 550 NA f40e0707-1bf5-44d4-b447-7c03255aa423 #> 276 16420 2099 NA 5d98bad5-1730-4095-825d-3ff8d10d1116 #> 277 21881 6802 NA 3fa3a270-f8b2-4d53-a265-84bc928af5c5 #> 278 20253 5623 NA ac7b90e4-0f47-4f77-b521-7dc92043a9f3 #> 279 13181 922 NA ea2fda83-2817-4884-9e85-973263a4e069 #> 280 19214 4357 NA 0043c962-e726-4ed2-8aa3-b0eb5cdc5567 #> 281 15188 1548 NA 2d19098b-f154-4b28-976d-79182af014df #> 282 18065 3304 NA c187d2b3-5d96-4035-a166-db6689b463bf #> 283 19900 5049 NA 840b2183-02bc-4a2a-b415-c62ceecca1b2 #> 284 18598 3785 NA 8b1be2ac-e483-4f39-9bf9-a81be33ac92e #> 285 21561 6587 NA f88cf8ff-c5be-4e41-bbe3-a8657935bf3a #> 286 17944 3183 NA 73e84e89-4bd3-480e-b862-68502c8c295a #> 287 18237 3473 NA f125395e-820f-40d7-9775-ac101292719d #> 288 20898 5841 NA adabdc56-278f-48b9-a003-1329b7f2f663 #> 289 16889 2433 NA 392ccaf6-6d81-453f-85e3-7702ac081db3 #> 290 14896 1374 NA 1bdb2a2a-62bc-4043-8c80-f9b501d2003d #> 291 20252 5678 NA a4d45211-eb06-4c63-9487-ba4ad326893d #> 292 22108 7042 NA bfccbff4-bc01-41ed-aa11-be976160504c #> 293 20717 5823 NA cefd0600-93f2-4e0f-9624-81e3dc495c1d #> 294 19836 4968 NA 88976fed-0ffd-40a8-98ea-0c6c55010000 #> 295 20010 5340 NA f72d4897-8dd9-48d4-9da9-90deb4550d4f #> 296 21306 6348 NA a3d59d11-8d6a-4cfa-9c5d-3387d20de7f9 #> 297 17951 3190 NA 03af62dd-c843-4790-b2dd-bd5b5897ed94 #> 298 21361 6398 NA a1d54aed-e9e7-4a77-95c5-5d62be8fe75c #> 299 21218 6315 NA 1881d1a7-218b-4690-9065-497946d1ec1e #> 300 15186 1547 NA 9342eba6-e307-4c55-a0f7-993518dd4415 #> 301 18162 3401 NA b217c699-2eb4-4c60-9d7f-2df8e4232009 #> 302 15855 1774 NA a57a96ca-7aa8-4e0f-9ba8-437690fe50dc #> 303 19037 4191 NA 825fe252-36b9-48d9-a845-29114c5aae8a #> 304 18355 3576 NA 63ed7895-38bf-44ff-9b8a-8d5b0b5bd1eb #> 305 20512 5721 NA 1073ac8d-d12f-4ad0-845d-5351503931bd #> 306 14855 1338 NA da7cb0cc-543e-47d5-b29a-2ba2b341bd14 #> 307 21828 6822 NA 12ce10f6-7f95-42db-8ed3-36b14933484f #> 308 18907 4061 NA b45cd0e5-42b3-4847-aeec-a3afd07a0160 #> 309 19801 4984 NA 3069db07-aa43-4503-ab11-2ae5c0002721 #> 310 21784 6845 NA d8fef424-aa41-4c26-9bce-1265b53cd5e2 #> 311 16797 2341 NA d28afbc1-16c0-4012-b24a-1bd99817e8a9 #> 312 16524 2168 NA 2e50c78f-fa3b-48cf-8531-6eeddc93d88d #> 313 13063 886 NA adadafa1-dc37-486d-8538-7db1e1b5f71e #> 314 21097 6196 NA a511be63-5fc1-4e67-b798-fc801e3c166d #> 315 22205 7203 NA aae9da80-c88f-4de3-b088-42553cf351ce #> 316 20941 6130 NA a961b0d4-5d7c-438e-90f0-2e1fa09f6c89 #> 317 14860 1343 NA 95fab6fa-3ee1-47d0-93ad-c7ff41744be7 #> 318 17147 2679 NA 461b6e57-a2b0-4648-ab1f-b3ca4b111fe3 #> 319 22211 7208 NA 9c84646c-75d9-41f3-9cad-f3f002ca82a5 #> 320 21992 6852 NA 980d9a73-9dbb-4456-9256-d4021c013acf #> 321 20760 5856 NA 74a588d5-22b6-42da-8d59-c79d4f7634d2 #> 322 18948 4102 NA 522a97f7-8cf7-4c50-afe9-1beb6ffadcb2 #> 323 16863 2407 NA b167835a-3f62-4755-9acd-319c5a3903e3 #> 324 19605 4701 NA 62c07124-0252-4553-99cc-9d0f1d647742 #> 325 14705 1267 NA d723ebff-0e9d-42f8-93d2-fe0c02252de8 #> 326 20850 5906 NA 5fb525c5-4e70-4ede-8c49-94ad0cf66b7d #> 327 16846 2390 NA 36f54823-9d51-4180-9c91-d10281deb4bf #> 328 21409 6535 NA 34ecc6f0-1ee7-4d66-b8e6-e66307e5c835 #> 329 22206 7204 NA 4475bb8a-b5a6-4527-bfc7-8e7e03900984 #> 330 12777 812 NA cf23126f-055b-4617-819b-bb4bcb84541a #> 331 20957 6137 NA ec63ee49-3a03-44ca-a083-3916f0bccd76 #> 332 18666 3846 NA 55482edf-8604-4cf6-9a5c-d1124e22ac83 #> 333 19043 4197 NA 6130be96-edf3-4361-b666-860c4ec46e7d #> 334 17289 2821 NA aa759477-6206-4984-ab9c-eb213abfd020 #> 335 16906 2449 NA a1c40664-b265-4083-aad2-54b4c734f2c5 #> 336 16640 2238 NA 9b13d2bc-b22c-4f91-8eeb-309f43422d6e #> 337 19431 4551 NA 47520723-6d02-4c3b-b786-a7dfcea15efc #> 338 15196 1555 NA 4734f8dc-2ca4-4437-88f2-c8b8974abefc #> 339 14141 1144 NA 7092bb09-a161-4ab9-8d19-fdcf1a91bb3d #> 340 11565 627 NA 9691f874-be36-4529-a7eb-dde22ee4a848 #> 341 21735 6943 NA dc397432-7157-4ce4-976d-b9662cc6f551 #> 342 21760 6920 NA 1d1c217b-6407-40d7-aebb-ba95fa05d127 #> 343 16281 2006 NA b35211e2-a35f-41e1-b32b-3b31b70330b7 #> 344 16021 1826 NA 1b1e5bef-13e9-4814-b7ef-7970cbf103b8 #> 345 22447 7472 NA 5cc69b4f-6ac4-4854-b3ab-5f669e0d8239 #> 346 19870 5051 NA 9dc1308a-5cf2-45c1-b5ad-fc64fff3e94f #> 347 18982 4136 NA ff89ab1d-4c9c-4e8b-943d-6a9305c5793e #> 348 14414 1204 NA e4538897-a749-41a8-8220-332e8229ac41 #> 349 22055 6856 NA 0e4e082e-6dc7-41c4-baa1-2c1367f8f9f9 #> 350 19038 4192 NA fde0f790-29a9-4212-a357-17657055c1db #> 351 22088 7137 NA 6c162e60-0d39-46b4-bd8d-d2f3c6d6c7e5 #> 352 19992 5084 NA f2f71ec1-cc13-4215-aa5d-1948c42c6b28 #> 353 17950 3189 NA 72a42703-19b7-417c-87ce-344fd792f5ca #> 354 22133 7119 NA 0d226e62-3a43-4a9f-a985-05214182146f #> 355 22228 7226 NA 87e59fe7-8744-4318-a41e-53a18d1f9647 #> 356 20173 5178 NA 88f31a44-caae-4e5b-a786-8a229374a19d #> 357 16552 2184 NA 4ca2f25d-7a0c-42e2-9b35-c9b9a025990b #> 358 20962 6184 NA 3d988522-2246-4517-8537-c1bfa7989f79 #> 359 21921 7016 NA 5f623fbc-415e-4035-b423-7850cf1153b4 #> 360 21415 6518 NA 6dffc17c-86ca-4ffb-8ef2-12b4f832ce3e #> 361 19929 5342 NA 8a60686b-fdf6-4293-846e-92c1b1d586b9 #> 362 20488 5495 NA 9fe70732-0c55-42ff-a79c-9d234fbc995c #> 363 20877 5986 NA 6c1cd007-fea3-47bb-a8b1-4e4c040a2d94 #> 364 18143 3382 NA 6ef5045f-9215-4354-a1af-3f86e4c4a03d #> 365 21896 6812 NA d96afcfe-32fb-4a59-b75c-94a6184d3136 #> 366 21052 5862 NA dbf199a9-542e-4279-8764-3341b9f80910 #> 367 20448 5402 NA e8a774bd-079d-48ac-aaa6-01c8fcb46e4a #> 368 17264 2796 NA 7d7aae3c-c186-4ded-bbaa-df05f697ef29 #> 369 18575 3763 NA b3beb95a-c1e7-4d03-b61a-097199528816 #> 370 16226 1965 NA 5165ce25-382b-4809-83b7-8c66d93c2aef #> 371 22085 6784 NA 9c8292c7-b406-4a31-a781-7c72aac6b053 #> 372 22302 7310 NA 4f115bb3-1468-4bfb-a239-e55e6dc7ce3f #> 373 20541 5613 NA dcd1b7b0-5768-4b66-b760-30dbcfd04b93 #> 374 15189 1549 NA 123f0733-0afb-4291-8e57-9970e229309b #> 375 22135 7124 NA 47dedc0e-a2fd-415c-8619-5a46867d83e2 #> 376 19072 4226 NA 686cab35-6da0-4e10-ba65-0d1f97e0bc8b #> 377 21268 6572 NA b84b415e-a7a5-4d3c-8128-9e58f002578c #> 378 16842 2386 NA 1a7ff6d7-85c8-4ef1-8db7-b629b451e368 #> 379 22223 7221 NA d4acfff4-7bee-49f7-abc2-3847a8b85dce #> 380 21057 5964 NA 06f3a0fc-2a07-4ecc-b5c3-873b2f615809 #> 381 17743 3038 NA e98ed960-2119-4811-b863-d086ef4e1ddf #> 382 16284 2009 NA 305c4a34-6428-418e-adf6-09f60e83c674 #> 383 21519 6528 NA ef4998e0-c9ef-4afe-88ab-d09b48975a08 #> 384 21986 7059 NA 00484794-97e8-443b-876f-d192722cd70c #> 385 14338 1181 NA 40403404-4624-4bd0-b11d-ec8299c48a42 #> 386 14225 1160 NA 70eae82c-30ea-491f-b71c-aa11f47af476 #> 387 14037 1120 NA 05640572-1b4d-40d5-b584-d79bdd7d5c5f #> 388 16786 2330 NA 3bf0711c-793a-47e7-bcbd-a0ddf350fef4 #> 389 16558 2190 NA 1db9d170-d0cf-4b2c-a160-fe828a7339eb #> 390 19964 5099 NA 829c836e-8040-48ca-aa20-5ad24f0ff37f #> 391 21980 7144 NA d6ce86bc-7c3c-42c5-82eb-c8bc51e7e94d #> 392 22227 7225 NA ff73bcec-6f22-4a26-a179-56f7556dc5a2 #> 393 21916 7485 NA ee29b5be-a126-4f1a-bb58-c051d7ba9c5e #> 394 9162 439 NA e2ee3901-8de4-4585-a6ca-b7d77d271d9e #> 395 17286 2818 NA 5f3cc875-e802-46b2-81ad-3ffb7a3a1662 #> 396 22093 6936 NA 9a76c690-1946-4860-9564-a0b7b9bbaf0a #> 397 16497 2152 NA d4cb52a9-f6b4-42ed-b40b-27bff5f1eea7 #> 398 19191 4335 NA 0666e6c6-42d9-40ab-83bd-7bbf81e9ac9c #> 399 20779 5903 NA 7905e9be-2f66-4ff5-a6e9-dbe281bf4822 #> 400 22151 7149 NA 93a1f2fd-fd5e-4b06-8086-476028d83eed #> 401 20103 5162 NA 2d16fcef-89b8-4a92-844f-a92c4e20b5c9 #> 402 20040 5123 NA b89c853a-6bd8-42ec-ae52-a11831923631 #> 403 21775 7101 NA ee96c74a-7a51-478a-99f9-97ddaaac1e34 #> 404 18877 4034 NA f96db0af-5e25-42d1-a07a-49b4e065b364 #> 405 16887 2431 NA e311a7a2-eddb-439c-86b4-b1f1984186bc #> 406 22226 7224 NA 3b1bb0da-607a-4502-8855-8ab5095334da #> 407 18040 3279 NA 5f3a60b9-64ac-41f0-877b-cfd2cdfe23c9 #> 408 20065 5423 NA de3c68c3-9c11-4c0c-82ef-bc0d536820c2 #> 409 20858 5868 NA d0ca076f-a25d-436b-837e-07dde16be635 #> 410 18950 4104 NA cbe71aae-2475-487f-a78d-c1d7f021c097 #> 411 11604 641 NA 38293bdb-87d5-4219-be46-44fea6741483 #> 412 21407 6424 NA 943a818d-074a-4243-9d54-f91ada96923b #> 413 19910 4995 NA ed8a8fd2-df67-45e7-a34f-984afb82f6ea #> 414 19542 4647 NA 1d55ba37-c09e-4945-b7ae-8d84e2357283 #> 415 21865 6970 NA a41b8454-0326-4c56-87a2-f2aac3814961 #> 416 21732 7216 NA 689de342-1d99-4a4d-976d-f6573ef3a8c2 #> 417 17762 3048 NA 7c7b5515-7786-4e24-9ce0-34e6a8bd5727 #> 418 18985 4139 NA 91aac0f7-60ed-4333-8aee-15bd56764464 #> 419 19060 4214 NA c58e6a2c-2206-4d42-b368-fe6f0ecb1262 #> 420 21963 7080 NA 488cf673-fb92-4701-abd0-4641987642ee #> 421 19779 4878 NA 3885b40b-c31b-4cd6-a0fd-3d24bede2771 #> 422 18039 3278 NA 4f724338-aa8c-436d-90b2-45299572c53e #> 423 21106 6209 NA 634dcf96-92ca-474a-8a09-e26a12a7bafa #> 424 18187 3423 NA e81fb788-1478-4936-ae12-f6ed7ec23476 #> 425 18928 4082 NA 66a21b6d-97e5-4732-8bb0-062145d6bbc6 #> 426 21548 6628 NA 85325fdc-da47-4992-af60-a20d0b1ec980 #> 427 19844 4983 NA d8202e6d-d03b-4cd1-a793-ff8fd39d9755 #> 428 20071 5134 NA 430446f6-a74c-496b-8f49-4464e7d8149d #> 429 18343 3568 NA fa7983c1-408c-4aa5-9723-efbf039db351 #> 430 17987 3226 NA 95bccf33-b911-4bfa-96b4-a15b9a160c68 #> 431 20891 6094 NA 20e8addc-8e4f-4c4e-937d-3788de9c1e6f #> 432 12881 837 NA 639ff90f-285c-44a7-ba8d-6a47d0ecff71 #> 433 21122 6289 NA a7450b47-b784-490b-8edd-b5502f16366f #> 434 18629 3813 NA 7ba5935c-0e54-4ad0-b90e-ff4af7d62b85 #> 435 21127 6285 NA c3ff85db-bad4-444c-9123-812c933c8227 #> 436 16432 2108 NA 054f4c09-6bc9-49c9-a466-80abd2a39e74 #> 437 22056 6839 NA 99b81b41-fb3b-4650-940b-9cb3770021ba #> 438 17953 3192 NA f40995fc-bd95-41f1-b9ef-4ab938c3aafa #> 439 19411 4532 NA 6311b3ee-d514-415a-941c-4bda88a6bb55 #> 440 20262 5634 NA 4ed347d1-170b-408e-b360-46a83557b56a #> 441 22079 6928 NA e1072f9a-86f7-4d01-89a6-33fe0186f232 #> 442 18933 4087 NA 6bbffdec-af71-4378-b0cc-e1375643ef57 #> 443 13894 1079 NA d5efd828-7339-43a7-ad7e-6f936dbbabb2 #> 444 18045 3284 NA abb612d4-f5b9-4644-b9ed-f13fa0da7e98 #> 445 18084 3323 NA b6fa8c3c-c729-4178-8e9c-c7e784a872c1 #> 446 18102 3341 NA 43ccb78e-353d-4d0b-ac51-4103415a568c #> 447 22161 7160 NA 306d7e5a-f0f6-4b30-8484-5d933361278e #> 448 13393 967 NA 57bd3249-bae3-4e13-b4d6-f86dbc4978e7 #> 449 21428 6463 NA 2d133844-4e02-460b-819b-d8176407dedb #> 450 16796 2340 NA fdfb980b-1493-4698-9b97-f445a8f495da #> 451 18292 3526 NA 36248cd5-f747-4960-b66a-a5d4f481e098 #> 452 21028 5925 NA b8c4a63d-775b-47c6-9be3-ef321658c600 #> 453 16100 1881 NA 63cef4ac-6e22-497b-9f8c-fbccd0694d17 #> 454 14358 1186 NA e2d85e2a-3d88-42e7-95ca-8db79228135c #> 455 22232 7231 NA f3adad78-ada5-4ded-bb47-cbf8518f7bba #> 456 19855 4991 NA 70d87779-f25f-4dff-8c5d-82b818090c57 #> 457 22230 7229 NA 1a4b38f7-48f8-43b3-be9a-96671feb1fa6 #> 458 17954 3193 NA 23ce41df-3f29-4f67-9fb5-b9778ac931f8 #> 459 22143 7140 NA a5838673-7753-426c-a18e-5195fbfdcc37 #> 460 21024 6044 NA 0db05e51-1e24-4f1a-9008-2e610e260c5d #> 461 15049 1467 NA d3cde6a6-f635-40d8-adc6-f1a7892f8683 #> 462 22142 7139 NA 1d40e4f7-2991-4aa0-aa0a-1e7df79aab07 #> 463 16301 2020 NA d96ff17c-841a-4768-8e08-3a4cfcb7f717 #> 464 20149 5189 NA 1c50997f-c56e-47f9-a750-33ab100ed28b #> 465 19827 4960 NA 3291c582-9377-4bc2-8ee5-61d887873797 #> 466 21890 7120 NA 2814f1e7-dca6-4bd9-80a9-9af480d10546 #> 467 19931 5303 NA ea59d8de-e3df-4a7b-9778-7d6dc4892fc3 #> 468 14949 1405 NA 92503804-7aff-4f22-adca-421800786179 #> 469 17246 2778 NA ee209aa3-145f-4acb-85fd-e8a2420b4d2a #> 470 14057 1127 NA 0a605e2f-4c81-453d-941b-4e9f143210f8 #> 471 20664 5757 NA abdf27dc-a54d-427c-a745-173f1c485292 #> 472 16323 2036 NA 33c74bf8-7621-48be-a769-e219703988d9 #> 473 18100 3339 NA bd6ca667-99e9-42ea-9be7-a680945eece9 #> 474 15079 1482 NA 82505f2b-7b63-48d1-a715-a197ae3a32c3 #> 475 15734 1745 NA ff4c90f1-60a7-40f4-ba21-c7abe6800000 #> 476 15194 1553 NA 60d48e85-931c-45dc-b62f-024503a2e09b #> 477 19930 5302 NA 0a6c2bfc-19a4-47f9-ba60-74265af6e947 #> 478 16800 2344 NA 881eb214-c981-46c0-a0cf-34023e773754 #> 479 16154 1921 NA f6ff73b1-d607-4226-83ab-b523bdc0be4e #> 480 16438 2113 NA ccb2f18f-1454-4ec4-a9ae-2d7f5c20f86f #> 481 18811 3976 NA 7a1b8f1a-9024-4897-86b0-01c63e00305e #> 482 13723 1029 NA c8232b55-6617-4dd9-a7cf-cf14cd9a29ab #> 483 15293 1612 NA b13ba4c3-5761-40fb-aa6a-935f09c39a6b #> 484 20106 5163 NA 02880089-ccba-44f0-9d6c-fe6f12d15e5b #> 485 21848 7227 NA a21cba9e-32a9-494b-b2a1-d454b65872b6 #> 486 19003 4157 NA a8342d20-9901-49a6-bc45-79f192418188 #> 487 20882 5892 NA 1c9e1cd5-8cb1-4a15-a2c8-3a0c0fd5423c #> 488 15261 1601 NA bbb63a36-8613-4675-8e5e-34200d245ff0 #> 489 19004 4158 NA f4c59ced-4d11-4314-a761-ec0883edd3c1 #> 490 11107 545 NA 6bc584ed-82c0-486f-962d-377be6ae8469 #> 491 18121 3360 NA 978eb5b8-9ae9-473e-a1ef-1ad2bd1b7ae5 #> 492 19429 4549 NA b4473469-2593-4c7f-8b41-729e1ddb08f6 #> 493 17980 3219 NA 01dd8219-f1df-4a6e-95b2-27317daca89f #> 494 16436 2112 NA 40a38dc1-6355-4467-9064-07e2d063f558 #> 495 14483 1222 NA 86c5152c-c823-4127-97e6-2fedf532e8e8 #> 496 22231 7230 NA 096f3b4f-34cc-448f-9fb1-9a7f30a1ecdc #> 497 21707 6762 NA dcdfc42f-2889-4c8a-8b65-b18de1a30e30 #> 498 18498 3695 NA 8d3ac8d8-e18f-4485-acc6-55c79adcc2a8 #> 499 21772 6826 NA 036feeb6-9a22-43c5-a8e3-7ac611d8ff49 #> 500 20812 6075 NA 48c56733-6644-42ee-9020-07bd2deba1ad #> 501 11488 616 NA fd85786d-3900-4dc0-9b30-334ee30413ed #> 502 15305 1619 NA 8506c15c-15cc-4d2c-aebf-270c605fe0ec #> 503 12109 695 NA 3aef6950-1c19-4454-a3d0-0afe9634ea9f #> 504 17218 2750 NA 9ae2584a-40c1-4b30-be34-a9567659eacd #> 505 20296 5261 NA 9fd7fab6-1c26-418f-9696-e8dd0208d508 #> 506 20925 5873 NA 9c04ad60-9726-42d3-9836-7d95723f8eb6 #> 507 20011 5111 NA 8f249da2-2528-4f68-8587-4400c924aba4 #> 508 19582 4681 NA 3411b31b-9800-4f5b-a43f-4564c9530627 #> 509 19054 4208 NA dc8a06c8-538a-4408-8a2b-1d9bfafb8a3c #> 510 21961 7090 NA bafe8df1-66b5-4200-8fb3-ff188c25a4e2 #> 511 13117 902 NA 5ed2cea8-e0c6-482c-9ee1-548c06612226 #> 512 21464 6465 NA 422f272f-ca71-4fd2-a37a-d1e323c2728b #> 513 19864 5013 NA bfaedf99-7618-4925-b362-90415c22a3b6 #> 514 16263 1992 NA 0fd32417-8410-4a8f-8919-386c433bca43 #> 515 15150 1535 NA da85107c-365c-4d58-90ab-479d97d798b4 #> 516 16113 1893 NA 78abb68f-453d-4992-901a-a5b1121e680d #> 517 17782 3057 NA e10e0c39-33e0-4ae9-9374-915dee1ceb7a #> 518 19813 4947 NA 03cb0755-ecd8-4ef4-bf94-e9e1c1f9d203 #> 519 16772 2316 NA 338adc8a-173d-4b1b-a5de-92818bf96823 #> 520 20856 6034 NA 750877e5-ccdd-4072-9e1c-8d957e45b561 #> 521 18563 3751 NA 2cffbed2-3e4f-4051-b5b1-b6b2b7c484f6 #> 522 17985 3224 NA 9b14942e-0ddc-436c-a6be-5947a39589e5 #> 523 20066 5424 NA d5a270bd-6f41-4637-ae09-d5534f1a4d3e #> 524 19968 5079 NA 12178d3d-49d3-4cb4-88b9-cc8f044bb684 #> 525 17945 3184 NA c967809a-7c88-447d-9d9f-6aebfc8370f7 #> 526 20157 5222 NA 57a21028-b3a1-494b-ade8-7e94c7108823 #> 527 18074 3313 NA 44d917f8-d9e4-4b12-a107-0330156a92dd #> 528 22063 7017 NA 23ad64a6-6102-402d-b985-4c8bb273b5d3 #> 529 19076 4230 NA 0bf5f31d-e2fe-441f-845e-7573cc21b22d #> 530 19873 5017 NA 89c84a59-18ad-4aeb-8879-d4ba7dd1491e #> 531 18994 4148 NA e75ed538-1888-4864-bd1d-e703d1ce4b5b #> 532 21584 6657 NA 594c3651-1a2f-453e-a39d-2c84a377f2b5 #> 533 19871 5015 NA 17d1f9ee-f65e-4c4d-bf73-a69b2fa17877 #> 534 21876 6864 NA 3f4fe254-f18f-4b56-83e0-c37cfc72c7f7 #> 535 21033 6043 NA 1a7d431e-f97b-4631-a067-438ed2debe24 #> 536 17136 2668 NA 8363a880-0f4d-44be-bad7-2815c7c3ea00 #> 537 14280 1174 NA 34de0b93-9cab-4987-915b-25ef8480cae7 #> 538 11021 528 NA 2beaf8a8-ccf1-4500-a941-33ffc8141d60 #> 539 14922 1392 NA 19269eae-f3f2-47ac-b755-843489f29f65 #> 540 20027 5327 NA e738f88d-6a49-4efd-b53e-d031bc8c5772 #> 541 17486 2982 NA 1374a32a-6215-4ba7-ba0f-a26d24535059 #> 542 22015 6987 NA 49379bb0-8f09-466b-86fa-62b4c4c73051 #> 543 18494 3692 NA 133ff990-0b7b-467d-a949-1e1720f96bc9 #> 544 20058 5309 NA 29f9a81f-f31f-4ace-80b2-cf5270c96611 #> 545 21222 6567 NA be44e57a-7623-4b1c-a6fd-7a30795bb8ac #> 546 20844 5869 NA 3dec63e9-ad9d-4d1f-8ba2-102d9474df2c #> 547 16212 1958 NA 746b7ba2-1ee3-4d42-8cf8-11bf4df581e1 #> 548 21114 6219 NA bd1f047a-978f-4643-b55f-f4d3b0719a4e #> 549 13961 1099 NA c7d8781f-b9f6-4e0f-b0b6-29fce3985f3e #> 550 21999 6860 NA d152b2d5-402d-47f4-a6d1-7870e5a32df5 #> 551 20915 5894 NA ac012bab-43f3-4e8c-9cf4-0fb20ffa55a2 #> 552 12815 821 NA 87745a22-9ce8-4a5a-8935-dcc102ce4b18 #> 553 21911 6891 NA cbe52cf7-a9fe-495c-bd77-3a22a7f7208f #> 554 20060 5320 NA eb2a534f-2dd9-484c-b464-455311f1a9e3 #> 555 22449 7474 NA 75741cd3-8b9f-445f-b24e-47c8c51de618 #> 556 19074 4228 NA 3fec685f-b7bb-45a3-ad9c-e27c3fbc9951 #> 557 22003 6880 NA 05cb1d47-3517-4410-a61b-75adabbfb910 #> 558 12330 738 NA d7eec5c7-c401-485e-b0c8-fb0784c07b27 #> 559 21396 6632 NA 009c9b30-a6de-46b6-a3c0-3f51a4fc6997 #> 560 19228 4371 NA 1ad3e535-2b5c-48a8-82f0-c7a933d250f0 #> 561 18083 3322 NA 42bb4895-bdfb-40e2-8119-f5b06611bf1b #> 562 20998 6157 NA 0ee41c7d-1afa-4ac7-ae6d-66e4da18052d #> 563 16976 2517 NA efe64fc8-9987-4fe6-b7a4-e2ff363cf443 #> 564 8433 353 NA d14302ef-0224-4c92-961a-6d10452936ff #> 565 21143 6269 NA ba1032c6-bcbd-430c-afae-40898b9e83bb #> 566 21693 6770 NA 3023ac10-4e7f-425f-9fc5-2b8e6332c92e #> 567 20759 5885 NA d935df27-5be4-4aab-b117-8ec8e81c2196 #> 568 18079 3318 NA cd571cfc-9b44-4b69-a801-431db9aaa85e #> 569 18118 3357 NA a8c3bcd7-69d0-4c5e-a876-6b33857942bc #> 570 20990 6144 NA 478fcd24-2617-41d5-a900-b272aa6ef515 #> 571 20906 6108 NA e2f3af7f-dd17-44f2-a000-d487a29f0f03 #> 572 18993 4147 NA e601812f-ce24-4e99-bee0-e33c1e9014e4 #> 573 18858 4018 NA 7797f36e-87e8-4282-b6d2-bdb1774fc3b3 #> 574 14916 1386 NA 24cf6148-f0af-4103-a215-e06956764953 #> 575 14925 1395 NA c9e9bbc5-2aeb-4f72-9b7c-1a688fb235fb #> 576 17991 3230 NA 656b68e1-651d-4596-8f6d-c97b4e4d9536 #> 577 20116 5642 NA 7917b396-b7e0-4722-9a5a-7c608dd0a6ff #> 578 20917 5956 NA 897df186-8ae8-4eaa-8a83-90952b47ab55 #> 579 20987 6122 NA 165b77bc-9a63-4b1b-9111-70994af6c864 #> 580 16985 2525 NA 449401ef-0251-4895-8f56-eaf5ef7f9cf8 #> 581 20831 6024 NA 95cd7ce9-e92a-40d9-997f-c7b16d0efd83 #> 582 21151 6558 NA b170b3f1-682d-411c-ac28-b9d2a60e75a7 #> 583 19219 4362 NA 53fd9a69-1b10-4fd6-90e7-ee84cca9e041 #> 584 19075 4229 NA ca6c7b35-6ae1-4ba7-ae98-1f26174e407d #> 585 16917 2460 NA 19858900-5c8e-49a7-ab02-34ef625724ca #> 586 20931 6001 NA 15a4f552-ecaf-45bd-9006-aa5dda93bee6 #> 587 21800 6894 NA b2d98b60-b4b3-4610-81d2-2154c723fdbb #> 588 12845 830 NA c9701373-23f6-4058-9189-8d9c085f3c49 #> 589 20886 6069 NA 8f32cbe6-9c50-4bf7-9e68-057d718fb490 #> 590 20057 5130 NA 75a646ac-b2d2-42d9-91c7-3b00fdf71ef9 #> 591 22238 7237 NA c272aa3f-4ef7-468c-ad4d-a4eed44a6ab7 #> 592 21690 6801 NA 7963b029-5de4-4541-b00a-44eefe4349af #> 593 18197 3433 NA 6bb4d6f8-c8fb-4ca7-a416-a7010526114d #> 594 17986 3225 NA 76a5edec-5ff7-49fa-a8ec-5768a372279d #> 595 18445 3652 NA 88856dfa-45ce-4b6e-bbf7-4f8413ac89ca #> 596 21263 6598 NA ee79ad2e-353a-40cd-9344-c9d84f7e4b63 #> 597 18881 4038 NA 938b363a-6967-4cef-bcd2-bb358a9f6c98 #> 598 15140 1529 NA 671d2fd7-41bb-457a-8e93-904ee7d94eb1 #> 599 20908 6022 NA 7475baa8-7662-49be-9b41-526450f28bfc #> 600 21948 6907 NA a21c5573-d9eb-4c4d-838a-12b63c513a1b #> 601 18289 3523 NA bdebbb66-ceff-4cc9-b74f-00e14be21530 #> 602 20300 5448 NA d962a98d-cbba-47e0-ad20-dedc094a1822 #> 603 20985 6123 NA 54feeb01-a1d6-4313-b8b5-5663f698b5bd #> 604 16370 2067 NA 94f04ef5-238a-4f38-b45a-de2e7f3b9f9e #> 605 19061 4215 NA a5780ea2-376e-4187-8be1-7c7fd2d0a12f #> 606 19830 4964 NA aefdc3d3-0851-4782-b298-f06f137d42c9 #> 607 22046 6876 NA 07dbf3ec-0d6b-42f1-a2e8-7dd437339417 #> 608 20203 5492 NA b76155e8-ea98-4dbc-b0b6-13cd1b0fc5db #> 609 19893 5055 NA 3d405d21-bfdd-4495-afe3-9e96d1972ee2 #> 610 16777 2321 NA 12f4a38f-17b4-42b1-a1e6-9fd6ef08d150 #> 611 20217 5519 NA 0a63f97d-9cc2-44d0-b65a-ac2e78db73f9 #> 612 21918 6799 NA 1bbe7ce0-3707-4d4d-b8f6-7577008f1763 #> 613 19027 4181 NA 5af719d9-4a47-4a93-a522-a5060fd0df79 #> 614 12554 770 NA 39ee3bee-1177-49cd-a78b-7a790ffd0b84 #> 615 20923 5983 NA 32b601e7-4491-479a-895a-2f96add83e09 #> 616 19252 4393 NA 8b44e3b8-81ae-4f02-b598-965872d12816 #> 617 20780 5996 NA 20395574-a767-44be-8e79-e1b15eef0f11 #> 618 20821 5923 NA d0d2e26b-f5a7-4455-86b8-096508ac8eea #> 619 21874 6854 NA 5f313f6e-4a5b-495b-8442-176c145f68c4 #> 620 21246 6339 NA 60c63a9a-f44c-4f12-b724-f65bcb8cce77 #> 621 18807 3973 NA a85a0ba9-674c-4f37-a944-474fc6cdf557 #> 622 22247 7247 NA bd4a07dd-aeae-4ae0-87e4-a8b65ad6870c #> 623 14646 1259 NA 3be41614-5c70-4b0a-89c7-c7ae061d9223 #> 624 13355 961 NA 072ec285-1430-48d4-9342-5a1b9af527f3 #> 625 22059 6841 NA 445efcfc-1646-4823-89f7-8b6005266d13 #> 626 14894 1372 NA 81e211e1-547a-4475-bcf6-8c8ffde057f5 #> 627 19099 4253 NA eb904c68-f01b-4af3-9427-dd6a6c35511b #> 628 19082 4236 NA 4e710e1a-2654-4e2f-9be0-5b9941025477 #> 629 18026 3265 NA 82fcb439-d5da-4f6b-a68c-17778fe19ce4 #> 630 18952 4106 NA 915f567f-ca74-426a-8ed0-123c45f67baa #> 631 20581 5569 NA 85e3651c-cde0-48ed-a5ea-93477a1fe99b #> 632 18093 3332 NA 2c35ed5f-7317-4776-8ee7-0438e0286508 #> 633 16125 1900 NA 0207678d-d682-4916-ba20-74a218d5b6b1 #> 634 21241 6569 NA 4501f87d-6436-4fa8-9f53-a8a475eb984c #> 635 19962 5097 NA 2b6a749f-5e78-484f-8a87-92c6da991b19 #> 636 20034 5335 NA e1f9e986-6deb-4302-8478-eb64abe7aa24 #> 637 21946 7273 NA 955c65c6-5557-4525-a549-3fab45765cec #> 638 20466 5386 NA bd49c4a4-1314-45e1-bff5-fc67ba41d1dd #> 639 16236 1974 NA 4b99ead5-0f79-4899-84a7-075c08890698 #> 640 20994 6131 NA 0790a8d6-5316-4204-91a6-8508ca48973b #> 641 13480 997 NA bcebf5f0-0224-4cc8-9a78-1aefd55bfc87 #> 642 19101 4255 NA c362b855-a313-4b46-ab26-a82082e1e8ee #> 643 21979 7006 NA 894c783a-ddcd-4dba-b337-06d7db037a6e #> 644 20029 5305 NA 36b878c8-7d53-4e90-8403-6f67fa911a2e #> 645 21108 6211 NA 471db686-fa8e-484c-8525-0169b0a8f773 #> 646 18031 3270 NA 981cfb99-ff6f-452e-806c-116f56a484a5 #> 647 20338 5646 NA b220a72d-6870-418a-98af-ef50632be774 #> 648 16760 2305 NA 43a74ae6-ddb7-405e-8ccd-69d14da6c374 #> 649 17968 3207 NA 67760ee1-c969-488f-b449-b8c37e7e32bb #> 650 21279 6452 NA bc63567a-81e7-44c9-a85f-8aa9532ab4fd #> 651 19913 4996 NA d11ad65e-9d24-4157-9f5b-ef8495bcc791 #> 652 15694 1737 NA 1b3d350a-478b-4542-a430-d12cc96adc22 #> 653 19790 4892 NA 30198d30-9769-4e10-ac86-b4c91d940802 #> 654 19957 5076 NA 27156b0b-e82d-4d02-8a04-ca1891d77110 #> 655 20937 6161 NA ce185a29-d0ff-4519-9133-e01c691ead57 #> 656 19798 4988 NA 4bd60b33-9fbf-4156-ba2b-8264ac37b418 #> 657 21593 6694 NA f46e812f-14c6-4af8-9316-01a880adebc5 #> 658 18944 4098 NA 0ef0d0ca-2d2d-455b-ab63-a20c01303e37 #> 659 22251 7251 NA bea5ccd6-b05b-43f8-975f-396399349a42 #> 660 20059 5528 NA 7ca273b2-a4bc-44c4-a670-98d86942adb5 #> 661 22252 7252 NA 4a7d7bfc-9fe6-4869-a741-d5d17b177edc #> 662 19904 5025 NA 9b96ef63-04bd-41ae-b59c-acc0f2561d19 #> 663 17952 3191 NA 741c1ab2-378b-45ce-86c7-533e6a031f22 #> 664 22024 6787 NA 543deccb-0e8d-42ac-b213-dfd458fc0602 #> 665 14959 1407 NA ffa1d197-25af-43a9-ae61-05ab20a0a5be #> 666 21217 6566 NA e3a0e17e-fb75-4284-b89c-ddbc758f3d20 #> 667 22246 7246 NA 017375c1-6522-43a8-b099-3ea0d15c95c9 #> 668 17490 2985 NA a87f6156-c028-4634-84a8-e3388d6dff2b #> 669 19672 4753 NA c5ae93f5-f293-4e9f-89a0-6d8bda64ee1e #> 670 22019 7028 NA 491a4774-9f2d-4b70-9933-2c7c89abbeba #> 671 21113 6224 NA 8f0e2ff1-fa77-4049-aa94-159a37ed5c51 #> 672 17936 3175 NA 0e7d7ddc-6515-4034-8857-5ab9da6b7c25 #> 673 21783 6850 NA f58a5899-8b78-46e8-a29a-ba6273b7d872 #> 674 17963 3202 NA 90c2a93f-d837-4e1b-b57c-56648903a8db #> 675 21278 6451 NA 013477a2-0271-4441-a0af-9bc25924a2f6 #> 676 18876 4033 NA 8f86fcea-90e8-49ea-bc78-5c7659313e57 #> 677 20264 5253 NA 501aa2d9-4202-40e8-810b-92cacea26cd7 #> 678 21770 7378 NA 3a337668-7978-4310-b17c-8e1279ba4a4d #> 679 19184 4330 NA 2d52ede5-1c65-4f18-a8ac-9306192ef625 #> 680 18971 4125 NA 29972cbe-2912-49df-916b-200eead9a218 #> 681 20477 5539 NA bdeddbb2-2b56-4b46-915b-19eb71fbbe45 #> 682 19008 4162 NA 6259f62d-e16f-4369-a3be-ca02f79f3026 #> 683 16389 2078 NA 354dec38-b88b-4ba0-8974-859123f27c45 #> 684 20679 5773 NA 6f124753-5c6c-454b-97c7-0f9b4d14e7c2 #> 685 16020 1825 NA 06e41dc1-d5dc-4bdc-8fc3-e0d7c3a99ac4 #> 686 18717 3895 NA 1283923a-9716-4936-920a-a57f019bb2e8 #> 687 21754 6824 NA 924edb03-29a9-42ae-92dd-ef7e8a498095 #> 688 18089 3328 NA 7e34053d-00bf-4f3f-a464-329c8f5057d0 #> 689 21312 6381 NA d0780152-5d3e-4add-99bd-e330c258df10 #> 690 22244 7244 NA f1236815-5ed7-4bab-808f-700c4516fd7d #> 691 18274 3508 NA 5a1e63b3-6dcc-48f5-927c-0fc141085f32 #> 692 21995 6835 NA f5b61bef-6214-4d70-9a34-d58da29ce2d5 #> 693 15083 1486 NA dea8f688-602c-4b48-946f-e634fb81d737 #> 694 18370 3590 NA 1b379101-6c8f-42d4-843c-9a3cc44993ff #> 695 14505 1227 NA 0e581a51-e705-45e2-85d3-bc2c073e626e #> 696 18125 3364 NA 32884cc4-ff90-42d0-b02b-f9a7df6ce6fb #> 697 21187 6254 NA 9e82eb73-21f0-469a-ac85-b4fde70a6a4e #> 698 22051 6809 NA 02753dc9-52ac-4ed1-8086-7894d35a3bd1 #> 699 18106 3345 NA 6445ca00-93b4-46d8-8ac6-451ae70a75f5 #> 700 2760 105 NA 23893852-6ef4-48a9-99a0-c51f41670508 #> 701 19140 4294 NA af433e33-5d77-47fd-b6ef-70815e6aa0a1 #> 702 18953 4107 NA 5e11c306-6387-46ed-8a6d-3ff7a8210ed5 #> 703 17337 2869 NA 6d62aaa2-fe41-4672-941f-7314a0b9b367 #> 704 18975 4129 NA 7ff68f1d-204c-4d49-9179-ecb2514094dc #> 705 18054 3293 NA f8c2e532-8de2-4c8b-85bf-ed2e24c3b273 #> 706 20947 6138 NA 5f871c3c-9df8-4869-a967-9df253747a73 #> 707 19084 4238 NA cd09c042-0bfc-4866-8d3f-a14ef4c3d7fc #> 708 20316 5741 NA 43211a61-4d89-4982-bbf1-9b932316b571 #> 709 18001 3240 NA 3ec4f630-592c-4848-a76c-c30ecc090ecb #> 710 22087 7114 NA e44308c4-2505-4b79-855a-18d83d407fc5 #> 711 13453 986 NA 3d22209a-9800-4199-aa36-b9c86c86455b #> 712 22253 7253 NA 2e9e0b4e-d7f6-4d9b-850f-e1a5a8e17a5b #> 713 16366 2064 NA 3e3bd10a-6462-47f8-8938-42518781d060 #> 714 21870 6827 NA 854d07f2-11cc-4dc1-bdaf-e8cce2c89a75 #> 715 16821 2365 NA 5c913725-c52a-4633-b3b9-efa6a9d2cf05 #> 716 19932 5330 NA a28daf84-6354-49e6-a047-1bc549997f29 #> 717 14146 1146 NA dc632746-2240-41d6-8141-695194706989 #> 718 14081 1131 NA 9fdc477a-af02-4345-baca-cf026fbc645a #> 719 19493 4604 NA 32b5fb32-1fcf-4955-9621-669c246a9fd3 #> 720 20803 5989 NA c6c5ae5d-59c6-437d-9768-34e377fddcec #> 721 18244 3479 NA 6575474c-d106-406f-9b90-ef9b598a213d #> 722 17327 2859 NA 1fb9a153-f1e0-4396-81fd-c3b1d331338f #> 723 21242 6335 NA de41a84a-9f98-42c3-b35e-7c99b0ffa5c7 #> 724 22078 6825 NA fda10175-38e3-4678-a94c-ccd6008d40ec #> 725 14789 1308 NA 5a20a439-bebc-4ef7-8b9f-30e1d677a26b #> 726 16369 2066 NA 5a001d28-b271-410a-8c91-3159a6096258 #> 727 20871 5913 NA 0c827cf4-d8ac-4efc-b030-019baa3c7216 #> 728 19875 5039 NA 96d94c76-9563-460a-91e5-47b99f29587b #> 729 14697 1266 NA 93d11276-45d2-4168-a9b7-df0cbf12dabb #> 730 17307 2839 NA c008f3d4-7141-4d58-aa63-cb86088b0c0b #> 731 19838 4980 NA b6ab79d0-cbb6-4e2c-8a9d-2e4a092325bc #> 732 17926 3167 NA 0bf6b11f-920a-4ced-9a69-0b4afc5df36f #> 733 21449 6612 NA bc8260d5-231f-4337-9979-7c1c40bc6cd0 #> 734 16492 2147 NA fa059382-e52c-40c8-93fd-bd69decdc1c8 #> 735 21915 7068 NA 41bc429b-f4c2-4edd-bbe1-9a36a178caeb #> 736 22016 7254 NA fc833ad5-955b-4129-9280-63d8eda84df2 #> 737 11276 576 NA 439874cf-4057-4a7b-922b-f77a90a5bba2 #> 738 21904 6962 NA ef978985-2123-411b-85bd-c59c04618dbd #> 739 5668 225 NA 58ac0e67-b0c1-4a2d-b89d-ccf3296c787f #> 740 NA 7516 NA 48efc038-96b7-4c63-a33c-41f6abe6d3de #> 741 13119 903 NA 4d1f4c44-3666-4014-95fc-4b0013b6d9a5 #> 742 19461 4574 NA 4595c8ea-9d85-4504-8a34-2c8a02349105 #> 743 12841 829 NA d2a0e5af-3850-4f16-8e40-a0b1d15c2ce1 #> 744 22146 7143 NA c744ade6-bce2-4c71-8f1b-742cb183c8eb #> 745 18055 3294 NA 86197778-8d4b-4eba-affe-08ef7be7c70b #> 746 16621 2229 NA 56073e7b-84ca-4d4a-a2e7-1bfc0277e8d4 #> 747 20912 5967 NA 33b0227d-4c21-4e71-b4cd-be35f7db9123 #> 748 21952 7021 NA bba755a2-63b6-4ac1-b806-0609816135de #> 749 21971 7055 NA fb48038c-8f33-47a5-abb4-cda19f66c853 #> 750 17923 3164 NA bef8b2b4-78bd-4a4d-bb5d-6b55ada9ef6a #> 751 21123 6291 NA 2e9ef3ac-eca5-4eb9-a41d-f404dfaae460 #> 752 20849 6050 NA e1705a56-ae89-4af7-baac-4e72b6f7bd7a #> 753 19258 4399 NA fed820cc-3104-431a-b38c-efa192216035 #> 754 20009 5299 NA b74ad3e6-b540-4f72-a4e1-3ee6d73c3163 #> 755 21079 6417 NA 9240e2e7-b6dc-4498-9abd-eb79a1df5462 #> 756 22392 7409 NA 5478c682-15ff-4932-97f3-6725c413c2c1 #> 757 20818 5988 NA b620e5ee-840c-402d-97be-9b2e0405e1f8 #> 758 16780 2324 NA a25c5a77-967c-4a4f-a885-0178868bbf67 #> 759 13129 905 NA c3f2ea91-98d6-4d37-b5bd-3c7ac07e5b24 #> 760 20286 5541 NA c40256f1-0bda-464b-a6b7-3a4ebb385573 #> 761 17058 2591 NA 2ff5e7ad-4ac1-4e26-9572-69bef348b1bc #> 762 22041 6899 NA 9b1a3246-4f3b-47f7-9bf8-a33d6e454723 #> 763 19457 4571 NA 43e8a6ac-d451-4dbd-b145-797764f91494 #> 764 19920 5001 NA 8caec1b4-e0b6-4a84-b8c8-617d6e91ef6a #> 765 16878 2422 NA 0cc4e449-185a-4b08-9f07-c907ad0c3e05 #> 766 21781 6964 NA 0f369885-8ecd-4ca0-a3dc-df8530a0db6e #> 767 19326 4460 NA c4caac75-07d3-44b2-88ca-524e495a1a6b #> 768 20684 5781 NA 82a7e1ff-019a-4f4b-aeb6-c41420e44891 #> 769 20511 5661 NA b2c4ef6b-4caf-4f4e-9cdd-3bd9f2e38d01 #> 770 20013 5113 NA a964f59b-af2b-48e1-b64d-c376cc1d8c28 #> 771 19080 4234 NA 36f62824-1cdb-4e9e-8a11-55df97e562b9 #> 772 16765 2309 NA 00f88be8-45f9-4237-b2b8-3271ec790d07 #> 773 19867 5038 NA 9e174ff2-ca0e-4e6b-96f7-90f0088f7edd #> 774 21679 6786 NA a72ea15b-5199-4101-a300-846e1c655add #> 775 21954 7462 NA e479ff14-6e5f-42a2-8b05-bca76c62111d #> 776 21451 6420 NA bc67a9f0-8c96-4114-8b46-4c97fdd577d1 #> 777 21969 7091 NA 08df3736-14f2-465e-af74-cdcdebe19a66 #> 778 21997 6903 NA 8753f2f2-16df-41c8-b25d-c93ada64d78c #> 779 20179 5182 NA dfa9fbe0-286b-456f-966e-14a9f70cb85e #> 780 16044 1840 NA 726c066b-4ce6-4af3-85b2-7ec34807166a #> 781 17328 2860 NA 8a7fa9bc-f589-4458-9a58-8ac3432a3df9 #> 782 22427 7449 NA eaacee31-0a3c-4f9d-be85-86490ae16f6b #> 783 17651 3022 NA 8491b12f-68a7-4227-9b8b-17630ff52101 #> 784 22086 6925 NA 34853ce3-5e1f-4b23-b730-6f51444291ac #> 785 22080 6983 NA bc399631-6a3c-4515-9f8b-acc9a08bc434 #> 786 19048 4202 NA aaa9228d-7399-4b53-a2e7-259438bd2959 #> 787 11105 544 NA f7b49d9d-2ce4-459f-8065-fa3b52d28069 #> 788 20111 5629 NA 3c20f5c4-3ac8-47aa-ba3c-c09ddf94c814 #> 789 15478 1674 NA 4d6c923d-4776-4558-a30f-739dc4070ffb #> 790 19884 5028 NA c2ee7e58-321d-44b6-9db8-f333b75b3a1b #> 791 18134 3373 NA 8a214c9b-8c31-48d0-a83a-039ec6ddbd9d #> 792 21373 6419 NA 155980c2-e289-48c4-a047-09c08d0ce7ae #> 793 20807 6104 NA 1e8293b4-25ec-479d-83b3-ef231d84ebca #> 794 18023 3262 NA 2df474e5-7117-4650-8d53-34b3fd0f1bbb #> 795 16319 2033 NA 20d66704-9c12-467f-a6ca-9cf9dc00730c #> 796 18932 4086 NA e1048910-1b5f-4d91-8702-f5ad06844b24 #> 797 21466 6467 NA 29815a83-1d6b-4e1b-b1c6-9bf44e7166c9 #> 798 19832 4967 NA 66313049-299d-4e58-beb9-8e051ab6548a #> 799 21559 6584 NA a1329bf2-4f70-48db-9785-3cd29fc7b56f #> 800 20842 5865 NA 92c8bc67-756d-4e3c-981c-3df010e15e2d #> 801 17295 2827 NA 9492f51a-22eb-465f-b3bb-aaee81ce76f5 #> 802 15042 1460 NA d15dacdb-17c6-4010-83d1-e332f9610422 #> 803 16088 1872 NA 1de5c7ea-54dd-4a1a-a319-4429ce604b3d #> 804 21535 6601 NA b22c91a2-e11c-4ca2-8dd1-54c6bce8225c #> 805 18421 3633 NA e9a7f92c-241c-4172-9874-6eb0c1576899 #> 806 16963 2504 NA d3186202-386f-443e-92ad-37d8e41dca55 #> 807 22082 7111 NA ea01fa3b-cebd-40c3-9de8-3dc7f5e44e58 #> 808 12912 846 NA 31b604a7-4f2e-4cfd-b040-5d749f7f5d5b #> 809 22032 6924 NA 64321852-52e3-4ac0-9b3e-898f0b1e500c #> 810 20482 5439 NA dbed6759-8ce2-4f1b-8757-aab4ec66dcc9 #> 811 20926 5867 NA 570c17a4-c14a-45a0-afda-93ef879b2604 #> 812 18020 3259 NA 22b2030e-ec57-4f96-b722-57b3e495c83d #> 813 14996 1433 NA 6444feb1-f5a4-4b45-9a45-79308a4445fd #> 814 NA 7518 NA 52766d25-2e8b-408f-ba3c-2ef9c3d082dc #> 815 14635 1255 NA 98c7ad4f-8e63-4028-b3ca-84dd37a5ae64 #> 816 16972 2513 NA a54dc10d-c7a9-4413-ab4f-5c7c3fdd53c1 #> 817 21366 6436 NA 7f35aa83-30f3-4997-b5de-11b0c19e90cb #> 818 13022 871 NA cc9528c4-3a18-4d3f-8d8f-cfef4dcd2d38 #> 819 22000 6977 NA f8f0760e-8f04-45bf-9371-fa33c945bc1c #> 820 20907 6055 NA 92e78492-1e80-453e-ab31-862e12ffe7d7 #> 821 16334 2042 NA 614c6237-8fe9-4a62-beec-0c44ca0fc2ad #> 822 13756 1040 NA 9279ccd9-3088-409e-8bc5-215363e7a29e #> 823 19933 5334 NA a473e7a2-8f31-43ad-b87f-c39e6635f1b0 #> 824 19458 4572 NA 5554177a-c14b-4931-85c6-fc302eb6770a #> 825 17362 2894 NA ccd34e5b-38a5-4633-8279-77e3a47f5424 #> 826 21873 7154 NA abbfa41c-ccb6-4378-b75b-28ec7d54e277 #> 827 20715 5822 NA e9b50746-32c9-478c-a8cc-3f037e762ecc #> 828 19293 4811 NA b2d80e3c-1485-488d-8033-52443c63909b #> 829 21364 7077 NA 04d09b84-6c99-4d99-a1f0-c30d3360ab52 #> 830 15375 1640 NA 291aca07-a3b7-4666-a8c0-2e0c01024de5 #> 831 15125 1516 NA 80b403da-381f-467e-883b-5b83ac02aac3 #> 832 20859 5854 NA 94325301-e0ad-4a9f-a0e5-ffec0f529be3 #> 833 18123 3362 NA 4d517d8f-fe4d-4c89-9a2a-fee836ba4a71 #> 834 20929 6037 NA 9ab44516-2a26-4049-b630-66539c7a5dfd #> 835 21240 6334 NA d4f0aa89-6309-4977-b779-7501eb8c8508 #> 836 21846 6959 NA 53022661-b6bb-481b-9ce8-b603e521925f #> 837 20128 5170 NA 8322b598-ab65-4b2c-8a54-af37f67a062d #> 838 21177 6246 NA 3eb32502-2ecd-44b9-978e-33473fdd8354 #> 839 16776 2320 NA 0f8ccece-d663-4069-944b-f318f64c60b7 #> 840 19823 5046 NA 82f459c4-bf23-4d60-9eb6-b062994f5517 #> 841 20302 5449 NA 18911a2e-1c57-49cc-b7a1-c2cbc599264f #> 842 20418 5442 NA bfdeb053-b503-4f35-968b-78d8a9997473 #> 843 21406 6409 NA 16423bd0-6239-454c-9ec8-f90477de17b1 #> 844 19479 4592 NA 00fdaebe-c8f6-43fa-addb-6a57dc6c5969 #> 845 9223 447 NA 002a02ca-e569-410e-867d-e317bad07fd1 #> 846 21228 6457 NA 67e5566c-73df-43b7-80ae-3d50d68ac189 #> 847 18899 4053 NA 09fab9a8-b0af-4580-bf55-5c9167912f89 #> 848 16015 1822 NA ec2895a1-4907-4a18-a526-f2db4b663c3e #> 849 22360 7372 NA d764aa2a-9318-447b-a108-6efa55268e5a #> 850 19973 5092 NA 579d92e6-ab4f-43e0-803f-b2d5a54d106a #> 851 20753 5857 NA cdc98acc-9eb6-4b44-81bb-61d7b8a3b55f #> 852 18997 4151 NA 6d49d4d1-a254-48de-9f6f-eeecac82ad88 #> 853 21794 6843 NA 617aee8a-70be-4bdf-9a71-2e2b74e647e6 #> 854 18019 3258 NA c731aa8a-778b-4ccd-a19f-517eb66f47b7 #> 855 21369 6396 NA 92c3ccc0-b808-4852-a65d-c2c7e9118cef #> 856 21227 6323 NA b556a98d-16aa-4a0d-9134-1b59c46cc640 #> 857 18999 4153 NA bea00842-e4db-4955-857a-ea8d4a0e215b #> 858 19800 5045 NA b55ae5ba-593f-4560-9cab-14e10698e01d #> 859 19671 4752 NA 1eaede88-f9fd-497d-93bf-2849948c993c #> 860 21692 6783 NA eaaa4a61-c2a7-4926-8e9b-3ec71be2f991 #> 861 19916 4998 NA ccd5239f-e8ba-484c-acf5-af0bd9f6dadc #> 862 19207 4351 NA 2a443351-5e63-4a49-819e-912b51a745f2 #> 863 22213 7210 NA 0830e644-2d6e-446b-9da6-57d7e3472fcd #> 864 21368 6395 NA 40a9d668-269b-48ec-be2f-128d89aeb20f #> 865 21737 7032 NA 8cd3d1bb-5b04-4351-bd03-4b4f9b9e33e4 #> 866 21759 6805 NA 89338a12-65a8-4670-ac99-97281732ff79 #> 867 20722 5828 NA 379f98b1-2f12-4f9e-8332-61cb930ac97a #> 868 19760 4860 NA f527c2af-05ac-4086-a35e-8efa1136860d #> 869 19845 4987 NA 44176cc9-9025-4dec-a790-fbfa57686a6c #> 870 16104 1884 NA 5b6c34e0-6b28-4c60-b31b-0aba6290c546 #> 871 20903 5888 NA 3e4c9bb7-6ff1-4bf8-bc25-cd6717ddf568 #> 872 22044 6785 NA 790ae305-a3ea-4a98-a13a-31dacadec04e #> 873 17006 2546 NA 5ce96781-4dea-4995-a6ae-7e8ba7acfdbc #> 874 18529 3721 NA 2f01f1dc-8e8c-4d74-95d9-1b36b42257fb #> 875 11579 633 NA 688f7a3b-4d66-4fcf-802d-6a3cb133ea30 #> 876 15183 1545 NA f14e6b34-3c77-44e7-bc9c-6c691d3fe46b #> 877 18661 3841 NA be4f1dbd-6ffd-4054-9f49-cc398d4ce5f3 #> 878 20281 5691 NA 965df459-3f21-4a93-9a99-15559eb977a4 #> 879 17037 2572 NA d766ee35-8ece-447d-94e6-1d33ba427b02 #> 880 22258 7259 NA b80be347-fd65-4a40-bdad-e11c75bded39 #> 881 18033 3272 NA 4419b655-867f-436b-8233-6d45f4dfef77 #> 882 21201 6266 NA d0dcbe53-8c71-4488-b468-785a756ee489 #> 883 21930 6902 NA f90ce4a1-b876-4114-958a-e90768761749 #> 884 19876 5064 NA 6b8cdb8a-db1d-4a3f-85dc-37cedef65c0a #> 885 21647 6724 NA ab47d1ab-af14-4054-ace2-0cd2fc1def85 #> 886 21887 6851 NA e91734d9-8e7d-4e55-9027-e7c338cc809a #> 887 18210 3446 NA 30f9ff1e-e66c-40b4-b6a0-46186de3b932 #> 888 22147 7145 NA 564fdf8b-c21e-4889-b371-e8ca079ae9b7 #> 889 21048 5942 NA 5314292d-aac5-4fe1-be7e-8f2ddf2d45a8 #> 890 18268 3502 NA b53384f0-6eb8-4d50-80f5-a2f955183317 #> 891 19934 5351 NA e4114f9d-80da-4e39-bd12-cd9cf2c0d720 #> 892 20331 5660 NA ef0a8abc-074e-4ed1-a053-846c3b1d9cc5 #> 893 16862 2406 NA 57deb6ba-ce26-4ccc-a859-adf0564fb78e #> 894 20592 5591 NA cdcd43ee-b31d-42d3-adcf-8afb4458976e #> 895 11414 605 NA 54475db4-f0e8-4513-bcc8-7e76362c19f7 #> 896 20330 5659 NA 648bcdd5-7239-41b4-b346-a2424f6c01d3 #> 897 20815 6026 NA ded35e89-0ed7-44e2-8e97-5566330e6d3d #> 898 21883 7128 NA 00a28b92-3567-45bc-9fdb-61276dc57755 #> 899 16773 2317 NA cb491475-1814-4914-9777-fb865ae0d70b #> 900 21536 6536 NA 6c8c270b-7412-452a-a221-7ec5600cc2a3 #> 901 14974 1414 NA e03775ef-3287-476c-9386-ff16ea31d7b8 #> 902 20554 5610 NA 8fde3481-68c2-43c4-a9d4-de73f0a259e3 #> 903 21944 6952 NA cc1cc1ef-551b-444e-be5b-1eeb5c3a4177 #> 904 14890 1368 NA d46e3db5-f89f-4211-b8a7-baeb1a35df46 #> 905 18068 3307 NA 952d6412-2351-48aa-8053-35a456d4e869 #> 906 22026 6884 NA cf95d473-31b5-4bf4-b52c-386567c51caa #> 907 549 17 NA 67f5e782-f91c-4536-9818-cf4a0e7e821d #> 908 21203 6268 NA f0c7de3c-9e8b-4c3d-b42f-985f29ce163f #> 909 21543 6651 NA 23df1eb7-f589-4e49-bb31-0b4ce983fe32 #> 910 19009 4163 NA 61e1881b-a33e-4d33-b518-017145d5fc03 #> 911 20074 5565 NA da8694f7-3e30-4500-b890-bd28c7bc0ddc #> 912 20959 6179 NA dfb05fbc-7329-4893-8dc1-3d30033e49d0 #> 913 20003 5367 NA 37476573-91a5-454f-a849-baf46c293940 #> 914 14885 1364 NA ca760cb5-83dd-4415-acc8-ef8b508ba976 #> 915 18913 4067 NA 808fe9a2-51dc-4d22-8f09-da1857b5a699 #> 916 17937 3176 NA cda62c8b-89dd-4c03-a86d-dba70541693a #> 917 16647 2244 NA 69c1e87f-7ffc-487d-8724-09f4fba12b59 #> 918 16434 2110 NA 10d49d75-aa4a-4d26-b9b5-c74f4e3c9ac8 #> 919 6300 252 NA 046a6f57-6927-4f46-9c0b-67b762f2e42b #> 920 21376 6523 NA 7141ec7a-4f3d-44a4-979e-6644ab9e8f7b #> 921 9038 421 NA ade43b1a-0601-4672-83b6-d246bc066a19 #> 922 9902 490 NA 0045a36c-f464-49e0-a25a-9210edc94bc1 #> 923 21277 6450 NA a259d6b2-0238-4f22-b3aa-de7132cf9285 #> 924 19822 5068 NA 6faa5a10-56b8-4dd0-b8de-0cf1378b6726 #> 925 21684 6790 NA cc4b5f58-a11c-4450-a1df-617ad88336e4 #> 926 20982 6175 NA 0a040f48-4fa1-479d-ae9d-3ab1457539ee #> 927 4807 184 NA ab58c0ac-a747-47e6-9b3c-505e41d2bd3d #> 928 20600 5619 NA 12c39c1f-d579-4bd5-b736-62afd23b8208 #> 929 20018 5116 NA 452520cc-4921-47f1-8d6a-55f7cee8bb0c #> 930 14887 1366 NA a2802951-e573-4e8f-ad31-14b9ae5f8e7c #> 931 20791 5920 NA cae34950-dcb7-4021-ad21-0a8ae7cf47f1 #> 932 20191 5220 NA be8e5962-f2d9-4316-9fdf-212a95dbb590 #> 933 19624 4716 NA 8106a0d3-1cc9-4038-8c1b-9c7886a6bcba #> 934 18081 3320 NA 8af5d867-302a-49ae-9acb-fede2cebe979 #> 935 21411 6633 NA b38b6c46-7b53-4c5b-864c-04e261c97ddc #> 936 17946 3185 NA 1b17a67d-c771-4e7d-80ea-fb1d19adb200 #> 937 19975 5106 NA 47ba2a5d-1177-4421-a9f0-4db1906afff7 #> 938 17154 2686 NA 98a944cf-0fc3-4a0b-9011-490722667d37 #> 939 18101 3340 NA 47426d59-7af4-4714-8050-a85a0ae70f65 #> 940 16920 2463 NA a37a5bfd-b48c-4d8b-817a-d8ce7ca3592d #> 941 20865 5975 NA dbda3235-5f3a-4c16-81da-48c093ad6c85 #> 942 21683 6846 NA 826c6c22-2a3a-48bb-befb-8e552fb391ea #> 943 20805 5844 NA bd1120b6-38b3-4225-a4b0-20660a149d0d #> 944 19044 4198 NA c871b3a8-72c4-425e-a357-2de37e033c8d #> 945 21556 6588 NA dc51b38c-dc82-44ee-a88b-764d681ce58a #> 946 13878 1071 NA 1726a359-9444-4761-a1f2-cb35ee6fa60e #> 947 13870 1067 NA 1a2fbc23-e6db-4d2f-a152-2c774341b7c4 #> 948 9906 491 NA 973bfe3c-6d0d-4130-a79c-f860650b1da6 #> 949 21729 6895 NA 3bd012f5-1fdf-4ed7-b660-5013122df93f #> 950 19317 4453 NA 30641ad1-3511-48a4-a63a-95c88846b705 #> 951 18269 3503 NA cadecca8-a102-43a5-9a0c-f7cef0b9a579 #> 952 18977 4131 NA 659d31a3-9c62-4e3d-a0ea-b2e4967d6947 #> 953 16481 2141 NA 8a55e15e-9385-4648-8123-bc5f50f6b304 #> 954 21942 7132 NA 4d224244-dbb8-49db-b8d9-8bb974cea82e #> 955 19994 5091 NA 2177026c-2b34-4b88-bc88-50d7c9962064 #> 956 20178 5181 NA e669f022-4065-4ef7-b850-a90e8b2367c0 #> 957 18925 4079 NA ae0498b4-0ccb-4b11-9449-f26c621d7c79 #> 958 18004 3243 NA 771d19bc-f5e2-4a25-8553-4ad3c341c1c9 #> 959 3942 146 NA 640710b9-72f2-47e1-9afa-f3070b23c119 #> 960 19839 4979 NA db9fa46f-f0f6-40b8-a207-60d46173d7e1 #> 961 21116 6222 NA ca08b2bc-7fad-4dec-88d9-5f5f9712a830 #> 962 19856 5029 NA fbf2dd5f-b324-424d-8cd3-335b0d695c6a #> 963 21418 6619 NA 23424024-3b7b-4de1-9b0c-09d170f845b3 #> 964 16902 2445 NA 81aaf55d-df8f-47d6-9bf1-06b78df37bf6 #> 965 22269 7271 NA 959f035c-b8ce-45a3-bbe3-fda439c1e9f1 #> 966 22148 7146 NA 41ff2f2c-6ddb-4bc5-9712-3664501f7af9 #> 967 20293 5545 NA 374036ec-f329-4098-8972-0d9ca326fd37 #> 968 22069 6916 NA c1bbdfa3-5171-4018-a812-1dddacb3b421 #> 969 18056 3295 NA 0df44cfb-8dab-4fc1-8556-108505a4b428 #> 970 13911 1086 NA 408aff57-2b32-41f7-9520-0064ad14af21 #> 971 22461 7487 NA d13f374b-649e-4762-bcbe-660c6dcc2131 #> 972 18978 4132 NA 794760c3-b654-48fa-ba3c-3b07fdb4c03e #> 973 21891 6981 NA fa797d7d-4537-4e2e-8fd1-cd8831894092 #> 974 20848 6103 NA 0681ed0d-6b7a-4582-85b8-2692f0c2f058 #> 975 21435 6542 NA 65a702f3-1e60-46a3-bce9-8b4e3f939888 #> 976 22265 7267 NA 5616e0f0-8306-43a8-8347-e5b8e26f8cbf #> 977 13816 1053 NA e85680db-639d-49cd-ae29-28e5cd4ac9a8 #> 978 18537 3728 NA eddd3f47-fdd1-4d53-9e31-93b46624fd0f #> 979 15583 1702 NA f9ec0e39-86d2-4f99-84d6-b4e7bb387d8b #> 980 19379 4507 NA f4a43515-f437-499a-8c57-086eb579c5af #> 981 14905 1382 NA 2dff7d82-426e-42d6-8c7c-170ad3a24ad6 #> 982 22263 7265 NA 80422fa0-20c3-40d8-a3e6-93f55b09b872 #> 983 20828 5877 NA b5d116d8-11d4-43b1-8f0b-9a3ba26648c9 #> 984 18710 3888 NA e9615c8c-3a7e-4b10-92f8-86f48edbe9a4 #> 985 22040 6980 NA 13bbc7df-2a25-44db-a79a-89ba6c1ac009 #> 986 22042 7067 NA 7e6798b8-b33f-4a35-ab5b-67fafd8d9e65 #> 987 1694 59 NA e0856548-6fd5-4f83-9aa0-91f1bf4cbbd8 #> 988 21991 7504 NA 8ca83e4e-d3a5-4dcb-a917-e58e36b77721 #> 989 16799 2343 NA ede260be-5ae6-4a06-887b-e4a130932705 #> 990 20767 5839 NA 99847f76-5bf2-4cbe-8573-9a477f7fb472 #> 991 21906 6965 NA 586bc34d-f368-4d82-96b1-816d08fa2837 #> 992 19902 5031 NA ab9bd5b1-eaf9-4f2d-8acd-fbc143980b17 #> 993 21125 6294 NA 5203e275-5554-47de-bc0a-5b13639e5b50 #> 994 16883 2427 NA af3599a5-5eb4-4dd4-87ab-e0032ebfa644 #> 995 22266 7268 NA fc081a72-124d-4648-86a4-45aebb95a5ba #> 996 22007 6890 NA e1917291-e27c-4221-b62e-36b5d9df254c #> 997 21417 6517 NA 3267e534-526e-4db8-8e1f-49fc7ee8aedb #> 998 18208 3444 NA 0b06c168-c660-440a-922e-954ac15c0df0 #> 999 16133 1905 NA 462bfd22-1159-408f-8f92-7fde712ffc3a #> 1000 20061 5321 NA f1fdaa82-25bb-4ae7-8945-c0b9864214ca #> 1001 17947 3186 NA d848e4e6-ff3e-421c-9bd3-c2f62a16efd4 #> 1002 20288 5483 NA ca113409-c714-40f8-82db-727eae1e455e #> 1003 20607 5639 NA 80ebeab8-891e-4a54-80ec-3f102fed7cc7 #> 1004 19977 5087 NA 5067e5ee-bae8-411e-bc05-011a88a3d954 #> 1005 2593 96 NA 0ce48193-e2fa-466e-a986-33f751add206 #> 1006 20283 5257 NA d897b70f-29d9-477e-a72a-c9bfbadb70d3 #> 1007 21841 6804 NA e5094779-e94f-4052-8597-bdbee3719f6b #> 1008 21156 6231 NA fbaa74ff-f6d3-4bbc-bdc1-12aae7fae484 #> 1009 20984 6153 NA a2e0f742-e608-4e29-99cd-e7cd765afba1 #> 1010 20976 6159 NA 3f454d05-40b8-45a8-b195-ff2565b6c79e #> 1011 21823 6963 NA ef87e355-8e0c-40ed-a85d-bca4896d4f1e #> 1012 19045 4199 NA 27dd5b6e-ea65-4622-a6b4-460fd144407c #> 1013 18041 3280 NA 442eb96a-deb6-4e73-b65a-a2bb25ffa968 #> 1014 21802 6828 NA e10bfeb8-ea01-47bc-bfa8-45f6dcbf71b3 #> 1015 18995 4149 NA 122e131c-b08c-4b10-901d-481a20aeffb8 #> 1016 21107 6210 NA e1b066fb-d077-42a3-9f5d-4ed560c9d777 #> 1017 17998 3237 NA c7fccdf9-dd52-4483-862b-d58a94560135 #> 1018 20913 6067 NA 7191cfa4-01c7-45ed-95a8-0d503ed1cc1b #> 1019 16029 1832 NA 7788ca8f-88c8-447f-9110-3cfd3ca5efd8 #> 1020 20895 6008 NA c589d918-f69f-4284-aa85-5f9c30e006a4 #> 1021 15131 1521 NA a750e7ca-12ab-4d7c-bc65-f58793c3ed16 #> 1022 11241 569 NA 52366445-a41d-4b7c-bd42-1ea4cb940695 #> 1023 3061 111 NA 9c21e9af-681c-41ef-9b00-fbc9e1668ed1 #> 1024 20952 6139 NA f808794b-3135-4f75-b46a-ba90bf6b8502 #> 1025 22477 7502 NA 921d49c2-64d1-4108-a3a3-0c237e17748a #> 1026 21798 7050 NA 7874d188-0fcd-4af9-9289-27c27e2bbd16 #> 1027 20893 5957 NA e0755328-7fe1-4df7-9dfb-93e9cf9ef5be #> 1028 18000 3239 NA dac819b2-245f-4845-a73e-b6f92fbe3abb #> 1029 19491 4602 NA 7c9c7800-69d0-459b-812b-a07ac48e9f2a #> 1030 21420 6469 NA 109cf714-fc59-468d-b02f-2db4e75a56a7 #> 1031 16470 2133 NA e7d6ae25-bf15-4660-8b37-c37716551de3 #> 1032 21169 6239 NA 228b0dd8-3f75-4b60-90d1-59036858b8ae #> 1033 21708 6763 NA 6fb8803e-2a84-454b-827f-df747e9157d8 #> 1034 20398 5323 NA 0b97067d-9e06-4ec0-97b2-e1cb491e12a6 #> 1035 20182 5223 NA a3055591-6c57-4ff0-9a2f-5e2547c62820 #> 1036 16326 2039 NA 27e60657-f73d-4125-906d-aa72cc3477dc #> 1037 21513 6519 NA 4bfd6f35-f0ac-4c43-a023-f8236df31deb #> 1038 20145 5185 NA 6a23db75-021b-4808-99e6-21a33d34202b #> 1039 15215 1567 NA 502b3a6c-e965-478a-858e-964b4ac2296c #> 1040 19976 5086 NA e7f0a505-8060-403e-a3b3-9d4e88dda1dc #> 1041 21115 6223 NA fa7bdbe5-23b9-4cba-9015-98c5e2d09c9e #> 1042 16802 2346 NA 7f5f2a81-ac40-420c-9421-5b9e2a21faf8 #> 1043 17982 3221 NA bbf8d4d6-8f5d-4847-ad1e-0d205d38f0c5 #> 1044 22001 7338 NA 3b8a2ce7-52d1-4ca2-af53-b7d7617936b3 #> 1045 21030 5932 NA d6ac9c49-ef2f-44be-a5df-dc57ce23fcc9 #> 1046 20219 5520 NA 411c2af8-64c9-4982-8d72-3ba4c683c0db #> 1047 17955 3194 NA 0da88ee9-26f4-4d59-aa66-1e2dbda05580 #> 1048 22061 7052 NA f113cf01-5a86-4ed9-ae34-dcdbac9e11a6 #> 1049 20840 5883 NA acbf5978-d7da-4d01-8f1d-22dd65d4484c #> 1050 20758 5968 NA f60017c5-e44c-4256-831f-86c8d8626481 #> 1051 16283 2008 NA b6c9d494-a3cd-4d57-96e1-f807f0b9be63 #> 1052 20032 5344 NA 0a08ca62-e488-4369-8e26-8b158443865f #> 1053 16297 2017 NA 5f173aec-86fc-40b5-b0ae-805b46476022 #> 1054 15561 1696 NA cdb10720-0d41-4cb6-9fb8-c00713754a1e #> 1055 20070 5317 NA ce0badde-28c3-45ce-a6f4-e2f82ef129f8 #> 1056 18903 4057 NA 96f646e2-0984-4092-8031-22d2bf9b620c #> 1057 18029 3268 NA 16e4ffec-959d-4210-8702-36c0bf20dda5 #> 1058 20513 5662 NA f9ae156c-f690-401f-b964-34b0ff6187f9 #> 1059 21931 6923 NA 95f3b8ac-e10f-4f0d-8650-b464b37ded86 #> 1060 19999 5378 NA b7337487-017c-42f4-b500-6802a35efbfc #> 1061 20901 5934 NA eff1c40e-715c-49c4-93d8-6155322c1205 #> 1062 19012 4166 NA 1df2f078-18d8-4bb4-9d6a-9ba4bcb126bf #> 1063 12955 856 NA dc11299d-6c24-4048-8b2f-f929e4ed0b92 #> 1064 22054 6795 NA 7e2046da-1bdb-49b6-abb1-c35e725d84a3 #> 1065 19889 5066 NA b4974d96-a831-4914-9de6-6758a4ae12dd #> 1066 13091 894 NA ac540ab1-95e1-48a2-ac93-6c0037c5a026 #> 1067 18053 3292 NA 389438be-4bd0-4842-9021-b614289b8d98 #> 1068 18967 4121 NA 3618e094-0273-4e99-9641-65cc488128e5 #> 1069 22273 7276 NA 2d233d49-fca4-4ddf-a73d-21f4451ce3fc #> 1070 20761 6084 NA 04ca77dd-b55f-439e-a593-37dfc8ea8320 #> 1071 14481 1220 NA 0a821a41-cff9-4b6d-9140-301a09edf895 #> 1072 16295 2016 NA 5408024f-0014-4abe-9d27-4467d802d50a #> 1073 18215 3451 NA 203b60aa-cb94-499c-a4ca-d3c6b94dddc4 #> 1074 19496 4606 NA 1817f16b-5ff3-4d64-8d7a-f64e02f5a033 #> 1075 21478 6430 NA dd62d18d-3438-408f-8b53-a68399bd4a04 #> 1076 16804 2348 NA 5aac7b03-3b39-4084-bda5-8423abf28903 #> 1077 20783 6027 NA 2b13e2a3-22c5-41cc-b13f-30c501f7c810 #> 1078 20021 5325 NA 872967b4-d1ab-4b27-82e9-c40774fc995e #> 1079 18956 4110 NA 8cb76d80-0326-474f-86c8-869a86405777 #> 1080 13977 1103 NA eafbc0f8-2e3b-4014-af9d-81fc14b5009a #> 1081 17081 2613 NA 4688d4e5-bbea-41c9-8a6a-c06bc34ac7b4 #> 1082 21879 6900 NA bc69c92c-58ff-44b2-a18b-07a08ee78dc6 #> 1083 19978 5088 NA 43aeb127-28e7-4fac-a611-39c38f3f7628 #> 1084 20094 5147 NA 68c82358-44df-4884-9e5d-f5102435c32d #> 1085 18545 3734 NA 5a422c26-d686-4ad2-af10-d7d691150e27 #> 1086 16913 2456 NA bb4619b4-30e6-473d-947e-41d75a573475 #> 1087 19309 4448 NA 0d4fd512-e1fa-466e-a984-d2a4389c512b #> 1088 11120 548 NA b23e22bb-d478-4312-a085-e7642017ccfb #> 1089 16429 2105 NA 29626ee6-b528-4618-a4a5-771a5b0ff54d #> 1090 19966 5077 NA 0df7834e-6373-4f30-9935-5c05d28e752d #> 1091 14017 1113 NA 6ee71282-c2b8-416a-8de1-29c0185d9b7b #> 1092 18857 4017 NA eec5265c-7731-4bb6-8af2-4f98a67f9ab7 #> 1093 16116 1895 NA d4b30988-e8c5-4689-8037-f79a0d3c2774 #> 1094 5282 208 NA a261fd0a-b096-4db7-bd51-2f13bde485da #> 1095 20566 5536 NA ef21feb3-991e-42d7-bb16-8bc92f7894bf #> 1096 20318 5271 NA 7f5c931b-4ebd-4309-a1d2-e04a5cf782e8 #> 1097 16847 2391 NA 2c8670ae-0c23-4d20-9d2b-f4c3e25f8938 #> 1098 21856 7005 NA 26e66f79-5f08-4ee1-bbc5-85c8f5f7fddd #> 1099 16838 2382 NA 31c376b7-2e10-473a-aa54-d9f709a5b93e #> 1100 21126 6293 NA 1731325a-0303-4a56-81f5-3c4a588cf0d6 #> 1101 15589 1703 NA 16e13f52-32b1-416f-83ae-1cbf2f92cffc #> 1102 19866 5036 NA bb9db665-7f9f-425d-9e4b-df78c65c8b97 #> 1103 16071 1860 NA 19da8eea-111c-4e70-b516-0259015ad9db #> 1104 20813 5901 NA 8abf63a5-6f5d-46c2-8a3a-b9b03d0cab26 #> 1105 19042 4196 NA fa7465d1-4d84-452f-97c4-cdc14c607a34 #> 1106 20936 6150 NA bb5156b6-adca-425c-b336-54507cdd0cf8 #> 1107 17918 3159 NA 813c2073-8f69-4f6f-94a6-6819cd14b4f3 #> 1108 21947 7115 NA 608ebe54-1b57-4775-808f-ab2e02637a75 #> 1109 22359 7371 NA f6153509-d21a-439b-a33a-007a9f25218f #> 1110 19903 5032 NA 0cb5a32a-a340-4671-ba2a-93f5fa6aee8d #> 1111 19304 4443 NA 6733b953-de77-44e5-acbf-c2d3a0940243 #> 1112 15247 1592 NA 54d4e35a-2e6c-48f6-86ad-92dd596c173c #> 1113 20974 6164 NA a96e777e-120a-4843-8bfb-59069bd1bd52 #> 1114 13227 928 NA 3283f152-d373-43b3-b88f-f6f261c48e81 #> 1115 20067 5132 NA 775e71fb-96af-4831-af0c-78b2e89897ff #> 1116 19021 4175 NA 6335a39b-9cb4-4703-bed9-1835b9fc4791 #> 1117 19937 5007 NA 40caae08-0389-4c59-b796-d924047f57f9 #> 1118 19969 5080 NA 6e01959d-9860-49e4-a997-eee257718812 #> 1119 21967 7085 NA 0063fe36-d8c2-43e6-8ab1-af890eb58cea #> 1120 19935 5006 NA c95f9fd7-9c7e-43d3-a6aa-2ba78ce09fbb #> 1121 17916 3157 NA 095e0c1a-0bea-4bc6-868f-e4bbe2ce6c30 #> 1122 19569 4670 NA a9b58dcf-40f6-4c27-a415-b922fc39f0bb #> 1123 16568 2197 NA b6b954eb-4591-4b7a-86b9-a481f15fdd58 #> 1124 17948 3187 NA 66990fc9-f98d-4712-8a0e-524372b9102f #> 1125 18131 3370 NA 30e8767e-a208-494d-b684-4f1905e0ac10 #> 1126 19974 5093 NA c3de87d2-5461-491f-8f36-1421ec9c0a76 #> 1127 16312 2029 NA 3f0613a9-f060-4b43-95cb-3b263f05cd0f #> 1128 21190 6257 NA dba7bc1b-c414-404a-8845-4b0245df64a9 #> 1129 20028 5328 NA aecd8785-d22b-43b4-bbff-76b7e4319ed6 #> 1130 21001 6128 NA bbeb74ae-87d4-417d-ba57-670391baf8ca #> 1131 19948 5382 NA 91714138-9d0c-446d-b509-709d95f9202b #> 1132 15151 1536 NA 81a5c010-2e89-4b65-a924-015cf4ea3f94 #> 1133 21530 6645 NA c9b2e966-bdfb-4ccb-be3c-42473f63929b #> 1134 22139 7133 NA 72100db3-2daa-4c17-aaa8-6c2c52bea5f3 #> 1135 19287 4427 NA cbfb7144-357e-4feb-82d7-a6104fdbf908 #> 1136 20961 6143 NA 8d44783d-6149-4e6c-8a5f-5fead0ec7677 #> 1137 20604 5674 NA 9fe24e8f-360b-4ca6-8e46-6d60d8728efa #> 1138 16876 2420 NA 294b8433-6560-4117-82e9-79f51d361b0b #> 1139 22268 7270 NA 82cdfc87-01d1-49bc-a9c8-ecf8f5bde7f4 #> 1140 22109 7044 NA c2ec4712-147c-49b1-b6ec-fdb298913080 #> 1141 20492 5445 NA b736f05a-38a5-47b4-aaab-734667967ac2 #> 1142 18920 4074 NA 3cb26a5c-9c90-46ad-b539-e29ad6934e30 #> 1143 19878 5057 NA 7b06a505-ea09-4f2a-adad-f0f1c9b3ebc9 #> 1144 16310 2027 NA a21d1e4a-aae6-4ebe-8f70-1087151b2b50 #> 1145 19879 5058 NA d22c6b00-da97-4ccf-ae49-f06405fccc3e #> 1146 13036 878 NA 98841eb4-0f2a-4073-bc91-0fa8548b305b #> 1147 19105 4259 NA 08875a0a-0a3c-4fc1-b5f7-41d510503628 #> 1148 21022 5971 NA 8b1f53bc-d0c1-4fbb-8d7e-3ab7188132a3 #> 1149 22279 7283 NA a1be5d02-d5c4-42f6-8749-7ac2ff2a6f09 #> 1150 22278 7281 NA 8f36321c-c317-40ce-ae09-fca8694083b4 #> 1151 20169 5191 NA 4ab9df5a-3e40-4402-9f68-bbc659a94784 #> 1152 21871 6893 NA e26bb68a-8987-40b6-a2d1-af013a13306a #> 1153 17933 3172 NA d97529e5-f1cd-4fe0-8697-4b51bbe52fd4 #> 1154 16895 2438 NA cbbf7b76-cd26-462e-bc18-d80f5109723b #> 1155 19831 4970 NA d3fee51d-67f5-413b-a4b2-bde86b97babe #> 1156 22030 7118 NA 22febe45-170a-4f01-b144-3b35b44c7da4 #> 1157 19164 4313 NA db392145-7bee-4453-8762-ec946b3130b3 #> 1158 22112 7062 NA c8bbff7b-3b6e-413f-8945-24c01bfd84c5 #> 1159 19852 4990 NA f9a138e3-829d-442f-8345-43d1cdbac225 #> 1160 20023 5345 NA 73040fb2-2b26-444b-956e-df0927985bb2 #> 1161 19049 4203 NA 14b52c32-e9f6-4b64-aa22-1d96bb20cf84 #> 1162 14377 1193 NA 9552a04c-6468-41e0-bc5c-c91efedf2fc3 #> 1163 20428 5450 NA 6bfc1107-7883-47db-85ef-3f8f24222a20 #> 1164 20897 5944 NA 6c338c70-42d9-4d35-bf87-04fe7e2f690a #> 1165 22140 7134 NA 08765a08-c1cf-4065-81b3-67cbad7e0e17 #> 1166 20015 5331 NA c897e280-6597-4dce-9c0d-ed845148d714 #> 1167 21117 6218 NA e653effc-2bdc-4bfe-bf3d-272e783ae4c4 #> 1168 20024 5346 NA b0ad00bc-3b30-41ce-8892-f8105e0943e2 #> 1169 18381 3598 NA 8da0fe32-1758-44ed-9acf-21b3721cbd0d #> 1170 19014 4168 NA fae57441-a198-4674-8a37-401b64d17961 #> 1171 19419 4540 NA bd1193d4-ec52-46c1-bf6f-74a11f712097 #> 1172 19187 4331 NA 8237c04f-a1c4-4c31-b5de-3afb3c81389f #> 1173 15559 1694 NA b1a2aa6e-7104-4e35-910d-fbefddd74a78 #> 1174 18018 3257 NA ad2258ab-67f0-41c2-bcf3-f3ba145187dc #> 1175 18897 4051 NA 878d95f5-22d9-4f20-a3ec-2b5b117a8c5c #> 1176 21820 6823 NA 060d05d6-aa31-4571-9f91-12c8050b6aaf #> 1177 8244 331 NA e47706c7-e14d-41fb-b13b-83a835a1f3bc #> 1178 19912 5347 NA ed5bcd2c-6335-4c0b-93b7-2116684a9b02 #> 1179 19979 5100 NA 070850a3-7387-4836-b3eb-b1c8f8731aab #> 1180 21792 7038 NA 9a5ebed1-839d-40f9-a86e-ba9c65c7c7e6 #> 1181 21682 6813 NA 925195a4-06ba-4e37-ae7d-a3d6a5419139 #> 1182 18998 4152 NA 413f7971-4d5b-496d-a11b-f623e9bc3b7c #> 1183 17972 3211 NA 73015642-080b-48a9-b1b5-bfa4a606cfd1 #> 1184 18132 3371 NA b6ec1773-309e-422c-b82c-b55a557031d6 #> 1185 20991 6152 NA 26421b57-c32f-45d3-abcf-c23defaf4f2e #> 1186 13753 1039 NA cbe81592-1ee2-4bf1-870a-2578c4c8267e #> 1187 18623 3808 NA bc6aa137-cef3-481e-a87a-e06dad32882c #> 1188 18011 3250 NA d71abd0e-7a69-4e28-a2f3-d8d516f3d8a7 #> 1189 22277 7280 NA f1f4a350-cc5f-43a2-bde1-829058d6c338 #> 1190 12960 858 NA b44fa657-e4ea-4cc8-9581-33740bc417e6 #> 1191 21600 6698 NA 0864f928-283f-40e4-9c04-f2b2b374e237 #> 1192 19031 4185 NA 8255ee3e-cd6d-445a-8f45-7ac60fa3e794 #> 1193 16852 2396 NA 89c07ccf-8157-4246-8c83-898a81d2dc77 #> 1194 19857 5060 NA e550d0d9-2e56-4c71-8a9a-8a683daf32a3 #> 1195 20378 5667 NA d7afa203-07a1-406d-bb1d-eb81f331955b #> 1196 11369 589 NA 1ed30e79-c25f-4ce1-a17f-94a4bf6d3686 #> 1197 20020 5117 NA f993832a-f81f-4706-90b8-80fd193bdfd7 #> 1198 20083 5156 NA d83c2f7a-3195-4e6a-b1a0-4745b5dcca38 #> 1199 15602 1706 NA bd413539-9351-454e-9d61-4e8635d7e9f5 #> 1200 18900 4054 NA 8809c0dd-786b-4255-a7d0-333c9498c19a #> 1201 21796 7404 NA 86707c8e-fec4-4ebe-9111-4d3ad238ad43 #> 1202 15965 1793 NA bc0f07a4-3e7b-4e61-987a-05533dc225be #> 1203 22458 7483 NA 2c73720a-702f-4f39-9b54-c4da9d9f632c #> 1204 21959 6985 NA be29caf2-9942-4e21-939a-a29407555c56 #> 1205 21005 5880 NA db0c3b1c-8d18-435a-864a-cdd696f963b6 #> 1206 22276 7279 NA 18a3fb57-3220-4fa3-af42-20e179ec896f #> 1207 16919 2462 NA 617269c1-88b3-45a6-b4a8-b2806a0cdaea #> 1208 19981 5102 NA 5226f6a9-a6af-45f9-93ec-669542f3cfc9 #> 1209 21349 6427 NA f374262b-d642-4d05-9584-5955548ee4d1 #> 1210 20829 6045 NA 49f9f357-e90a-45b7-9f55-fe451125149f #> 1211 19172 4319 NA 7fc949b6-a1cb-4f9d-a06d-b65773409a44 #> 1212 14005 1110 NA b8426cea-f8b9-4061-8d56-e70d1230103e #> 1213 21744 6819 NA 1aefd5e2-1f85-471a-91a5-4aad4cf6fe6d #> 1214 18049 3288 NA 5dd5a4bf-08f1-46e1-bf31-eab422cef869 #> 1215 15067 1472 NA 5c4ec28a-5393-4073-a71d-df0dad8858c6 #> 1216 19344 4476 NA 593d31fd-212e-47a5-b3cc-0793cf075a98 #> 1217 15359 1633 NA 20b43016-a174-423d-9551-7f62ababad3c #> 1218 21333 6354 NA 78ca0233-a32a-4435-ba06-6ececaa3c537 #> 1219 21175 6244 NA 095f659a-2aaa-4961-912c-66f337755787 #> 1220 22057 6935 NA 72d2a51c-7f02-4db8-8cce-19c45820f170 #> 1221 18929 4083 NA 4de23d54-2169-4b17-b0d0-c47b2edd9f73 #> 1222 22289 7293 NA 56d8015b-aed7-4a46-868e-a85672cde790 #> 1223 20148 5188 NA f3de155c-da4f-4487-abb5-76225a8e3c17 #> 1224 22052 6791 NA afbc5ac8-8e3f-4cb6-a96d-3b28b039bde9 #> 1225 22141 7138 NA 039d817f-17a4-471d-8949-197335dcd1ad #> 1226 20460 5479 NA 3db8b3b4-d3f5-4b35-bc19-ee56ec6d29da #> 1227 21281 6416 NA 65e778fa-4639-4973-bb82-c76efa2ff309 #> 1228 18434 3643 NA 0e41e388-6e5b-4a12-aa2f-45bf83ffadc5 #> 1229 22201 7199 NA cf82c333-e8ca-4128-9aa3-375ea5629b30 #> 1230 17993 3232 NA 56c81bc7-72ac-4356-a737-b8010f931b56 #> 1231 18528 3720 NA b14bcb8f-a563-4b68-8a4f-5ef7da8b181d #> 1232 20737 5840 NA dd7be5f3-c615-4621-92e1-2434519cb1f9 #> 1233 21888 6800 NA 74439c42-a6db-4a9a-be25-559f3e03ef59 #> 1234 18959 4113 NA 887dc7b2-fb32-4126-be14-509b40424d34 #> 1235 16877 2421 NA e4a401ce-3740-4e6b-8dcf-f2b41a3beeb9 #> 1236 15029 1453 NA c9bbb2aa-f044-400b-9f09-5321604a3b79 #> 1237 12450 754 NA 7011a0e7-f402-4bc0-bba3-b31d3613e47f #> 1238 20269 5532 NA 55998ec0-4d69-4d14-a2f4-cf72de36e998 #> 1239 19846 4975 NA 3971d35c-17f6-400e-8970-86bbf92cc744 #> 1240 15441 1663 NA ecacc01a-e71d-4028-9bb7-37fcee0f1708 #> 1241 22285 7289 NA cc5a9d21-10cd-4966-ad17-44edb238834d #> 1242 16463 2126 NA aa82ed23-934e-451f-ac47-65c63a84bf16 #> 1243 19508 4617 NA 8bfbee63-feb4-4862-b3c8-08d2f65c8b5f #> 1244 16874 2418 NA 8a73dcfa-3e7c-4a8d-acee-7d2b1fee6c2e #> 1245 13446 982 NA 9be8224a-4a19-4f6a-a2be-ecbd3a24868c #> 1246 16264 1993 NA 62ae1c72-f5ef-4c45-bac9-aac5569b034c #> 1247 16828 2372 NA 56657521-aabb-4c6b-a6d1-9b809e6495b6 #> 1248 16560 2192 NA b90a3e2a-66fb-4b1a-a6de-7482fbe2d1b2 #> 1249 16259 1988 NA f5eaf900-592e-4a3a-8514-4426dce7d3c3 #> 1250 22454 7479 NA c9dcada0-7f61-48af-84fc-d147a31c60e6 #> 1251 12594 775 NA 40cda44b-2ee3-4ad1-834e-995e30db84d4 #> 1252 18619 3805 NA 1a59e864-5282-4d94-b678-8537d524e181 #> 1253 17139 2671 NA 69bdf41e-3c32-46c1-93b8-e952edf5c61d #> 1254 18645 3827 NA 8fb2ca06-3d13-4552-98e0-7b913b4ab5b9 #> 1255 22006 7000 NA 6a2ee9da-4df9-4486-8060-8362a20bbb40 #> 1256 21974 6997 NA dd7218be-5eaa-4d51-94f8-a9f68d2f0af9 #> 1257 17967 3206 NA 82a70525-35cd-4389-a5d1-3b0f11f05a28 #> 1258 21109 6214 NA 8227621d-ad2e-4dea-aef5-64d4f154adb2 #> 1259 20772 6105 NA 62976179-ae2c-495f-9e94-cb3e49933243 #> 1260 20736 5993 NA 4d094a58-1cbe-4ede-abaa-cd2f1a492f0d #> 1261 17977 3216 NA 08c01429-e747-48f1-b38c-8e712fa53c8e #> 1262 20026 5315 NA ef65234e-2459-4ecd-b9d1-8751a7c7153d #> 1263 17925 3166 NA 66e776e7-f354-4939-835b-a23dc889c6ae #> 1264 22287 7291 NA 818450c3-93a0-417e-80c1-b49a1bc541b2 #> 1265 16670 2259 NA df4d7b62-ef37-494b-b068-f319ad336bbb #> 1266 22291 7295 NA fb18e325-eab9-459f-a559-b482894eb0f5 #> 1267 21869 6972 NA a94f0507-44b0-4fb5-9e8c-fd21157ec1a6 #> 1268 20928 5926 NA d61b7bc0-beec-4cab-97b0-7dbd27ded26e #> 1269 21660 6739 NA ee894f69-ff62-4f60-a5fb-5307fce1de73 #> 1270 20063 5314 NA 8301d82b-0ad1-4988-a978-2925e2ae9377 #> 1271 21814 7084 NA c81ae6df-f87f-4197-b68f-a460321b48b4 #> 1272 15201 1559 NA e1235f1e-26ce-438c-8168-3b1ded4ab893 #> 1273 20880 6011 NA dabb52c0-455b-48fe-996b-abf758120623 #> 1274 20904 6068 NA 25bc08ac-8420-4340-94c6-93993ff87d6f #> 1275 20743 6007 NA ce079a73-5884-4184-909a-8feafd4645d9 #> 1276 15102 1502 NA 0366fd06-19a3-4b69-8448-6bfbfad1250b #> 1277 22441 7466 NA bc43e18a-c2f9-4e49-a90c-41a95cffa736 #> 1278 21970 6955 NA 5fc196a1-2015-49c7-85b2-1adbd2c33cf5 #> 1279 21564 6659 NA 0deb1dc9-0945-470d-8352-220d26d03d7d #> 1280 19626 4718 NA 42b57148-fc06-4aee-b40b-bb941271b5b7 #> 1281 18321 3550 NA 0a4980fc-0ffc-45b4-a2a9-f9d38334618f #> 1282 21928 7053 NA 15a6249f-f4cf-47c2-8251-8a3a802b3db0 #> 1283 18955 4109 NA 8ddd0a30-563c-4fae-a6a8-a19747721924 #> 1284 21573 6674 NA f093ef0b-6f2c-4fb7-8477-71f1eea28ac0 #> 1285 22012 7060 NA 53b64223-ded9-41c1-9d2b-a8c2de8963d0 #> 1286 20457 5476 NA 3fa9a860-a1ee-4355-ab3e-ba81490a4385 #> 1287 19938 5313 NA ca8b966f-3c0b-4219-a28d-0c020c365ff4 #> 1288 20777 6028 NA d48dd5f2-79ea-4821-be32-5c177c674bc3 #> 1289 18910 4064 NA a7f7153a-c574-4f57-a8cb-760aba8eb629 #> 1290 22444 7469 NA cedc5875-2b9f-4fc7-8e86-6895732bafa7 #> 1291 20960 6121 NA 8f07843a-6f68-409e-8cdf-1207f521b12a #> 1292 19035 4189 NA 582dc00e-e7ec-4ca7-bff0-f7b1d604017b #> 1293 16933 2476 NA e5c6b0d4-3e77-422b-a6d8-574a10ed385e #> 1294 20196 5194 NA 9eb60195-a390-4a96-bebd-8a761551c163 #> 1295 14918 1388 NA 14ecf9dd-3a77-4847-8e62-407cd1182f1c #> 1296 22284 7288 NA ca393469-d587-4bf7-905d-838e960de851 #> 1297 22138 7131 NA e7a9186e-5e19-4f70-b45c-527c888e6fc7 #> 1298 20899 5973 NA dc83f7af-7b30-4c4a-9c93-f67bd8db954b #> 1299 20775 5977 NA fc36fcb2-0125-42c4-a8b4-0a2ca9c15ef3 #> 1300 19514 4622 NA a8c96abf-a911-47a0-ac16-dd51a8782b5e #> 1301 21254 6363 NA 019f8019-2a29-4131-b6fb-ea32568c1fc8 #> 1302 21528 6549 NA 967a20b1-e334-4ebb-a1b5-f46111ab7325 #> 1303 22283 7287 NA 32494eca-34f8-4d7f-88ee-e3319128e8e0 #> 1304 18992 4146 NA 046c51bc-319e-4fbb-9cf3-f6ab808b8edf #> 1305 21697 6814 NA 131d3b1a-5746-499e-98ee-4bbf67cd377e #> 1306 19816 4951 NA c2a7bd8a-d141-423a-8810-0988a59ff0b4 #> 1307 16837 2381 NA bd01d907-cd57-48cb-9136-5692a4764a20 #> 1308 19179 4326 NA dcf6b57b-6706-4d73-8242-2f71667be0e7 #> 1309 21730 6857 NA 214ae0bc-d6ed-4216-a154-f253c85bb90b #> 1310 13444 981 NA d03aa6ca-ae90-44cb-954f-507213a73b22 #> 1311 22034 7298 NA 24c28a64-43b0-4855-a9e7-c46c7b30c15d #> 1312 16981 2521 NA a64aaa83-6381-4b2c-84b2-daf2002c9060 #> 1313 18658 3838 NA 9bc107dc-1920-49db-b009-436d1a77955d #> 1314 21594 6695 NA 3565220d-9fa0-497d-9fa1-e3bea7c302e8 #> 1315 16407 2091 NA ba905b34-8412-4553-9055-3460368cc608 #> 1316 22149 7147 NA 04401033-2785-4a87-b19a-312f45a53502 #> 1317 21934 7117 NA 92b059b3-6b1b-4db4-a535-ceba629176d1 #> 1318 20754 6014 NA a76eb878-71ee-418e-a46f-b35f6950aa95 #> 1319 20050 5508 NA bb5e3914-d941-4f05-8c45-bc9c520490ef #> 1320 20204 5493 NA 04f6abef-834f-470e-9c15-8c0cc62fde4e #> 1321 21020 5852 NA 02d1b3c3-f292-4174-89fa-9ecc6286adb0 #> 1322 20965 6145 NA 73ec5a10-dd68-448e-938f-25021cbc3004 #> 1323 16303 2022 NA d1e46e40-5e8c-4b5a-ae03-5d0093b98633 #> 1324 21919 7304 NA 79d98440-d152-49be-8259-ecec2a3afaa9 #> 1325 15228 1578 NA b200f413-296d-49f3-9ef2-f60e21c2f5fd #> 1326 21225 6321 NA 70ce9a98-8dbf-4e16-a20d-f3cfb76e70d7 #> 1327 18919 4073 NA aaff3798-2b50-47a1-b629-5771454a45d7 #> 1328 16824 2368 NA 490c15eb-accc-4441-be7d-c7114e1e42fc #> 1329 20189 5218 NA 3180d257-5f46-4a25-b50a-3311235bc8b3 #> 1330 18960 4114 NA cb43fb1e-9c65-4462-8c05-798d5885b845 #> 1331 22095 6958 NA 9e9d2934-a273-4e39-a413-d991d083297b #> 1332 22185 7183 NA 17206178-c048-47ed-9f79-9f4c5efd607b #> 1333 20934 6177 NA 757c55e1-2f3a-41d2-a211-16bf577a1586 #> 1334 22452 7477 NA 6e8d8647-209a-4985-a346-70197e587f10 #> 1335 22295 7301 NA 632a8382-27d6-45ae-b3d2-a37157e09ab7 #> 1336 18331 3558 NA ef7b5ce8-a929-46be-b9f3-328752c6d125 #> 1337 16215 1961 NA 61536454-3173-4ff2-b76f-f0bdf9e59fb8 #> 1338 13848 1058 NA 45fe5280-b366-4c8a-8f2e-99fa5a4ff631 #> 1339 13073 890 NA 65006631-45b1-4920-b0a3-f00277119f1e #> 1340 16293 2014 NA 1d334dc2-7fa8-4d4b-8359-b4bfd50b758e #> 1341 15374 1639 NA cb3b5df2-231e-4040-867e-5b6020457be8 #> 1342 21129 6292 NA 806f81d1-6d4b-465c-8a16-b1a767c30fb0 #> 1343 19073 4227 NA 4ceb866c-8eaf-49b5-9043-56228e43a2e5 #> 1344 19905 5033 NA aafe4b32-1a8f-4691-9702-3141c14ff5c8 #> 1345 21984 7023 NA 9b2d5497-738b-47bc-bd96-2c550b4649ee #> 1346 16888 2432 NA 96c822e6-5484-476b-8ab0-64b3cff791ef #> 1347 16364 2062 NA 919cdf12-3811-49d1-a7a5-65ff29a59434 #> 1348 20498 5576 NA 46689e7b-4a03-463b-9978-1496ab89313e #> 1349 20096 5149 NA ff984603-4e6f-4095-a0c7-11dbf89cb189 #> 1350 21379 6551 NA fa443b6d-6d31-4030-9afa-b223f08b03d7 #> 1351 22296 7302 NA 877c9dd4-a60d-4b8a-865c-ab46fb2efefc #> 1352 15917 1785 NA 996a0607-8046-46c2-97a0-b94ff9f5a1c8 #> 1353 16486 2143 NA 8b9bc551-66bb-4948-849f-c0471caaeb19 #> 1354 19880 5035 NA a1182eb3-26cb-4d34-b29a-df673973f08b #> 1355 8243 330 NA cdf8908a-7092-4054-a49c-a9884211aaa1 #> 1356 22300 7307 NA edfc712a-54f7-4c34-a838-c50c14dbf7dc #> 1357 18890 4046 NA 11cad59d-90dd-449c-a839-dddaba4fe16c #> 1358 5834 233 NA 76d7615e-8eb5-4761-b6a6-1e895d01baf3 #> 1359 2405 89 NA f55053e4-4bfd-495d-981a-d62e3662f01b #> 1360 21612 6730 NA c14f8faa-62db-4fb2-a7b1-d9b5998ce604 #> 1361 16031 1833 NA 90908a56-901b-466d-8689-943075da96fe #> 1362 13418 973 NA e033ce15-9fc5-430b-90e2-90dfe52b21c1 #> 1363 20964 6178 NA a1a73c32-c409-4ee0-8a7b-0ae589db85c8 #> 1364 19109 4263 NA 13ade86a-20c7-48fe-9d18-b3bfc135f5e9 #> 1365 20500 5549 NA c2a19a09-74a2-4ace-8cc3-6dfb65070a70 #> 1366 14967 1408 NA 7735c02a-ee75-447c-86e6-6c2168500050 #> 1367 21769 6820 NA 8aa01565-4481-443a-9951-642c98ded113 #> 1368 19939 5329 NA 046b6d1f-cc56-486c-8d45-45b3a150b141 #> 1369 15226 1576 NA 8c8b7d6e-6ed8-4a10-8ae9-b50300bd766b #> 1370 15647 1722 NA 776e4a24-08d7-46f4-a713-d384cd567f21 #> 1371 19596 4693 NA 725011ba-b505-4658-a2b1-5d41f941223e #> 1372 15046 1464 NA 10bc7a15-0e66-4cdc-bec3-5a60b0b39159 #> 1373 22018 6883 NA a829e280-38b4-41fc-a46e-a5c8034dafd2 #> 1374 21998 7297 NA ed37f30a-de45-4af6-b7b5-5f218bf786ab #> 1375 19877 5034 NA aa5741d8-cafa-4bac-bf36-85f92a7e995c #> 1376 13905 1083 NA 8cf11162-ffe7-44ad-b5d6-8eef717b5ac2 #> 1377 22020 6859 NA 7df12cd9-5890-4a9d-b78d-0987de2cd804 #> 1378 20332 5277 NA cad43704-4231-4a72-b616-c66642103452 #> 1379 19410 4531 NA 52735659-a294-4f64-a7f4-3591450834e5 #> 1380 15048 1466 NA c3859e06-5f23-4302-a71b-04820a899d5f #> 1381 19559 4660 NA 5cc0007b-4561-4ff2-8fa7-242bec47dc5a #> 1382 19494 4605 NA fd25a007-dedb-42db-a31e-55dcd5e17967 #> 1383 20563 5465 NA cafbcd5f-8b40-444e-baec-a48f49d8c5f0 #> 1384 18047 3286 NA 46b16198-116f-4913-85db-2bc21462bd66 #> 1385 22235 7234 NA 7c9e5221-50be-4c58-89f9-aa61cf67ed25 #> 1386 18058 3297 NA b4e5a9af-6d00-4d51-9bb9-c7d5f69898df #> 1387 16003 1817 NA 7d80b51f-1462-442e-aa7f-8c320a62deed #> 1388 18974 4128 NA 35c970b1-cd2c-42b8-bcb6-e0b8dbe39423 #> 1389 21383 6665 NA a01ffd42-5fdb-42f8-95ab-157025e3fba8 #> 1390 19917 5310 NA 71d9c2a0-81ee-4788-86bb-7ae326396e73 #> 1391 20788 5917 NA fe6dc768-d576-476c-b150-53b85af2a1d1 #> 1392 19358 4489 NA 5727f7d5-35a6-4ad9-a96a-8408f8a84bd3 #> 1393 20150 5199 NA 9e55ec9a-ce18-4b4b-b69f-e2d82c219846 #> 1394 18082 3321 NA 01d8aee3-e1c4-4988-970a-8c0c2d08bd83 #> 1395 19361 4491 NA 11b9bcde-b2c8-412b-9689-4420182ca928 #> 1396 18164 3403 NA eb6c7e5d-987f-480d-9618-43f56e0b565f #> 1397 19941 5304 NA ad9a0044-67f0-4303-ab38-a8459e32a9cb #> 1398 17294 2826 NA 5b9acfe7-f166-4a55-85f6-a654799b08dd #> 1399 20861 5914 NA 57bda6af-7324-4e96-a207-525501224c41 #> 1400 18577 3765 NA da918fe0-eb5d-42c7-b952-2f5da5197c20 #> 1401 17919 3160 NA ca53fda9-d20a-4bc7-b8dc-deef28355399 #> 1402 20570 5526 NA a40a9b55-7850-4572-8197-f57a5354f921 #> 1403 22335 7347 NA d014789f-6cc0-435b-bd18-9faaf12ffd6e #> 1404 18979 4133 NA 8c824157-eb33-4378-bf19-6c738a186ceb #> 1405 21131 6301 NA 4d383922-53ab-48f8-bb8a-29176ea3ffbc #> 1406 21937 6968 NA c72cb618-fb6b-4327-8ced-91088c936c81 #> 1407 21935 7046 NA 4c577f09-a082-43f8-b249-c821350302dc #> 1408 22337 7349 NA 22666f2a-8d3f-45ed-9cc6-3349f838291d #> 1409 18963 4117 NA 7d1d8954-3836-4bbc-9d70-cd85e57c7c69 #> 1410 18555 3743 NA ed54f1f3-65b8-4b54-8a64-81858ca9f50f #> 1411 22332 7344 NA d92a275a-a102-4768-965b-60fffe155288 #> 1412 14397 1197 NA 30119d63-584c-4fd6-95aa-67b7af4998f5 #> 1413 22329 7341 NA cddaa0c5-2d55-47cf-93aa-cfa344604710 #> 1414 16618 2227 NA 8bb5c7ef-e7be-4015-8874-2f0982286acc #> 1415 17979 3218 NA 3f44e069-a9c7-40dc-bfa9-cd403ee9cdbd #> 1416 22330 7342 NA 073d1bf8-7a0e-4c2f-b890-dbbd47978737 #> 1417 21298 6390 NA 7e4f9b27-edc4-4f5c-b77a-81604220a454 #> 1418 19984 5072 NA 5fb654f3-cc56-42ab-842a-5eb8c3cf8999 #> 1419 20527 5429 NA ff826814-d167-4337-a9a5-9d0ac09ccd6e #> 1420 19895 5014 NA d24f72af-88e3-46d0-b132-1fe77e5c893b #> 1421 20747 5904 NA b7a0f6d0-af4f-4134-8382-c59c4283576e #> 1422 19851 4989 NA 9290324b-eb17-423b-8019-e5d26839fd45 #> 1423 20533 5454 NA 9e885643-3f46-49f4-94e9-714a3b1f586b #> 1424 14740 1287 NA 5514afb6-bd43-49a8-9bf7-b8baaaecdabe #> 1425 22123 7095 NA 7f97446b-4e10-4b1d-b68c-9b1bc7f1c85f #> 1426 20769 6083 NA 2b90e091-ef78-4753-93eb-0acf3632c206 #> 1427 19926 5300 NA 13a9ad48-6886-4390-b2d8-9c79cda111d1 #> 1428 21709 6764 NA 34de33c5-fc2c-4818-aa03-294e28cbcfa8 #> 1429 21332 6353 NA d0412c6f-ac97-420c-a9e2-1ca587c480b2 #> 1430 19987 5075 NA eacc232b-701d-4a67-9ce5-61b9b931fd42 #> 1431 17935 3174 NA 13c4b449-65e4-4a3e-9152-85e9cbb2b8c6 #> 1432 19986 5074 NA c16fcef9-ecdb-4696-9c92-5d5b959aafeb #> 1433 20068 5307 NA a4ce9a04-668a-4120-938b-3f05983cc0f3 #> 1434 20808 6076 NA 210bfe87-1c9c-48c3-951c-81aef4b2c763 #> 1435 19016 4170 NA 1d05c82f-81cd-4fad-84f5-8be990c5258d #> 1436 22334 7346 NA 49abd11f-fe2b-4d15-99ed-f316d2ec67e1 #> 1437 21903 6837 NA a0ebc174-02ad-4bf4-8c0f-517d04a29a95 #> 1438 20911 5851 NA 9c34c6d3-29c9-4f89-b2b7-e01f0fef0f4a #> 1439 20030 5306 NA 7874842b-9b5f-4307-81cd-37f48e981e9f #> 1440 22013 7263 NA 3b676675-0ed6-4892-bd6e-e03cd92596f2 #> 1441 19116 4270 NA d3b0e29f-d97c-4fc4-ae29-c5266686e39d #> 1442 13388 965 NA 3128aa52-4c62-4096-bf31-bef0fe8d6abc #> 1443 20764 5981 NA 724c3e97-bd2a-4d48-850e-352829e51708 #> 1444 19985 5073 NA 21c60b9f-98f3-4b6f-8911-89aba2622347 #> 1445 22292 7296 NA 61980614-1609-4b68-b11f-05aa30fefb89 #> 1446 14409 1202 NA 380435a9-1833-4381-a12b-498a43732798 #> 1447 20703 5806 NA 2ab1b694-1013-4661-85d4-55415d3b147f #> 1448 21562 6595 NA a577ef90-17c3-4dbf-b6b8-e054f21a778d #> 1449 16245 1979 NA 6723249c-5fb5-4b0a-9373-cb59cdc99ec8 #> 1450 21819 7335 NA da837572-0558-4946-9af4-aeb11582cca8 #> 1451 17922 3163 NA aba8f925-ffbf-4654-bfa7-a25d3d237494 #> 1452 21688 6938 NA 74980532-8158-4b56-91db-5053878737b4 #> 1453 21855 6988 NA 748d5fdf-8a06-4cc1-a8b1-257f4377236a #> 1454 21839 7088 NA 70110b01-060d-443d-b799-5d4edc9272de #> 1455 20798 5916 NA 380c4d9b-d4c8-456c-ba50-25519edde899 #> 1456 17053 2588 NA 0e7e6cbb-0e88-4a74-b457-1753851e37f3 #> 1457 20919 5882 NA 1cccc54a-c168-4359-bfbc-30556db0ca73 #> 1458 21588 6687 NA e22127ac-1bc7-4f68-bc34-6e20f82a4c24 #> 1459 21922 7036 NA b222de39-0a5e-4bbe-b239-083a500194bb #> 1460 16818 2362 NA ec810fdb-ae6f-49ad-9538-31d1e6dfa578 #> 1461 21330 6426 NA 8ef99bbe-602c-4796-aa04-833f357991ba #> 1462 21983 6944 NA 14ab97c3-4ace-4bb6-99de-3b22dcf610fe #> 1463 5099 202 NA f1ce3e7d-6afc-4db4-94f0-475bd63507b3 #> 1464 20752 5948 NA 65b9a754-40b9-446b-b9c0-b2dee46ba3f6 #> 1465 18935 4089 NA ebeceb00-57e0-4b74-9cf7-853da2afed18 #> 1466 21678 6926 NA 39cb1520-dda8-4167-95c4-4947c8383bc4 #> 1467 18032 3271 NA 0df7912d-9e81-47ea-b4f7-d04986df4ee8 #> 1468 21032 6081 NA b5e95ece-3b71-439b-b7b4-ae102f9e7c08 #> 1469 19165 4314 NA 6414998b-5831-44aa-8bd8-39e42a323c2c #> 1470 14871 1352 NA 618bedee-9259-4536-b0ff-fec98d2a20de #> 1471 21739 6853 NA 8e1285f7-6e4c-41e4-aac9-92e09f9f32b2 #> 1472 21725 7009 NA 9a2cd41e-a6e8-42d6-aad4-65c42939d733 #> 1473 22327 7339 NA ccf4746d-903a-4d51-8874-30953a304a84 #> 1474 18882 4039 NA 2806e915-c46f-492f-8a29-71d3a85e5620 #> 1475 19017 4171 NA 682eda79-0026-4ad8-8f45-a61ce42cb908 #> 1476 21295 6387 NA bbc981ff-556b-4346-abea-f6efc0f94001 #> 1477 13698 1023 NA 041c36ad-0d7d-4ed1-8157-95092b3027a4 #> 1478 18087 3326 NA 3e061410-a4e0-4e16-8043-2f63842410a6 #> 1479 20721 5827 NA 68b3f7e5-cc33-41e1-833c-8f48cb70bf72 #> 1480 20434 5416 NA e11ce848-c797-460b-bb46-6b9ceae48542 #> 1481 19560 4661 NA 86099301-67d0-4370-8e42-d14f34bbbb91 #> 1482 14285 1175 NA a278c39e-7d4d-48c2-8145-2f8ad882ebeb #> 1483 13018 869 NA de185684-3a02-4e63-b2b1-405e562b3a77 #> 1484 20733 5881 NA 279be739-bfd5-47aa-8302-fc58bcba37d5 #> 1485 15306 1620 NA e005ee7b-3fb4-4219-8de3-a9b0302cb2dc #> 1486 22323 7331 NA ffe9639a-7ce2-436a-a291-868e66e9dab8 #> 1487 22325 7333 NA 323db6a2-c9bd-4598-920b-480c102902d3 #> 1488 19837 4971 NA 01c52412-7257-4213-b8b3-effa7c5dd5c7 #> 1489 22316 7324 NA ba760d2d-a35a-4f9c-912d-05217aff53ab #> 1490 17915 3156 NA 1ce88c74-024e-4288-94ee-5dca10362153 #> 1491 14128 1141 NA 2cae991f-878e-434e-9f76-fad263fad23c #> 1492 19117 4271 NA f89332c7-decb-438a-bf7c-220d6c28e098 #> 1493 22317 7325 NA bab100c6-1a6c-4411-9286-f719244f5d35 #> 1494 19859 5061 NA 40941261-cfd0-4e8d-b895-21fb7e20b407 #> 1495 20967 6129 NA 9da6119d-b135-4b90-9f9d-7d08ab00b15d #> 1496 22319 7327 NA 39fd7f0b-4be2-4fe4-b228-65c9e5442552 #> 1497 19881 5063 NA c82a3f67-90b7-4cc8-ac3b-e6cf469cc541 #> 1498 21130 6300 NA 6ee96e28-60b0-4e30-b014-6962e7d1c3db #> 1499 18968 4122 NA 92c2dfb2-6929-4192-94cb-9ae6845dd2f6 #> 1500 19983 5104 NA b04382c6-7138-4dd4-8ad8-3e10ce8403aa #> 1501 22315 7323 NA 2154a63e-279e-42bc-b6f9-5a849cc02cfc #> 1502 16433 2109 NA a2e26ea7-db98-4611-8947-692b0cedb541 #> 1503 16563 2194 NA 96341b4d-152a-4020-b68a-3ff93e1baba5 #> 1504 18940 4094 NA 0b699477-6801-4154-ad51-e8352a3bdac4 #> 1505 20499 5577 NA 65bfa813-7bcb-461e-8716-7072e4705ad1 #> 1506 20144 5230 NA 375b0d7f-8d03-4111-8c1b-62907f0326a1 #> 1507 20968 6141 NA d468dfe5-8ad2-4c8b-b7ba-0962316a2156 #> 1508 19872 5016 NA c3e579cc-6693-47c4-91a9-b688935ae048 #> 1509 19940 5348 NA c6303f3b-9c18-4afe-b0bf-d8270ca9db21 #> 1510 21985 6811 NA 79bf0ca5-a8db-4c39-a40b-67674ccb60d0 #> 1511 18015 3254 NA c44b31cd-0480-4aa0-b500-12e9ba0765ac #> 1512 16809 2353 NA 9fc6e49f-c863-419d-9dca-8f0da3f3c9c7 #> 1513 22321 7329 NA ae372a9d-6f85-4e37-a910-47fd77483ebc #> 1514 20750 5978 NA c5e24b59-cafa-4174-b5dc-e02f5934fb2d #> 1515 19441 4558 NA 1d1d59bc-ed91-4ed6-adf3-f40d0e296554 #> 1516 21102 6204 NA 3a212660-0028-47dd-8ef2-362edd1ea2b2 #> 1517 11302 579 NA 6c48b2a7-924e-43ec-bcd9-f1cda06b2332 #> 1518 14851 1334 NA fc28047a-18cf-4431-9e1b-317db75c4495 #> 1519 22318 7326 NA e735b2ad-8c89-450b-8241-3f602016b897 #> 1520 18151 3390 NA d57ef862-8cb9-4f27-a294-f86eb26b6cce #> 1521 17118 2650 NA 2b129eab-b967-4d0d-bc6e-28c0781bcdd3 #> 1522 12831 827 NA 7f3ef024-eb34-46af-8b9e-544cdf09378f #> 1523 20953 6185 NA af291d43-a51f-44ce-b8ac-430ec68c78c8 #> 1524 21681 6797 NA f0a8f8e3-b9e9-46ed-85e4-eec6452a8a44 #> 1525 21776 7045 NA 62542e04-3c44-4b75-8165-be674c8be75f #> 1526 19562 4663 NA e5b8c439-a48a-4f83-b63b-1a4d30e04cd3 #> 1527 21826 7316 NA 06f3e98d-7d73-4007-b673-4a74ed72bda3 #> 1528 18764 3934 NA 5a9401fc-e43e-43e8-9e63-dadecb12491b #> 1529 19824 4994 NA c6728282-0648-4926-a07c-be64f3ff5e0d #> 1530 22310 7318 NA 538cf938-8f65-435f-b8fd-2856ce5c4e6d #> 1531 20064 5131 NA e6c3f896-0223-4fc2-be09-c959ea4a475c #> 1532 21939 7069 NA f3a7ab39-ead2-4dbf-b760-d652b8a26853 #> 1533 15981 1806 NA 2d28c7f5-21e8-40cb-afb4-a8391a5923e7 #> 1534 19026 4180 NA 18f174c9-a956-4c14-bd23-9e799fef6dc7 #> 1535 19118 4272 NA ec7404cc-ff2c-4afb-aebc-3cde1322d5de #> 1536 21110 6213 NA 42931961-6deb-4e33-bbe9-bf8f77d29da0 #> 1537 19486 4598 NA 3d169c3f-93fe-44b5-8495-681241f285bb #> 1538 11385 596 NA 2f80e90d-dbff-4395-81c9-4e61c247d0f1 #> 1539 21162 6458 NA 850b8283-0a1d-4a47-8586-8398df905c58 #> 1540 17975 3214 NA 705899da-3c20-4bc3-b5d0-2e6e40655131 #> 1541 20905 6074 NA 4f246e92-3d21-450f-977a-dc16892c7238 #> 1542 13016 868 NA 6ef43c53-53d7-4b0f-ad99-17664d663ae8 #> 1543 21158 6233 NA 21a33144-63ee-4125-ac44-3fc911a39d50 #> 1544 18262 3496 NA 5cb0bf9c-03b4-4201-97c5-a59c6db50841 #> 1545 22433 7455 NA e4edfc2e-c6f7-42fc-b8b1-8e5282457000 #> 1546 20838 6063 NA 064c4eda-1b10-40ac-a9d2-66caf76a213a #> 1547 21178 6247 NA 8346e196-ce56-4cfd-8438-f3c39131b327 #> 1548 15076 1479 NA 5f424505-f29f-433c-b3f2-1a143a04a010 #> 1549 21758 6866 NA a42da2a1-42c0-4d45-85f0-ab5c9af37e6f #> 1550 22311 7319 NA 2b0e3931-07d2-4b03-9b28-489258465ac2 #> 1551 21718 6913 NA 4c449f2b-a566-4c9c-882c-a70991d1aa54 #> 1552 21448 6421 NA ae9495b2-4c62-4e14-8e43-beb53e1ae28a #> 1553 18914 4068 NA 12f27311-7cd6-4ca5-ba7d-571e9de5e1eb #> 1554 19328 4462 NA 03611d74-221a-4436-913f-d23f95542598 #> 1555 13037 879 NA 1f0d9995-7ace-44ab-8d61-2f3924d5b75d #> 1556 20825 6004 NA 20a45a8e-a917-439d-ba28-33b84ab2401e #> 1557 21239 6333 NA e94ac14d-0122-4dc8-ad20-b71226cb8cfe #> 1558 22089 6896 NA 23525664-b547-413b-9221-b09091b90edf #> 1559 16625 2230 NA 99d9eebd-808f-4573-b39b-b9fef4ce5e98 #> 1560 18095 3334 NA 89f84d50-39b0-4a76-a004-d18b1c255413 #> 1561 18007 3246 NA cbce4c7c-b22f-48de-b653-cdc19f9a6320 #> 1562 22045 6840 NA fe85708b-4644-4f77-ba2b-5726ff83439a #> 1563 19284 4424 NA 3390c94a-f1f2-4be0-9787-5cc9fd8c64f7 #> 1564 20887 5853 NA c5e92aff-ce1e-4ce0-b838-6149f8ce875f #> 1565 20833 5951 NA 079575a5-029c-4960-bd45-66cd63f659fb #> 1566 16457 2122 NA 7ec05721-dba9-4e27-8cf0-92d626754624 #> 1567 22413 7434 NA 5a90f110-9291-4688-84d5-2730898ba0bb #> 1568 22303 7311 NA 3f95afdc-2140-424b-8250-7d4e273c2efc #> 1569 20642 5736 NA c281fdc7-76a9-4734-a13d-19ad354c67db #> 1570 17899 3144 NA 3cd103cf-cc2e-458e-94bc-a7a7ce1632c0 #> 1571 17995 3234 NA ed2317f2-1cc5-4a84-a46e-7423a9a1c730 #> 1572 19492 4603 NA 27488f5f-e895-499b-9e33-fddd3d5d603c #> 1573 17747 3040 NA 9061a751-bfd4-41f5-a585-9f3b20708b94 #> 1574 18915 4069 NA dcc7a0e1-05e3-407f-84e1-fdedf8eecbbf #> 1575 16265 1994 NA df08d4a5-2979-469d-9775-ed34fc3f43ee #> 1576 20757 5842 NA 108759bf-8c78-41c6-a409-b87c63985c21 #> 1577 19896 5067 NA acc85868-4848-4de3-8e6f-5427e93c8d80 #> 1578 21015 5991 NA 3ae55cda-ad32-46c5-bde7-470755f37f3a #> 1579 21128 6272 NA 461b76db-dbf6-44c1-8cfa-a3c3edb100fd #> 1580 15137 1526 NA 3258dbca-9194-4fd7-bc2b-8440c73d0d9c #> 1581 19921 5002 NA 81b159d5-86ac-4130-a87d-dbd5e0b211b3 #> 1582 15090 1492 NA 9d53adf2-4c3f-48a4-b7f8-6bb7f207c1f8 #> 1583 20346 5470 NA 0cd46b5f-5397-4947-9331-8d3420af7852 #> 1584 17997 3236 NA 54f13aa1-4a2f-46a3-99ef-743c1d3ee234 #> 1585 20819 6109 NA 7ade135c-0760-4548-b7d9-cf1174e2be33 #> 1586 17014 2554 NA 9294afec-7804-41ba-b948-51a213705abb #> 1587 16320 2034 NA 1a1830c2-9717-4af0-82f0-7d7b254764f1 #> 1588 11664 647 NA 58b30f9c-384f-4e36-9e79-d4442ce8bb31 #> 1589 21012 6110 NA c34c65c7-541a-4f33-8473-beb11e3b43ad #> 1590 22031 6875 NA 55fe8587-9190-4ad9-8517-fcb330341ed3 #> 1591 22307 7314 NA 2bd96d27-08b2-42b3-ad89-b01442c07fe2 #> 1592 19989 5095 NA 7bb70550-c28a-4e47-9a13-cc0c0fef8b38 #> 1593 16769 2313 NA d1d46ded-4585-4760-81b4-62b80d31a3b0 #> 1594 19310 4449 NA 7c1a8ecd-e3e5-4123-b89f-36e58b99126f #> 1595 18035 3274 NA 6e16ec27-2cd9-49b6-848a-df17d654683d #> 1596 21932 6990 NA b9f364a0-5553-4475-8388-6dfd1d7a2e62 #> 1597 18936 4090 NA 8aad56a2-0589-4ebc-99f8-b07c5023fd70 #> 1598 18559 3747 NA 385953af-6b16-42b8-9a58-23fd8d50d935 #> 1599 14167 1148 NA cdbaf089-9c7e-418f-829e-d903c28b2628 #> 1600 19051 4205 NA d8f5b9b5-4cbf-4817-969f-99e638313383 #> 1601 19567 4668 NA 4ca6d7fd-43f7-4c0d-8992-aa28d91710e6 #> 1602 20249 5461 NA 378df3b9-0a5c-4d68-a173-79bc0df07a66 #> 1603 20469 5393 NA 8b6a4108-ccfa-4af4-a37e-c617d5793de7 #> 1604 21516 6555 NA 36f93677-a95b-4362-ac5f-6722f5c05b6d #> 1605 16311 2028 NA 9f026fc0-4449-4dc5-a226-2e2830619381 #> 1606 19475 4588 NA e23505d9-b677-4a86-ba17-564c165a6e66 #> 1607 19029 4183 NA 4e4ba1f9-35c6-4e41-85f5-d8f12d32f459 #> 1608 16763 2307 NA 7c16c04c-04de-41f3-ac16-ad6a9435e3f7 #> 1609 17970 3209 NA cd705357-f282-4cbf-8f11-391618d981c3 #> 1610 20824 5850 NA 61694ab9-b099-408e-b48d-6a643dd069ec #> 1611 18690 3868 NA c78c299b-7c73-40fc-9155-2ede7f9849c7 #> 1612 15126 1517 NA 62d4e94c-443f-44ed-9404-c6d6bdd9aa64 #> 1613 15576 1700 NA 30a193de-13a3-4e22-a1a5-ce240f498280 #> 1614 19869 5050 NA a494c7f4-3d8a-4a2c-ae0c-95dd6855f719 #> 1615 20731 5860 NA 26b6ac3e-facf-48eb-ae5b-afd30b2544b2 #> 1616 19888 5065 NA 47e64968-acea-454d-a95f-107a90960aab #> 1617 22471 7497 NA eac6612e-0eab-4a65-9057-60fc95d9ca3a #> 1618 17003 2543 NA 173831a7-d33d-4d2a-8dd9-4e36182e23cc #> 1619 20137 5202 NA c0561c0e-ca00-48bf-a38b-2636451c1640 #> 1620 19840 4986 NA e4085e9f-ab3b-4dd6-9cb0-bf6f2bd428fd #> 1621 11289 578 NA f28f45f8-a617-4caa-8332-ccfff0dddc07 #> 1622 21719 7308 NA bd30c0ca-196e-4f7d-b37d-d4d52dd40b62 #> 1623 16954 2495 NA c257b2e6-dfc9-45c8-b30c-a497f2ce82a2 #> 1624 16964 2505 NA 14c97c9f-26e8-4944-9299-f90de6aeada3 #> 1625 722 23 NA e38c9b1b-7c51-48a2-ac1d-a752502e8930 #> 1626 15640 1718 NA d3fab07b-f02a-433d-9612-cb0a751f324d #> 1627 20884 5985 NA 9c3a67fd-5c6e-4689-9e08-9ff6d4db6c9a #> 1628 20388 5295 NA 191847bd-6b12-4824-a832-29cddfffb046 #> 1629 19131 4285 NA d0879c68-6387-4edc-b55b-07e128546ae7 #> 1630 21694 6789 NA 8a453858-7309-49ae-b8eb-de691847393f #> 1631 20079 5139 NA 35341f6c-bca9-427b-a8eb-f9a24a334184 #> 1632 17048 2583 NA a6fe5f18-d78d-4a56-aea2-ef4bed7e647a #> 1633 18926 4080 NA a28f7368-0306-4d20-855f-285a1a09c09c #> 1634 18257 3492 NA 577c7e9d-e647-4c22-9371-e51d282f5cfd #> 1635 20924 5955 NA 34c523c7-bc58-49f0-a9cc-f9edd91fe00f #> 1636 19811 4942 NA b2a9b0d4-b5dd-4d6c-9ad3-8491502edb51 #> 1637 21736 6870 NA 5abee27b-2710-46ed-b110-fece5c2654e8 #> 1638 16781 2325 NA cfb0ff68-51cb-4dad-ba81-f9e019a93a91 #> 1639 21072 6032 NA fcae1e29-5ca2-463e-92a6-0be893f5eb4a #> 1640 19377 4505 NA abedbff7-21c5-415b-b890-259b5bebf400 #> 1641 21271 6456 NA efe7d321-9ce8-4a43-9c00-999eda83d73a #> 1642 21065 5898 NA 6d96bf47-e8c7-4683-8291-74dc426a38cb #> 1643 18137 3376 NA 7830196e-cdca-4b86-bee2-eae97de2ee26 #> 1644 19557 4658 NA 8d56094a-7aaa-45fd-bfb1-348f2a994d99 #> 1645 16788 2332 NA 64b1bda8-8c0d-4c17-b8a9-6b5ef292c924 #> 1646 17008 2548 NA 76392d70-bbcb-429c-82df-853b72a926de #> 1647 22072 6817 NA b4b346b6-6175-407c-a6cd-103368a1609f #> 1648 21192 6258 NA 03e6a751-5206-4f9e-8ffa-f92672f7c159 #> 1649 17976 3215 NA e6bcb4f1-c2c8-4dd9-b826-af01182875f2 #> 1650 16905 2448 NA 7f32c3e6-113f-4922-b51d-a1a5a1d43bcf #> 1651 21927 6911 NA f0c60c6e-513b-40df-9794-d555ed59202f #> 1652 21917 6929 NA 73b6e69a-516b-4b95-9edd-0a8959500956 #> 1653 18128 3367 NA a6493c08-f70e-4aef-ab07-914625b9c047 #> 1654 22064 6974 NA f1eaad31-8784-4db3-b52d-ea0fe22761dd #> 1655 20665 5759 NA f8f7c003-1c6d-4715-bef7-5238bdb600dd #> 1656 22362 7374 NA 6750320a-1b60-4bf5-aad6-7c605a88d5c6 #> 1657 20051 5297 NA c85c0efc-3391-4a8e-b8a4-370b32fd09ce #> 1658 21878 6861 NA 67d2e7dd-e937-49d5-bf37-0efed947609f #> 1659 22344 7356 NA 160934d8-6fac-4a5f-8121-d8bca301d1b4 #> 1660 20983 6120 NA 6c640668-de81-49c4-a0da-e367e1747923 #> 1661 17958 3197 NA 2300fe3b-c81f-4786-ae0c-0c229644239d #> 1662 21892 6830 NA 14766908-6ec1-461b-b6fa-e874287a6517 #> 1663 20854 5945 NA c03646a8-503b-49a9-8251-b9c44f13a2ff #> 1664 21098 6197 NA 890deaca-e542-4565-95f7-b0bacc9c46ba #> 1665 21868 6999 NA e9746156-842c-475e-806d-4bcb26032e3b #> 1666 21412 6534 NA f24fb71b-8799-48d8-aa5c-510a40cfaeed #> 1667 21132 6298 NA ee3d7a82-d3e0-4d12-b2f8-116aefdb7cb6 #> 1668 19240 4383 NA 478f29fe-7f2e-48a0-b086-b8c509621689 #> 1669 16770 2314 NA dfdbe925-912e-4eca-9a71-e38cd3c88479 #> 1670 22037 6971 NA 1fcb4a37-ca9d-44ef-8f2e-7d4be04c32ea #> 1671 20033 5119 NA 5ffb654f-0de5-424b-aa2f-ad511deb5b51 #> 1672 20971 6183 NA 7b47d190-168b-44bc-bb91-a688fe28f768 #> 1673 17943 3182 NA 89919ab7-0fa2-4fbc-b018-5f2d3e3c21e3 #> 1674 18991 4145 NA 28b0d2fd-18d0-442e-a9ec-70b2f8065ff2 #> 1675 18124 3363 NA bcbbd7af-5a61-41f2-bae6-1e034755e7ef #> 1676 19538 4643 NA d3ba3eca-c71d-449b-b5f1-7397a9cab3f1 #> 1677 16467 2130 NA 0ad845ff-44e8-4576-bc91-61b557e06f05 #> 1678 20724 5830 NA 3b4c4797-d35d-4885-93a3-06d85242b522 #> 1679 22463 7489 NA f21aecce-d8e5-4a11-9ade-9307e55952a2 #> 1680 19882 5056 NA 53e7c80e-8bf9-4ab2-ab3e-80cb556ea784 #> 1681 18130 3369 NA f6d7cf0f-72d2-473f-a44b-4a253587ca0f #> 1682 19208 4352 NA 93d10760-436e-4638-b506-a5c655ed5365 #> 1683 22472 7498 NA 1f3d0803-dad7-42dd-b149-da0c65f5a87e #> 1684 21988 7043 NA 1b3524b6-bc24-4d9a-947f-ebda67be1c41 #> 1685 22062 6831 NA 9666a6bd-4321-4acd-823e-b872943a436e #> 1686 19053 4207 NA 6e6dcc9c-06f5-40fd-9134-d0afd0e349d8 #> 1687 19249 4390 NA 9164fac3-2540-4f64-ba29-96fb0ce1c7eb #> 1688 18108 3347 NA bfd0c6e3-dc98-4280-bd6a-f82902c0f46b #> 1689 21677 6768 NA 26ad9c27-de38-495e-913c-6fb2428e76d3 #> 1690 22160 7159 NA 7debccec-8ec2-443a-b4a7-a52f14464883 #> 1691 8283 333 NA 0742d2ea-1cf2-49a6-a150-77ba6e034d8c #> 1692 21211 6311 NA 5c424ecf-07c8-471e-a400-8d5f834af2e0 #> 1693 21843 6918 NA 0dbbd211-0372-4751-9751-e4df4ab1f8eb #> 1694 19319 4455 NA 6249d2c0-75dc-4586-943b-1c103a9eb419 #> 1695 20768 5980 NA cad49098-1523-4e52-9f50-caa3423e1bb6 #> 1696 21962 7109 NA 73236a66-ba10-44a6-b12f-2ca13cad33b4 #> 1697 18061 3300 NA c7b7d27f-97c3-4c12-95c4-36205175c959 #> 1698 20935 6167 NA 38abfa4e-ad62-4392-89a0-ac2a012efd87 #> 1699 21743 6909 NA bd783f2e-b931-4d3e-ab71-60fa1431f598 #> 1700 18161 3400 NA 94001c44-9eea-4d2b-a766-079ddcb2e8b0 #> 1701 16808 2352 NA 30b045f1-b8e4-4ae9-b062-5181847b508c #> 1702 21943 7041 NA c7ebe543-7fec-4123-bc6e-b0d509af22a2 #> 1703 22462 7488 NA 3d861092-3d64-4663-bf91-aa1f15e4e3a6 #> 1704 19011 4165 NA 473a6858-7c99-4521-982b-fcbaacc00b74 #> 1705 21949 6821 NA 412be3f1-210a-44b9-828c-d35cc6a1119c #> 1706 17566 3017 NA d4b7a6b6-9ad3-4bc9-b781-dc09e9a5ba01 #> 1707 19943 5008 NA 7e42a22a-c47b-4387-aeeb-2cc2e76dc1d8 #> 1708 18931 4085 NA 87171077-4c1c-4b67-b159-2cc6242988e0 #> 1709 21531 6529 NA 002adaa8-5dc2-4b4b-95bc-53a38dce3849 #> 1710 19853 4993 NA 1012cbe0-7eba-4169-bfca-183a0204e1a7 #> 1711 16308 2025 NA 2958ea86-e2dc-4719-93e5-cc9d093ca963 #> 1712 22339 7351 NA 521f597a-0709-4cc4-afab-72d93eccb5fc #> 1713 19023 4177 NA 93cb5790-1012-4c42-bccb-5748c27ba7d6 #> 1714 18103 3342 NA 5de11f0b-8da9-42ba-9a93-db7f0a58543b #> 1715 16775 2319 NA e9ee9209-dd8f-4e4a-be3c-407756a2749c #> 1716 16253 1984 NA 10952a8e-9da1-447b-a016-c699db00c5f0 #> 1717 19568 4669 NA ff05729b-558a-494c-b075-abdacb639279 #> 1718 19098 4252 NA 73af6932-2701-470e-9668-02d6cb35a5c9 #> 1719 20988 6148 NA 497758de-5f0b-481f-8c68-7aa5e21df322 #> 1720 21038 5855 NA acdd0b8b-d840-44ac-9dfa-05fe8baabe09 #> 1721 17435 2956 NA ec606880-b9d9-4765-b70d-7f249e06c2aa #> 1722 22048 6871 NA c10aceb5-abcc-4e42-a399-cce8e5832671 #> 1723 19847 4982 NA 1f181c47-ad84-4758-a295-4c4f5c56120f #> 1724 22053 6961 NA ef3475dd-30bc-4f1a-9c44-4a8ecaca476e #> 1725 22058 6842 NA 6c606a72-1b9e-43e6-9fdf-2cfa5fd5a0e4 #> 1726 20164 5214 NA 27f3694c-a9a1-4c64-ab84-45bdea45d44e #> 1727 21238 6332 NA f4a5d12e-9169-4601-85e6-79bc99eab455 #> 1728 19422 4543 NA 5aace1be-df36-4efc-92d9-b4bca2314eb2 #> 1729 20711 5815 NA 351963c7-bdc1-4966-bed2-845ccddfdfbf #> 1730 18980 4134 NA ecd53958-08c3-4ef0-8984-ec68d58deec1 #> 1731 21210 6310 NA 588d8e04-98dc-478a-b3ba-9e3cb58d9afc #> 1732 21036 5921 NA 96fdd2ed-d54e-40f5-beb1-40c5b3fd4bfb #> 1733 13868 1066 NA 2b9494e4-953a-4aac-afe7-edd2d7be27da #> 1734 17187 2719 NA a7413fb5-8d05-457f-a97f-504bee73a910 #> 1735 17488 2983 NA dfa638bd-7c3a-4269-8b39-b9e6b2148a41 #> 1736 22353 7366 NA e11eff18-b567-47c2-99e6-f4c6bc3d10c3 #> 1737 21929 6901 NA e135eaa4-1688-487a-a924-4d83b16977df #> 1738 22453 7478 NA fd7b9398-15b3-4967-8758-8743006dd6ff #> 1739 19102 4256 NA eb2c9e63-3a33-441e-aa95-462eaf97a371 #> 1740 16849 2393 NA ba7fe857-df63-4aed-803a-80993b157be4 #> 1741 19911 5333 NA 9b8e379d-2362-415f-b51d-ec3b8bedda93 #> 1742 18426 3637 NA fdc01035-18e4-4928-808f-26ee414948d4 #> 1743 20450 5636 NA 3bdd0681-066b-477f-bca9-6b38bad6d8e9 #> 1744 21893 6874 NA 3a10616d-e6bd-4328-ac4d-db423b0abbdb #> 1745 21909 6868 NA 68356887-b59e-4210-9726-828ea7f83928 #> 1746 21894 6858 NA ce8b21f7-6f93-40e6-8068-0432e10d855f #> 1747 20162 5212 NA 1146776b-e591-4f81-8a56-459c1845bead #> 1748 19019 4173 NA 016a6d56-0b72-490e-8dae-41b5d3d2db63 #> 1749 18652 3832 NA 971fc9e5-bebb-4a2c-a822-8c52f92a3d07 #> 1750 21018 6114 NA e33df0c0-1f12-450a-a178-b7e5478c479e #> 1751 20930 5887 NA 33f18199-2fa9-4871-b324-2547aeb4ff1a #> 1752 16061 1852 NA a60226b6-cc0e-45bd-b31c-097242ae07f7 #> 1753 21993 6922 NA c410eacd-2692-41cd-97c4-4d7a0eaf1dd5 #> 1754 22155 7153 NA a78d3d14-3cc9-4adf-96fe-dc7660cb4c2d #> 1755 13109 899 NA beb64618-614c-49f7-a3aa-c0c75b7839ea #> 1756 18231 3467 NA 63e63ae6-5a88-4b04-a3a0-5e0cb0404f95 #> 1757 20325 5272 NA a2aab80d-174c-4639-beac-e2b70bb3625f #> 1758 20944 6176 NA 14d47b4c-ff6b-4718-8a6e-ab9b3b82f7d0 #> 1759 19225 4368 NA 2c33ff53-6c16-46b5-a3b0-20db70fe430a #> 1760 16806 2350 NA b345f3db-d5aa-43ba-9f17-914c54864236 #> 1761 22352 7364 NA 299cb403-1cea-48da-baaa-b55510a6b78b #> 1762 19018 4172 NA 1cf282eb-ab14-4d2d-8a0d-702ddd83cfcc #> 1763 19273 4413 NA bfe704fc-266d-4f6a-afbf-c903b5934e23 #> 1764 21011 5979 NA 598a8d06-43b3-40f2-b4e1-59e06baddf83 #> 1765 16496 2151 NA 23616a22-8266-4b0c-b0b9-5f8187178168 #> 1766 21040 5954 NA cd9b9d93-4368-4495-803e-f5d2524c8468 #> 1767 17157 2689 NA a5c2a8bd-7935-4819-800f-32e3eefe4f61 #> 1768 21994 6941 NA f070d4ef-1904-47f2-87d3-b9e2788789ed #> 1769 21144 6305 NA f31cee33-d73f-40e5-b3e1-78162a1b27ca #> 1770 15646 1721 NA 740ac0fa-f4b9-4944-9b7a-78b97c5dd1cd #> 1771 16515 2163 NA e1b3b636-39b5-46cf-aa7f-216b09ead7e6 #> 1772 18481 3681 NA 9aa0b292-f4ad-4517-83e9-717567edec19 #> 1773 20975 6186 NA 1cb784d8-de4d-4962-a775-c7379b7053c2 #> 1774 8679 385 NA 26164d5b-1e27-445d-8684-67b80e576567 #> 1775 21046 6111 NA f2f29019-7306-4b1c-a9d8-e9f802cb06e0 #> 1776 14252 1166 NA bbd0942c-6f77-4f83-a6d0-66ec6548019e #> 1777 21812 6892 NA fa781bd3-04ed-4536-8d48-af9742c8aa13 #> 1778 16850 2394 NA 91ead748-e3b0-4926-bd3b-3e327b44e6bc #> 1779 16815 2359 NA c5e430c5-7a8e-4e29-b30f-1a527f05cb89 #> 1780 22346 7358 NA 5690a8b7-c298-426f-be4b-4bd2f0046ae5 #> 1781 20159 5209 NA 9424475a-fba7-4bfd-b79c-f372ad28082a #> 1782 18872 4029 NA 8960d61e-433b-41ea-a7ad-4e76be87b582 #> 1783 20868 5987 NA ae4faec0-509d-4080-b5cb-d1a44d062858 #> 1784 14461 1213 NA 407f1923-6659-4564-800f-25b8746d6d3e #> 1785 18315 3545 NA 6ca35fe6-900c-4903-aa23-a5ca55ac6a3d #> 1786 14222 1159 NA 8048bdd1-62cf-4d01-8257-741a585dae8e #> 1787 19883 5047 NA 60ff28ab-0edc-43e3-8517-cd57c78f6347 #> 1788 20969 6158 NA 8afd3fea-20d7-4a2d-9ce4-e610f7961e3e #> 1789 22136 7129 NA 44dd8731-122b-4f26-a599-10c5aa37acbc #> 1790 21161 6279 NA c1576aca-1bd1-4b9f-ba83-10235f1e2eca #> 1791 13275 943 NA 1059e9dc-97df-4643-9116-883a0573d8b1 #> 1792 20949 6126 NA ed0e6a30-83d5-4f4b-bf49-f7ff80e21304 #> 1793 21344 6439 NA fe7dea44-fd21-45e4-a8f0-1436e1108da1 #> 1794 20069 5133 NA f0d17dfa-ebf3-416c-a8d2-c6bc30675103 #> 1795 20582 5570 NA 50eb4454-71bf-4012-a216-2fc9770ffd86 #> 1796 21714 7066 NA 3bf5c049-9daa-43ba-9758-c6c895a9d462 #> 1797 15534 1689 NA 2fa2b2da-4aa9-44b5-b27e-56876dfe2ad4 #> 1798 20836 6088 NA 814e9529-e00f-4d02-925b-158ba1c6f840 #> 1799 22345 7357 NA 92529995-41e9-48db-b429-c96540ad357b #> 1800 21685 6794 NA 4131d4ee-0318-4bb5-832a-4dec80668a4f #> 1801 19128 4282 NA e5266a8b-b610-4c5e-9bee-7269917ffd6f #> 1802 22145 7142 NA 6c55bb5c-dde4-43ec-b4aa-0e5d65303244 #> 1803 16199 1950 NA b57c9d4e-b06b-4281-98d8-1295684c2e55 #> 1804 17443 2961 NA 94560629-fb01-43b5-b9ea-ca8372c18368 #> 1805 16671 2260 NA b05edab1-92b7-45f0-a6a8-4ded382332f3 #> 1806 14469 1216 NA f403d099-29d4-43cd-bf79-4aeeb8dc6cd3 #> 1807 21463 6476 NA 3f0926f7-103e-44d5-85f0-e53ec48fe452 #> 1808 13761 1043 NA c7c6dc46-a58a-4cfc-b626-2360434671cb #> 1809 20822 6025 NA 63fd7882-5d20-426e-9834-e85c0ebb4d5b #> 1810 8550 368 NA 7c73efae-bf01-4226-a2f8-ec6243da9b99 #> 1811 18177 3415 NA 537c88d4-c403-43f4-94a1-fdccea0ee24a #> 1812 20986 6127 NA 154d65c6-b3fc-4ac4-99a6-48c191e90ffc #> 1813 20167 5193 NA b590479c-79df-4505-be19-b0838574b434 #> 1814 19511 4619 NA b4464e0d-acbf-4a69-9450-ca7d59e8dff9 #> 1815 21926 6872 NA 1d8d5c04-15e7-4346-9d1f-f128e4df3adb #> 1816 22047 6946 NA 7a51270b-cbdf-451e-a9e7-0f0b23435dd0 #> 1817 10978 518 NA 88d2dbf4-3b9f-43ea-bac6-a8722cb24f43 #> 1818 20637 5727 NA ded1a577-51cc-4f13-8b79-4f4c09655f44 #> 1819 14904 1381 NA 25a4ae85-e94b-4db1-b939-4c96f24ead11 #> 1820 19020 4174 NA 2516f9e7-9927-409d-adbe-b32d680ae71d #> 1821 20995 6133 NA 5d235c9b-8d01-44a7-a3ec-b5c7bd4491ee #> 1822 19261 4402 NA d38bd9b4-1927-4cca-84da-5c7dd5b21716 #> 1823 22356 7369 NA a28e18bd-eb1c-48cb-b1ad-b2de212313e2 #> 1824 19275 4415 NA 54814199-dd18-408f-9dc4-ce59a121431b #> 1825 14743 1288 NA 0861a57d-b468-4c21-ba3a-7523b6838ed0 #> 1826 22476 7500 NA c3711453-41bb-4c2a-bad4-72d08f2effb4 #> 1827 15204 1562 NA 10969a29-e4ca-47d3-9100-0017774f2cc2 #> 1828 21013 6006 NA 3fa97e08-13d9-47a8-b155-39f975964d47 #> 1829 18114 3353 NA c9a7ce89-90f7-4061-b9ac-dfd4e6c3cedf #> 1830 21100 6202 NA 12b701c8-7f40-4437-aeef-782fd1d25f2e #> 1831 16892 2435 NA a8ac7c7d-301a-4e1e-afd4-04f88cad848e #> 1832 21353 6609 NA 06748afa-6b89-461d-8de6-9f1628169845 #> 1833 22038 7123 NA 3ee844af-9408-42d7-ba42-aaa2d5ccc673 #> 1834 19578 4677 NA dbce7118-3f7f-42b4-8da4-83a864f91aed #> 1835 20523 5438 NA b254f034-ab48-4a08-98d7-0dc6724e8a20 #> 1836 11694 650 NA b37c621e-1125-4c35-bea0-fcabb1527060 #> 1837 22134 7121 NA f8788fca-16b2-4214-b0a4-1bacff5e9fcd #> 1838 17962 3201 NA d7072e38-e5f5-4ac1-93cf-9a93f6333870 #> 1839 20784 5990 NA 49bf0cd8-c01f-4d31-b6f1-fdda02b4999f #> 1840 21898 6848 NA 56692800-dd44-4b82-a988-398314845fd9 #> 1841 17192 2724 NA d5ed27ed-e5f3-4d4a-a8af-79887c1881a0 #> 1842 22137 7130 NA 43d50dbb-38cf-4713-a667-15f4692d8c20 #> 1843 18005 3244 NA 12645147-c0fa-4aff-a395-496f8b9fb275 #> 1844 21889 6921 NA 8738c2cc-4ac6-4288-922d-ce4590d9af42 #> 1845 19944 5318 NA 3164fc4b-b2ae-43b3-9ff1-1d5f744b9f88 #> 1846 13748 1037 NA e7a18744-0608-4118-888f-f51de5645ce9 #> 1847 15423 1657 NA b6d2274d-87cf-4427-bddf-ee8a1b4ea652 #> 1848 16926 2469 NA 90517709-322d-47af-9360-77775a93496b #> 1849 16851 2395 NA 50de642a-7e6c-4625-9966-ed8fc64acfa0 #> 1850 15960 1788 NA 8e16968a-ac98-4e30-a7b4-5e90202277f6 #> 1851 21017 6093 NA af1335c6-c262-4488-9352-86ba80754583 #> 1852 13320 954 NA 214e55e4-a089-412d-9598-a16495df0d25 #> 1853 8358 345 NA af4ba620-2f00-4b00-9111-7897f2b1cde8 #> 1854 21220 6317 NA 751d6fe8-85d9-4caa-bcca-493155dbff6b #> 1855 20954 6136 NA 582fe465-135a-4901-beef-60aebce99067 #> 1856 16056 1848 NA 39f70428-a78a-494c-8676-438d953c289e #> 1857 19828 4962 NA 1376da0d-0448-4a37-bd99-842c4580eeda #> 1858 14917 1387 NA bd8052bd-0898-430b-99c9-2529e895ae79 #> 1859 20790 5890 NA 59482736-ce42-4058-b68e-0f9f66eac2d9 #> 1860 13741 1034 NA dba5e3ec-2c77-4f65-ad6e-cee246f816ef #> 1861 21837 6973 NA 879325b1-c961-4c9a-a3a4-679d77a28293 #> 1862 8353 343 NA 64e89f8b-3e8f-4e07-bb73-c48f2a1dd8e2 #> 1863 15208 1565 NA 4f454037-be8e-4575-b332-5e40f4788970 #> 1864 16724 2287 NA 3c119ef7-fe68-439d-93e4-89ab4fd1df44 #> 1865 16078 1864 NA 5cb1fbaa-96f9-4211-96b7-f3492f2bc467 #> 1866 21950 7126 NA a756f0c5-c0c3-4d95-9a77-4fe1ef9baf93 #> 1867 21004 5891 NA 1be82e0f-4b22-4a82-b3fc-5835aa214f7a #> 1868 20047 5349 NA afaf2f2c-06e2-4d7d-9d6e-1b9bc5a1c8ff #> 1869 19036 4190 NA df94ce97-af26-4f12-be2d-14779270e670 #> 1870 18008 3247 NA 4ee0937c-1250-4456-93d4-2d6afa064d5a #> 1871 12764 808 NA 99b8d78e-6d23-4e85-8eef-d286ba5ddc0c #> 1872 18066 3305 NA 8b3ee955-f2ac-4606-9066-42b82fb4131e #> 1873 19848 4977 NA 27b1ba46-842b-4bca-a434-56c60102c1b5 #> 1874 20199 5235 NA 268c8b1e-b217-474d-a92f-4f924273c938 #> 1875 21808 7082 NA 4da5e05d-fc5c-4e87-aa38-d9cde42dd476 #> 1876 17415 2944 NA 25e58aee-1b33-4468-9a81-6586426b91d5 #> 1877 21771 6956 NA 05e15d81-6bb1-49f7-b677-63475d073961 #> 1878 19988 5094 NA 40b8fa44-b289-42dd-9606-a1ae30adc7bc #> 1879 22437 7460 NA 9d919856-fa8a-4f06-bd1c-89ebdaca1808 #> 1880 22436 7459 NA 17a17a1a-787d-46b3-94c0-8d4e1928c492 #> 1881 19198 4342 NA 5f5fd1a9-1085-404b-a978-426a8895fb83 #> 1882 17141 2673 NA 48d7bc31-808f-423c-afc8-45c2c5dfa45f #> 1883 20876 5947 NA 73e194d1-a4b7-4de4-b1c2-3c24ef502918 #> 1884 21749 7458 NA e83c7957-58c7-48eb-aaf2-47e410607957 #> 1885 8355 344 NA 2bb70d56-a79a-4fa1-ae37-99858a3ffd55 #> 1886 16798 2342 NA ca2d277b-835d-4f4b-bf3a-3993001d71d8 #> 1887 20375 5292 NA 5f58e780-62ff-414e-8d32-b0608679e9b3 #> 1888 21601 6699 NA 625a1777-dd9a-48c6-b512-c450b0914450 #> 1889 22417 7438 NA b9a6720d-9c6f-46f2-bcee-b80550026437 #> 1890 16232 1971 NA f404283a-7c04-4a1c-899c-3243424a8d70 #> 1891 7651 312 NA 9d404288-65c5-414f-8ea5-ceb97eccaea0 #> 1892 16258 1987 NA 4c3c6b63-aa1f-4452-9d1d-662073f06142 #> 1893 20792 5878 NA 3e6e15ce-1c81-408e-9a94-b0a2924d0b8c #> 1894 20072 5316 NA 5328d551-cf7d-4ae5-a8f4-1968651748f3 #> 1895 20869 5875 NA b2fc64a2-3df5-4f65-92e7-922d41723bef #> 1896 11493 617 NA 24a847e7-8a4e-4123-967c-bd6145d9c3ec #> 1897 14412 1203 NA be7e6d3f-a5d5-4ba9-b694-5bdacab75606 #> 1898 20339 5647 NA 66dbd211-6835-4c06-9e4d-9f74cffac250 #> 1899 18905 4059 NA 66386076-7d61-47b7-88e2-34a883de250f #> 1900 19501 4611 NA 35150d4a-0dca-4daa-91b3-ffc46d44d1b8 #> 1901 18190 3426 NA f12ecfb0-085f-42d6-b063-97f0bc4fd5ee #> 1902 13886 1076 NA ae0de04e-f10b-46ba-b650-2a5c30d48cd9 #> 1903 16839 2383 NA 36538da8-9ac7-4f7d-beb4-8b773da4a080 #> 1904 18937 4091 NA 662bf69e-10eb-4c2e-970e-1a13f1c7fa07 #> 1905 22363 7375 NA 9c1cc275-861d-481f-9688-b65c170fb8df #> 1906 14989 1429 NA 5486420b-b40c-4e7c-ab47-9d70b1673c3b #> 1907 18453 3659 NA a46c1936-c00e-405a-82c8-297ebc2a7535 #> 1908 16105 1885 NA bbb3b4cf-0ba1-4d45-8650-9f8824d3781d #> 1909 18981 4135 NA 41d217b9-ec7b-4d72-8a0a-5f0e3a16b693 #> 1910 17956 3195 NA ddde7b09-faa0-4fc4-a45e-aa38c3905f6d #> 1911 13338 957 NA 543e5e1e-50e5-482d-a6ad-498d7fab497e #> 1912 19835 4965 NA 9c2c9c29-516a-4e0f-8dcd-319291823370 #> 1913 20776 5912 NA d9cf7aa3-71b1-4ef2-98c5-3db5d44b6f1e #> 1914 22198 7196 NA f183ef7c-c45f-4f31-9d54-2d5a94c4cfee #> 1915 21899 7018 NA bb01a04e-0d54-4fc6-98c8-2b8614d07afe #> 1916 21422 6627 NA c8fb3887-c2bb-4038-af6f-f9b81aeee0ac #> 1917 21507 6510 NA 3df436ea-5825-4ef5-b33f-d221d8f5992e #> 1918 19005 4159 NA 40d6eeb6-cd53-474d-97f4-a00fed5b4d64 #> 1919 18119 3358 NA 6a369c2b-debb-4bfe-8ea3-2a8364ceb7ee #> 1920 18042 3281 NA 08d27d1a-e039-4ccc-9ba7-65a22f6002fd #> 1921 16970 2511 NA 0c158936-9c0c-4ee4-a51c-4f937d3d163f #> 1922 17949 3188 NA 3b1227f6-05c9-421f-a2c1-4c8f1368b80b #> 1923 16793 2337 NA 7f911008-146b-43e9-a292-9ad90c621087 #> 1924 16928 2471 NA 80715ecf-ffc9-4a93-a305-2193451b3382 #> 1925 16774 2318 NA e07c45a0-22f9-4ba2-9bbe-6c63e623bc38 #> 1926 21424 6635 NA 962bcc09-65ae-47e1-a3ba-39290a1e95c9 #> 1927 22036 6816 NA e05e1927-1dd4-44a9-9b70-f552e6939a97 #> 1928 16086 1870 NA e381248e-ea78-433c-a9cb-7043e9f3335e #> 1929 17457 2966 NA 6e150bf7-49da-4d65-9b8e-e39dc074c539 #> 1930 14463 1214 NA afac3e25-d72d-43f7-be4b-d33ed91a0bf8 #> 1931 18478 3678 NA c4cf84d0-6022-4ac1-a9ba-85587921c53f #> 1932 20787 5952 NA 3f6d588b-dfcb-4758-95f0-545f61ddf275 #> 1933 13810 1052 NA e6221da0-1ce0-4f60-85b5-f2094e9d2863 #> 1934 21907 6815 NA 719a7e8e-8286-453e-8aee-d2487c45e53f #> 1935 18964 4118 NA 8bb2d40a-6dd2-4108-9810-5def1b45f192 #> 1936 14711 1272 NA e699246f-a474-4f91-a164-49b1d80bdad7 #> 1937 21134 6302 NA 7c51883f-8ea7-4f54-8c03-a562b4524858 #> 1938 16885 2429 NA fd3bd475-4327-4ba7-8540-ab6cc8ecf12f #> 1939 21445 6611 NA 8ad3600e-08b4-4390-8ce0-70065776b781 #> 1940 5377 212 NA ca1aab05-e07b-437e-84c6-2bdb47433782 #> 1941 18704 3882 NA 94510e36-d0ea-48c5-9c7e-b09b31c5c218 #> 1942 22442 7467 NA 53213f81-77ad-48d0-9d42-00e3633b0e90 #> 1943 9201 445 NA e5371625-0c83-4f1f-9252-c7e0b6bc616e #> 1944 16762 2306 NA fb3b36fc-b985-4807-8199-d038d7e62a93 #> 1945 7242 289 NA bb5957e6-ce7d-47ab-8036-22191ffc1c44 #> 1946 19238 4381 NA 3c8a55dd-20a8-4375-b711-49eb5e6e1d0e #> 1947 17009 2549 NA e23dc743-ecee-4cf3-a263-69d3da3bae94 #> 1948 16855 2399 NA 0c39e276-7a5b-448f-a696-532506f1035a #> 1949 21774 6984 NA 83d4c4c3-3c40-49b1-8b86-25d256a0b5ad #> 1950 18878 4035 NA d9c857b2-97da-4fb8-a527-afbbb2a67413 #> 1951 21194 6259 NA f6cc5ed6-81bc-4636-a8d4-88c47529a061 #> 1952 15071 1476 NA 540f8b30-900e-4d17-8756-c262ba5fa039 #> 1953 18152 3391 NA 30ff46bc-a039-4af7-9050-81af98901a3e #> 1954 20559 5452 NA e0248ecc-27b4-4368-bf97-47a73cb41ec2 #> 1955 9196 444 NA 0a4c5237-08a4-41d5-873d-18f70c025149 #> 1956 20766 5893 NA 5fb6e9f1-2efa-44c9-876f-4d635484be88 #> 1957 21164 6564 NA 505b14e9-7ba1-4c7b-99e7-8dafa8cd0946 #> 1958 22043 7010 NA 4bc2be9f-9001-4395-a097-d3c89140a83b #> 1959 18922 4076 NA d77eae11-9ecb-4713-878a-29900d67267b #> 1960 15193 1552 NA 0cb6209d-2397-4be2-9cb7-f990bfb67e69 #> 1961 21786 6869 NA 4e14183b-f974-4745-9d7f-8f5eb2a92a7d #> 1962 15866 1777 NA 687cdc33-bd0d-4b70-adb3-33f97dc26a3c #> 1963 20193 5196 NA db4510bb-e692-4877-9b71-0c8d642bc16c #> 1964 18522 3715 NA 32d58cfa-ffa6-46a1-bd3a-09b6ccca2370 #> 1965 8534 367 NA 3b7a1409-d154-4e5c-8c94-9d4a0e0993c7 #> 1966 18716 3894 NA 3cacaa27-a790-43ae-927c-8163b06f1a53 #> 1967 18587 3774 NA 1532328d-614e-4cd6-a43f-ff56073e2ff2 #> 1968 17960 3199 NA 90c1756d-1f47-41b7-89fe-b113c9850bc1 #> 1969 16276 2003 NA 132721b4-fd32-4795-b214-ab4baaaceb3a #> 1970 19897 5026 NA c65b8d70-ac93-4782-996a-ef96fd11047c #> 1971 21163 6234 NA 8f1147cb-3040-4128-b113-5813816241ec #> 1972 21355 6552 NA 1a97a708-09bb-4f04-94e0-8aac160de8db #> 1973 20816 5938 NA b7f930af-ddd2-4a48-9617-96bda81b0334 #> 1974 19276 4416 NA 4316bbf5-0d02-4392-9fbc-33be86f87446 #> 1975 18401 3614 NA b103b096-6be9-4f87-9ae4-5d217f560685 #> 1976 21738 7002 NA 0226b03b-f91d-4223-9813-9fcd2e9c3acc #> 1977 11063 538 NA fd4e8681-f2f4-47c7-b954-a72be9b1ca00 #> 1978 21750 6989 NA 1364cb22-1bfa-429b-8bde-dfd0d2938163 #> 1979 18686 3864 NA dcce5f4a-0bb5-4ed6-a8da-9b2cf64714f0 #> 1980 20337 5645 NA 8fcc6939-9e67-44bf-b9c9-effaeaf2bae0 #> 1981 18312 3543 NA 1b7258f3-ea04-47ba-b315-cc709fef4bfd #> 1982 16221 1963 NA 90609ea7-4f12-4526-a274-455835ccce27 #> 1983 19901 5048 NA 5bde0a71-c7ec-465f-ad35-c195e1d10b29 #> 1984 20673 5766 NA eb264430-a673-41be-9d81-588d9a9e10e1 #> 1985 19407 4529 NA ba95b150-fad0-4a8d-b15d-a5e318d95b7f #> 1986 18934 4088 NA 41ca30bb-890b-4d30-ae2a-2b12eee9423a #> 1987 22050 6882 NA 8e19d167-cee8-4048-8f28-d476b11ec330 #> 1988 17992 3231 NA 0db6df51-945b-4123-a790-0ba9d0473415 #> 1989 22172 7170 NA 66d74e2b-9a7f-406f-97db-b5b82f0c4cd2 #> 1990 19123 4277 NA 24a58900-649f-4a29-a34c-26ff92b63be3 #> 1991 20864 5876 NA a1052a59-114e-4340-8936-bffb17431300 #> 1992 22305 7312 NA 3bed3959-22dd-4ee6-8fc9-7eda34fbeaf0 #> 1993 14888 1367 NA e829aa7e-04a7-425a-9717-c334ca9febe9 #> 1994 21936 6788 NA dbeff2ee-8d26-48f3-b345-3cd88c374c87 #> 1995 19858 5037 NA 54074654-5618-4b09-98e7-560d4b0d91f6 #> 1996 19946 5311 NA 2a5cf817-b88d-4dc0-a8e2-bd6212aeb4e2 #> 1997 22367 7381 NA b03240e5-759e-4e09-aa70-8fabe877f322 #> 1998 20852 5847 NA 31bd7a4c-8eaf-4ea3-871c-b44420c804f8 #> 1999 12880 836 NA 7bad73a1-c023-4b53-bd4c-dedf18480b8a #> 2000 16767 2311 NA 2b5152aa-cbcc-439c-b72a-ac7577c8422b #> 2001 19885 5020 NA 5c24d0c5-076c-4db5-9bd0-e67f7c42ad50 #> 2002 22350 7362 NA 0d5c19ee-8165-4af0-a3ff-f5dc54bef046 #> 2003 18617 3803 NA 6c6a6099-0169-4c9a-b024-0d8f4a795f38 #> 2004 17156 2688 NA 79a3c87a-85e2-41ed-aee2-ee6b33dd401e #> 2005 19860 5018 NA 3a39ab56-f188-4924-862d-c79ce67a3420 #> 2006 13882 1074 NA b3e1206d-38e3-4ad3-be9e-8bf3daa62cad #> 2007 22039 7022 NA c4ab37e6-e589-43be-94dc-441c81ca5fac #> 2008 15672 1730 NA 7f614864-933f-4469-8df0-7fa9e2f3b851 #> 2009 10333 503 NA 63f8a401-f308-4463-9d0b-4335b98da682 #> 2010 16929 2472 NA 677a2fa2-55d5-4a1f-b56f-1f97b0a4b61a #> 2011 21978 7020 NA 65533cd0-792b-42cb-808f-18cbac2e51cb #> 2012 19886 5021 NA 074acf5e-748f-4d42-9875-0090f1480bec #> 2013 20516 5664 NA 18264a0b-cb51-487a-b2cc-f9258f0325f6 #> 2014 22156 7155 NA 22f733ff-fd31-4731-acf1-97843e9eb665 #> 2015 21902 7011 NA d2f9e776-11e2-47ce-82fd-60908aeb2769 #> 2016 21000 6132 NA 9898a791-ba28-4a68-beee-ad12f61af7db #> 2017 20036 5337 NA 6bf775cf-391f-4455-ba0f-264af0803ea8 #> 2018 18052 3291 NA 0392b852-2783-4ce4-ad39-dc8661a5be3d #> 2019 19160 4311 NA eceef7ad-494e-4a84-a6d6-e7253fb554f0 #> 2020 22150 7148 NA 8969d7bd-b4c8-4cdc-84c0-a78eab2c2b2b #> 2021 18016 3255 NA d073c3c0-b9b0-4382-84d0-5de88a427ad6 #> 2022 15454 1668 NA 12f55b0f-17a3-495c-9654-fe53f4c20716 #> 2023 16365 2063 NA d86d53af-2eb8-425c-90ab-851122cc633f #> 2024 18333 3560 NA 014038bd-e9b7-476f-b7bd-bd78a46a9a57 #> 2025 18938 4092 NA 6371b42c-2783-49e8-8def-ce4d7dc91081 #> 2026 20282 5692 NA d58166e2-24ee-4dd2-ae22-36b05634eb6d #> 2027 18144 3383 NA f45835c5-aa9e-4e32-b545-20d1e322fe8f #> 2028 20841 5870 NA 0042266b-cb28-4012-bfd2-06650badad97 #> 2029 11047 533 NA 3699dfd9-d437-43f7-b674-adbb31e7e64b #> 2030 11422 606 NA 250199f2-1387-4b55-b96f-17fedea6db7f #> 2031 20966 6147 NA 3cbf12f3-11df-4ced-a321-4877b129420c #> 2032 14657 1262 NA 1c6daf8e-d6dc-4d88-a5fa-c3ebcd93a6e5 #> 2033 22395 7412 NA a75efc5b-a4fc-4da4-8684-d170a0c40b81 #> 2034 12708 788 NA b25ba2bd-80bd-4295-9034-cf9242fb207b #> 2035 18996 4150 NA 567fe739-5425-4d78-896c-f1486813910d #> 2036 19205 4349 NA b8033c75-de94-46df-a645-284f419c4497 #> 2037 20122 5168 NA ddd1fbb3-4db8-4d77-b522-9efd938ec8c5 #> 2038 17360 2892 NA 37339e36-741c-4c1c-a9ab-bd89ed866fa0 #> 2039 19766 4866 NA 9811b753-347c-467a-b3cb-85937e71e2b9 #> 2040 14269 1170 NA bd10efdf-d8e7-4e23-ab1a-1e42fb65131b #> 2041 18902 4056 NA 45ef2670-2382-434b-8f26-ba13f044236e #> 2042 13744 1035 NA 93927d6e-9271-4c1e-8239-cc20fd788ba9 #> 2043 20794 6090 NA 66e7cb60-bf2e-41a5-96c1-4f7d4f8f9cda #> 2044 22035 6905 NA ba5805bd-c67e-47d8-8d47-c8440a268cd4 #> 2045 21026 6029 NA adb1984e-17b1-4efc-9af9-94cec5835c91 #> 2046 20440 5475 NA e69d4c5b-930b-481b-a81f-aea5c22ff3ae #> 2047 22025 6810 NA b493daf9-e550-497c-b382-4ffda2e47260 #> 2048 16039 1836 NA 248b6e0b-bb1b-4dd7-8eb2-b5f7e98c77b1 #> 2049 22091 7377 NA ae320fbe-15cb-4877-b05e-c626bbaba820 #> 2050 12778 813 NA b077b3b2-2fed-4c9f-9b8f-c4ff50a4f911 #> 2051 18912 4066 NA e21365af-8d66-416e-b0a5-8816d18fcfd9 #> 2052 20946 6146 NA 7bb7f5e7-f00e-47d8-954d-90bf5baf4292 #> 2053 22365 7379 NA bb3bf01d-c100-4a9f-9b7b-21aff82a9cd7 #> 2054 15378 1642 NA 67d56171-7522-430c-b7d9-8f7e2b6624d3 #> 2055 20117 5166 NA aec7472c-3e0b-443f-8c48-cd8cf0e9734c #> 2056 11611 642 NA c88d9352-b835-45ed-a909-1cfec09a58bc #> 2057 18241 3476 NA 0ee05dd7-e99e-43c8-ba2b-0922be1d8be1 #> 2058 19200 4344 NA 8db3a609-73f4-4797-ae22-8adf024d473c #> 2059 21862 6873 NA 126811e0-f856-49c2-b36d-15e71e06f4c0 #> 2060 20943 6149 NA 82ed30a5-54a8-4ed0-b040-99c3a78fb055 #> 2061 21294 6386 NA 427038d8-ff50-4d6e-a088-4fdb8bc2f0e3 #> 2062 20939 6154 NA 97f6c20c-1110-4551-82c1-41d3247397a2 #> 2063 19854 4992 NA 20d16690-560b-4a01-af20-8870ef07ea70 #> 2064 18116 3355 NA fa6b16fe-d3cd-4296-a0e6-03ad13d27a57 #> 2065 17961 3200 NA 1ffc735b-74d8-44d2-ab32-00c5485c799f #> 2066 17938 3177 NA 6efb8027-b537-4dd1-883f-459450708ad4 #> 2067 18062 3301 NA fbabd1f2-fe25-4cdd-9000-8fcc90372e82 #> 2068 19485 4597 NA 441ff2e1-53bd-47dd-b44a-0f97e0b97d9a #> 2069 20502 5551 NA 99119082-a5be-4fb0-bebf-ad25cd564b4e #> 2070 21234 6328 NA cf93a57e-129e-4e81-8d40-d8772ee0403c #> 2071 18469 3669 NA 901c84c7-ef46-4c9f-9941-ac8becc02986 #> 2072 21021 6283 NA e3a4104a-ceba-4df2-b265-70843ecf1fb0 #> 2073 19375 4503 NA bf21bd83-9c97-4faf-97be-859f033848e2 #> 2074 20744 5933 NA 57df194b-d445-4e66-af51-7b781b0f529f #> 2075 18392 3605 NA 22d9354f-3277-4ae6-bfaa-351ce38f1140 #> 2076 22170 7168 NA 9c95fee4-129e-4765-b99f-f09f517c1f4f #> 2077 22076 6833 NA e81fcb68-e579-455f-9278-1bc28d5d332b #> 2078 18939 4093 NA dfbbaf35-08d6-4f58-8577-c2e53a492454 #> 2079 22081 7392 NA dfdf250e-0457-4008-be27-a0be2a3ae5bd #> 2080 22049 6994 NA 22e0f7ed-9b46-4a75-9780-d9b66c245744 #> 2081 16396 2083 NA 144ef260-a22e-45df-9bbe-52a11f9188ba #> 2082 20785 6013 NA b8db855b-fd1f-46e6-ac23-466f68130e6c #> 2083 20271 5534 NA 98166be9-2705-496d-ae1c-3bbcc2fe60bb #> 2084 21165 6235 NA 4e2c85e2-3efb-4c5e-ba5e-3c75202e4f00 #> 2085 19942 5466 NA e08d71dd-58d9-4295-bcf8-9a6faf59c333 #> 2086 21910 6897 NA 2160ed45-4a2a-4d3b-9da4-d18446dfa292 #> 2087 22377 7391 NA 07b963d4-aef7-4874-ba04-f9b1ec1142d3 #> 2088 16854 2398 NA 2d3a6c81-183f-431b-9b3f-d7f1ce2b294b #> 2089 19993 5090 NA acc3f3fc-12b7-40b6-b773-b73b2b10cf32 #> 2090 18476 3676 NA 8905d02c-c7f7-4a50-901b-6eee71e39cc6 #> 2091 19097 4251 NA 243b786c-744d-4a6b-9a8a-0b4e5fd2ad18 #> 2092 19887 5043 NA 4be6de2f-0a6c-43fc-a91f-d01cdb5dca6c #> 2093 15961 1789 NA 18fc2ade-5106-491d-9e5f-97926e64459a #> 2094 18961 4115 NA f9d87dfe-4a57-482a-a77f-37906daa4382 #> 2095 19690 4771 NA 6d7ca819-8c58-4c41-bba7-643ba9553eb8 #> 2096 NA 7515 NA 1f2c7574-f56a-47b3-bd75-5dd0d5ff8d93 #> 2097 21542 6650 NA 12d28404-63e1-432f-adde-c93631a5c39c #> 2098 18735 3909 NA f61e6429-3f9b-478c-8697-e00fe813ce9c #> 2099 15220 1572 NA b94f3978-ba88-428a-924b-3fbfdf04b058 #> 2100 19679 4761 NA 1aec5d74-58c8-4bf2-9508-f09e6384952c #> 2101 15176 1539 NA fe1eeca3-7ad7-4bc2-9c55-b5662818642c #> 2102 18480 3680 NA a5111f5d-0b0c-4745-874c-672904200c32 #> 2103 16093 1875 NA bf5f7564-349a-439a-a8a9-4ddb10448a8d #> 2104 17145 2677 NA fa4ae025-fd66-4752-94fa-63e22ae8abd4 #> 2105 21118 6217 NA 17dfbad4-f4fc-4a65-a085-6cdcefe36879 #> 2106 18958 4112 NA d7068799-55b7-47c2-91d9-0e532957939e #> 2107 21341 6666 NA 5a79cba5-d633-4ed0-8aa7-a244060432b3 #> 2108 18012 3251 NA ae3bb00f-84e8-439f-ab56-38c6838b8b97 #> 2109 20411 5580 NA 717ebb17-f54f-4052-b9fb-af641a25ebe2 #> 2110 19286 4426 NA d3e192b5-4523-4d65-94e0-a1fb164b6542 #> 2111 16983 2523 NA ba447b79-44c1-48a7-b30a-a2460f219afe #> 2112 20382 5669 NA 571152e1-0a76-4562-b257-4729e4401549 #> 2113 19178 4325 NA 04ae0bca-f5c5-483b-bf55-967f1423cb45 #> 2114 20989 6118 NA b8e0fa49-1122-4e97-9fe2-d90f6b7cb444 #> 2115 22094 6950 NA 85eaaf9f-59cf-4150-943c-c1abdaa78eb1 #> 2116 20542 6205 NA 977646e0-0142-4293-aea2-cb36742bfac4 #> 2117 16430 2106 NA eab69ec2-9cba-4783-8260-cf99121ed2c8 #> 2118 19972 5089 NA f4808328-86e9-459d-a2bc-18e90c7d211e #> 2119 611 19 NA 64797df2-efd3-4b27-86ee-1d48f7edb09f #> 2120 21965 7081 NA d0b866b8-6221-492c-a80b-4a12bbd13e64 #> 2121 19812 4943 NA 13d826c5-9b22-4e0a-a877-02d8c84c546b #> 2122 20837 6039 NA 96e6687b-2b89-4dd9-98df-6e7507cd82cf #> 2123 22121 7079 NA 573c2c6b-fbd7-40e8-a83e-30140cf43e7b #> 2124 21797 6908 NA f86e291f-d678-463c-93cb-beedab9a309a #> 2125 20883 5961 NA bbb3812b-cfee-4cab-80c9-6da225fec5b2 #> 2126 5820 232 NA 6a2b129d-a9e5-4131-b491-82269b323f77 #> 2127 20075 5136 NA 23b17031-de21-412d-8182-5a4bca1049a1 #> 2128 21476 6429 NA fe30ca46-c995-46ce-bca3-12451bfb5ad8 #> 2129 21925 6855 NA 7d491979-7d1b-4b55-9f3a-f68db22d8bb1 #> 2130 15302 1617 NA 9b80f314-0cd8-4a35-918f-a405b680e879 #> 2131 22011 7061 NA ca98164e-f504-48f7-8a55-48444dfb4df5 #> 2132 18051 3290 NA 9ca56390-fb0e-4261-ac0d-1770f65021bc #> 2133 19104 4258 NA 6993aad2-269c-4211-bee7-2fcd324288c5 #> 2134 18599 3786 NA eb7f7d43-7837-400c-828c-bd5d609bca41 #> 2135 22009 6796 NA 8639eb45-a9dd-4b3b-91f1-01319af3bdd0 #> 2136 20746 5969 NA 668bbc04-3346-4ba5-b038-9b5485f79d1c #> 2137 17750 3041 NA 75dfd9cc-5419-49e1-bade-0632d03ca4b4 #> 2138 19947 5009 NA 780a48de-d092-4e87-9c34-8d1b45a154cc #> 2139 20977 6181 NA f6c34178-e063-444b-96b3-df6b3cf66419 #> 2140 22473 7503 NA da9fbb26-ca12-41a7-955e-a8abe04d19f0 #> 2141 14985 1425 NA cb1df42c-b59c-4e23-a9a2-fbfc2b39ef71 #> 2142 16866 2410 NA 8002dd5e-a75a-4d72-9a8c-0f4dbc80d459 #> 2143 20038 5121 NA 18f0bd30-1432-4fae-9cb4-c212bad6d0bb #> 2144 19006 4160 NA c5a8b02c-d380-4f22-a690-b335001de8b7 #> 2145 21473 6453 NA 021f2c32-0876-4db3-9605-e829f7d449d7 #> 2146 17939 3178 NA c80914e5-5b9b-4ed8-a993-bcdf5f77f5f6 #> 2147 21078 6557 NA 767b1112-c77a-4a58-89b4-30f1ffa2a497 #> 2148 21741 6849 NA adfc13b3-1eb6-49f3-9ba6-d4d87fd13685 #> 2149 19925 5005 NA 74761635-c70b-4cbb-abcc-f882e5efae00 #> 2150 21728 7106 NA 2f2181f8-cb0a-42e4-9468-17f5f5a219cc #> 2151 14828 1329 NA 8fc65820-f565-44e2-8635-3e1cdf165bf6 #> 2152 20295 5260 NA a63918a5-da89-40d9-8518-30a3e0e46da1 #> 2153 17219 2751 NA 1b016b52-62ba-4da9-9ead-6bad689f8d33 #> 2154 16787 2331 NA 0dc98d11-34e4-46f6-96a6-7707c6f29500 #> 2155 22388 7403 NA 1144d517-25dd-4b04-b316-d0bfc0d0c36f #> 2156 12707 787 NA 1d02b5a6-fe2e-4131-a9ab-6ed3558f4026 #> 2157 20910 5943 NA 66170e6f-1c23-4bc0-80fb-b18344e98fb4 #> 2158 15127 1518 NA 2c3ef101-5fa9-41d0-a0b1-32a1d27a1f69 #> 2159 18135 3374 NA e431a42b-5abe-49de-9c8c-f143f393591c #> 2160 15469 1672 NA 1eb8ad96-b4f3-461e-81a3-0a4e08844f73 #> 2161 18178 3416 NA 06a67b3c-d482-4767-b2ce-49edd8777525 #> 2162 20584 5583 NA cd340b59-3ee0-4829-8d08-be8744f670a6 #> 2163 19949 5361 NA 942b9da8-e0c6-4087-886b-370fe357f5f3 #> 2164 22389 7405 NA 8dde622e-645e-4e89-85b1-a8aca7bdfd7e #> 2165 22066 6863 NA 208c5228-2b8d-414c-91a8-57d2fe4803b4 #> 2166 14419 1205 NA b7253ed5-d2c3-4757-8b54-5176fe9f45df #> 2167 21346 6579 NA 1d5562b1-78c3-4d48-87ee-1b7ce1e0d5cb #> 2168 22390 7406 NA 8782ad19-a41a-455d-84f9-aa64f7038ee6 #> 2169 21938 6947 NA 789af1aa-253e-4fda-a93b-cef346bd91b3 #> 2170 22065 7051 NA d6969476-95dc-42e4-9cd1-a1e8ae6973ff #> 2171 22250 7250 NA aca3090e-ff88-40a2-a7fb-93e063f072db #> 2172 19918 4999 NA 66a67b5d-500d-46e8-90c6-e2f127d38190 #> 2173 11315 583 NA b3e41b52-a8aa-4be8-8513-8ede6f3f83d3 #> 2174 13722 1028 NA e929b3d8-6f7b-41f2-acfa-fe3840d03509 #> 2175 22394 7411 NA 06087aa3-4538-4eb0-8713-090967c3a32e #> 2176 20176 5179 NA 14063f54-4935-4043-90f0-a6d2d6ab6143 #> 2177 18911 4065 NA 2d74a108-2b17-4db3-8ef1-0c2e845b414e #> 2178 21895 6933 NA 96d75855-2d83-4e13-b395-846d6aaaadec #> 2179 13721 1027 NA 49671677-0e37-4c70-ae1b-ec36be357eb9 #> 2180 18017 3256 NA 3f8e4972-2361-4939-b5e3-c5f6c63b9f68 #> 2181 18038 3277 NA a72ab12a-751b-4a0d-9f9d-a44d2510ac23 #> 2182 14048 1124 NA 252da24d-9eb7-4871-ae76-199918f412d8 #> 2183 17082 2614 NA 07c51c65-489b-4bae-b997-f1a0f35deffe #> 2184 19110 4264 NA 6a859e36-f31a-4a75-8cd2-905833042fcc #> 2185 18009 3248 NA 447db942-40e8-4bb3-9710-b12cfaaafb46 #> 2186 13959 1098 NA 9fe21c07-823a-47a1-a4dd-0c611c0280c5 #> 2187 20799 5963 NA db099408-4fdf-44f3-9824-aa8006ac60c3 #> 2188 16833 2377 NA d34ef6d4-6a88-4207-9344-a867d120753f #> 2189 20043 5363 NA 782c4f21-74b8-4fb1-b9a9-f908e4de81b1 #> 2190 20902 6102 NA db390635-a7ce-4508-9c58-4ac1c36740df #> 2191 19041 4195 NA 059e5bb7-1842-4558-9aaf-77c352a21216 #> 2192 19970 5081 NA a56b9958-2eb9-47d2-a50e-be8aeaea3eaf #> 2193 20749 5960 NA a7b4b50a-9431-4551-89e1-6b8cb80536d7 #> 2194 21914 7127 NA a004c949-7097-4faf-bac9-0edc5b1b2b67 #> 2195 18092 3331 NA 5a0c79a3-fd9e-4914-b3e1-27aae59d86fe #> 2196 18945 4099 NA 16661483-3da0-4461-ac44-46fddb386e19 #> 2197 22233 7232 NA dec323b8-fb75-4182-b03d-6c412d3d51a5 #> 2198 17085 2617 NA 954d9ed8-41ed-4222-b0d8-b3cc8d1755a5 #> 2199 21987 6912 NA 423b3b98-da9a-4786-84c9-0662ec0ce11f #> 2200 19059 4213 NA 8a6672c9-79b9-4c49-9d7c-0061a1141a7c #> 2201 21913 7014 NA c44bdac4-0732-4f94-8bae-df47ecec5656 #> 2202 17527 2999 NA 444a23cc-f2db-4078-8eec-3f43f8542742 #> 2203 19552 4654 NA d2f6de91-089a-4845-9b90-bfbc00487444 #> 2204 22260 7261 NA fbae56c0-6400-4d46-9e76-621fc0d5fdd7 #> 2205 18104 3343 NA e1c506bd-9e36-45e7-b2b9-fff6a9728a06 #> 2206 21831 6904 NA 64bd0f02-6a5d-407e-98f1-fd02048ea21d #> 2207 17920 3161 NA e9a5c16b-4472-4be9-8030-3f77be7890cb #> 2208 21439 6637 NA d77d9cb1-7fbf-4f77-9f55-cd52afd0ba91 #> 2209 18067 3306 NA 4b09ab09-1457-4c9d-a99d-6a03d8e76c76 #> 2210 20809 5919 NA ebae3f19-b8bb-43d6-ae78-d21e9dc08b61 #> 2211 20933 6151 NA ef3ceaf4-b733-4e06-a7f4-a94fc67361c1 #> 2212 21842 7093 NA 2af6db68-3ad7-4699-8f86-0140fffce577 #> 2213 20039 5122 NA 768f6afa-ba24-40d9-bdc1-3184bba2ec2b #> 2214 19548 4651 NA 69568326-f210-4b88-a5cb-10376c64893e #> 2215 21764 7107 NA 632f863e-ad20-424f-a468-7ee40c098c2c #> 2216 21133 6284 NA 4dcf9e8a-fc5c-43a2-9b83-4ca295490a9b #> 2217 19069 4223 NA b12174ec-fea9-4e05-b54f-c00e10920245 #> 2218 18149 3388 NA 12563365-b4aa-4b85-93a3-b220c8212707 #> 2219 18113 3352 NA e1754596-4764-4686-8359-dc53fdabbd1d #> 2220 14857 1340 NA 3edf64e6-603b-4437-a3be-53fe030c6f56 #> 2221 20042 5362 NA 4c01d331-f294-4836-bbfc-3369829d66c8 #> 2222 21661 6740 NA d0b809ac-b82a-4b66-98b1-9fcf613ace6c #> 2223 21981 6942 NA 83657965-d1b5-4317-84bf-f9e471629993 #> 2224 21067 5858 NA 6c50f131-80dd-4aea-a34d-dac06d5cf91a #> 2225 8920 412 NA 46aab8e6-3ca9-4213-a6cb-87db90786f6b #> 2226 14856 1339 NA de3421f7-2147-4835-89a5-724e87bad463 #> 2227 18468 3668 NA 9c18801d-bdaa-4036-9663-24280c763bcf #> 2228 20823 6040 NA 2fc1c9f1-9e85-449a-9a87-fa8203e8e8f9 #> 2229 19415 4536 NA e17b5817-d955-42be-bb8d-e34d89f6dd71 #> 2230 19863 5022 NA e8029983-87cf-49a2-bc04-04c8233a0630 #> 2231 20993 6142 NA a195e517-f732-4e55-a84c-2ce132a73c65 #> 2232 21056 5886 NA 472945d8-0062-417b-9967-430d381c80ae #> 2233 16491 2146 NA e00b3426-238b-4bdb-85c3-bbf08b7469e3 #> 2234 14865 1346 NA bf52ff53-35a6-4696-ac6d-3fa952dc2c87 #> 2235 19705 6744 NA 0832c8ad-0872-446f-ad6e-0e309e8443d1 #> 2236 20373 5290 NA a4290c7e-ffc0-4f5b-a442-b1d821c24f88 #> 2237 20762 6059 NA 030f3ecf-f32f-497d-96a8-8f28d44fc311 #> 2238 21686 6798 NA 06ff7f42-5fe7-4899-84a5-9ba5349d17e8 #> 2239 21139 6288 NA 3ca39a84-5ba9-445d-bf6e-895be06edb34 #> 2240 21957 6927 NA ca85137c-205c-458e-8b77-8457849f614c #> 2241 20742 5863 NA 0cc1a941-1a6d-4a4a-8c7c-88157165c126 #> 2242 14187 1149 NA 5c529c33-8a1d-413a-b635-880ac86f30c1 #> 2243 3943 147 NA 3e618eb6-41f2-4f20-ad70-2460f9366f43 #> 2244 21731 7086 NA 58e217cd-53c0-40e7-b40b-62f53d246751 #> 2245 11062 537 NA 6c2c4e4c-82f0-46e2-bcfb-3ed5f452266b #> 2246 20231 5503 NA b556dfd1-ed9d-45c3-9328-00236ddd54b1 #> 2247 20853 5905 NA 4fce55c1-1afb-4667-9115-0e239b72285b #> 2248 18202 3438 NA e7f4b773-e944-4b62-a67b-fa0968862a37 #> 2249 18984 4138 NA d8fc7bb7-333c-4caf-9512-893c334f56ef #> 2250 11043 531 NA 3ec2ad5e-f4e0-474a-98a9-0bde4ff5aab9 #> 2251 18316 3546 NA 972f93d7-158b-4464-b119-952f298cea52 #> 2252 22068 7419 NA 6e0bbdc7-fa74-41d2-b3de-4eaa8e670f87 #> 2253 21121 6299 NA 44750689-c0ca-4d26-86eb-ed40882f00f6 #> 2254 16859 2403 NA c2e80cfc-33a8-43f4-a61e-57048244e4f8 #> 2255 21924 6917 NA 60871327-0349-4246-8996-4a594addd8cf #> 2256 17989 3228 NA dfb0b126-9c75-41d3-9371-04065db7506a #> 2257 19997 5360 NA c1ea7946-fb7a-4a5b-9ed1-c58caf7f8faf #> 2258 18947 4101 NA 9ea97d0c-6af7-46cd-a69f-b61a649e5a28 #> 2259 16688 2275 NA a18446e0-c116-4d12-83d7-6b12c5fb983f #> 2260 20520 5572 NA d7f79a32-6a28-4e14-bedf-6186dec771e6 #> 2261 21049 6033 NA 5ec1f072-8ce0-449d-bbc0-5e8160836007 #> 2262 11151 554 NA 1aa8d83f-c084-4893-b9b0-b1296ec822f1 #> 2263 16159 1925 NA 9758b9e2-5809-4a16-890f-e239f0808723 #> 2264 22217 7214 NA 821e5d53-5518-45f1-9679-6edabb0f63c0 #> 2265 12902 843 NA 9779acc7-ed88-4a16-b78d-230ace9ec3eb #> 2266 22067 6995 NA 1dada1ff-5475-425e-8f38-0728d50c91c5 #> 2267 21007 5953 NA 5f644070-97f1-4b7a-b0b1-4a341ac10771 #> 2268 18115 3354 NA 7a3d664b-e4d7-48e8-899d-5f7db6ecc4e4 #> 2269 22132 7116 NA fb301e65-4c65-4b60-a8ca-d149fcdbcd97 #> 2270 19055 4209 NA e805571c-fc68-438c-b8db-2d1286d99182 #> 2271 14650 1261 NA f7e3c1cb-6ec1-45fa-ad64-6b01957c34b1 #> 2272 16191 1945 NA 441eb531-1ec8-4f65-9174-78bc6adada63 #> 2273 20180 5183 NA cc67f4a1-99e9-48a9-84f4-245d7425ba6f #> 2274 20646 5726 NA 3b59e08c-0c3b-42c9-a4e2-9b79103ea715 #> 2275 14975 1415 NA 0adb6bc1-17fd-4ca5-90ad-89ca06950bc8 #> 2276 16783 2327 NA 48dca4c3-c6ac-4122-aee6-26f7cd259824 #> 2277 20155 5174 NA 80637f09-673d-45fe-b874-bdb1a9c20ee6 #> 2278 21054 5843 NA ab5d4d72-fb1c-4aeb-887b-f6ca35f679bf #> 2279 18916 4070 NA f340201b-a1b1-43ba-a47a-484a44334553 #> 2280 16182 1940 NA a36dd143-6b0f-429e-95ba-335559ff4845 #> 2281 19749 4848 NA 0c306d14-6fe6-4b4e-b87f-871c72441947 #> 2282 21897 7113 NA 3f4025d1-5782-43e4-9f42-8eee2da66a95 #> 2283 20771 6057 NA d1e8f343-9556-46f6-a238-2053a50b57d6 #> 2284 19805 4903 NA 4642915e-8c37-4692-9169-fa210b6efc8c #> 2285 18388 3603 NA 5d6266d9-b034-439d-9234-91c6c9696f8d #> 2286 17470 2975 NA e20a7609-8129-400f-87b9-d11dda3836b4 #> 2287 22218 7215 NA 32b2d6f6-a636-4d73-927c-361c1aa809f5 #> 2288 19025 4179 NA 15bedebc-839e-450a-86f6-1f5ad1f4f820 #> 2289 3807 138 NA ea357add-1a41-4a8b-8f34-bbfade7f4d98 #> 2290 19850 4972 NA be4ca0ad-f3d6-4b98-a37f-79d0cbc06390 #> 2291 20795 5845 NA 6e4eda90-2656-434f-a262-4e5e9fde3946 #> 2292 19996 5107 NA fd4241f9-ab42-4dba-a701-455b896eca28 #> 2293 21854 6878 NA 30487ab2-836d-4e4b-a46a-89e31b414374 #> 2294 20950 6156 NA 74af3906-083e-49d1-b8c6-556101390381 #> 2295 19599 4696 NA 9b4e4d1d-ad88-4c10-b1c0-b9116755c184 #> 2296 18070 3309 NA c7d0a740-fcf2-4971-b1b6-43761d984bf9 #> 2297 18983 4137 NA 28a084c0-14df-499f-bd1f-b975603626b7 #> 2298 15380 1643 NA 784b55b7-2822-4f38-9daa-a704151d1b35 #> 2299 19849 4974 NA e4739abd-d524-4857-85fc-ed4845462817 #> 2300 21235 6329 NA 051ccf4e-e2b9-474b-b0c1-d5f6c0aebb63 #> 2301 19829 4963 NA 1aede0b9-557c-444d-9a2f-4cc690e1563c #> 2302 19263 4404 NA 7f59e894-4ce1-4803-a556-2e02add60bc2 #> 2303 19013 4167 NA d088fb7a-694a-4286-a51d-4a13ec398088 #> 2304 20139 5204 NA 14fb27c9-f390-4f58-a257-7fe2c7e6705b #> 2305 18044 3283 NA f3bdf34f-1424-4e26-911c-3ff45e2f7bac #> 2306 19537 4642 NA e6d4351b-d073-4ed5-9d5a-51ea2e9298eb #> 2307 16198 1949 NA 4c751137-cb2f-4399-9e5f-1cec4b59611b #> 2308 19906 5023 NA a4e669b3-32f3-4762-8b01-df6ef8dd0e51 #> 2309 15980 1805 NA 08e9f65e-cf4c-4af5-939f-a93d1cf34b2e #> 2310 22209 7206 NA ef490eec-3c43-47f3-b4a2-ae41c95108b6 #> 2311 21362 6437 NA 19f35c8f-4796-4563-bcf5-6bab1679571e #> 2312 16451 2118 NA 9fbcfae9-dd14-415c-8952-9b1b5dff0dfc #> 2313 15239 1587 NA 8f24a248-b328-43ec-8677-67600e42a8f7 #> 2314 20134 5171 NA 1ea6e870-84ff-44ba-8302-f0f08623fa26 #> 2315 20770 6018 NA 58f18567-a050-49c4-aeca-b34499338b37 #> 2316 20922 6016 NA 9d95c076-0ceb-4ecc-9187-4f77354c2d1f #> 2317 21551 6591 NA 7b2e40ac-417d-4a86-b239-66bbe91c0bfc #> 2318 21752 6886 NA 53ed110c-f022-4759-afd3-1cd3436dbba7 #> 2319 21077 5937 NA 244c00c7-fe9a-4f4f-adff-1d5b9c8877e7 #> 2320 20830 5929 NA e0dc9dce-fe33-4092-b6bd-6af3cbcb762e #> 2321 19865 5024 NA 814aa074-fc61-4649-b7a1-098bd3a199fd #> 2322 21964 7039 NA d25a19a7-7de6-4476-b42a-833c8c3cb208 #> 2323 19961 5096 NA f7ff7599-a175-4a0c-b887-3ae9e596fc64 #> 2324 18883 4040 NA 9547fbb1-0d4f-4d9e-83b9-e2fa30463bb9 #> 2325 18969 4123 NA 736c12de-b7be-4c12-bed2-57856b7c8449 #> 2326 20353 5561 NA 8d77a320-4b95-498b-ba8e-f1db36f033cb #> 2327 21307 6349 NA bdeffac7-3509-4689-af1b-29e9fe86b008 #> 2328 20538 5655 NA 67c2f38f-b568-4bcf-a40f-750cef707a05 #> 2329 18986 4140 NA dd7640e6-d81d-4605-b900-451bf40e5bd6 #> 2330 17113 2645 NA 872bbe18-ea66-415c-b556-6d15bda05b0e #> 2331 20878 6009 NA c5614795-d8e3-4104-ad9b-edfb575410bb #> 2332 14730 1283 NA b7b3c187-7447-4d02-94b7-5d3ee64ca530 #> 2333 19951 5379 NA 73c958ee-0d55-49e9-a613-f4475b444fd5 #> 2334 21031 5982 NA 1c468a8a-355f-429a-a12d-d8528fdc6aa2 #> 2335 22412 7433 NA aaf9cdda-8da8-4b3d-95bf-6fea8070a537 #> 2336 16960 2501 NA 8092ffd3-3f39-43eb-a602-b14fff77d413 #> 2337 21111 6216 NA 9448aee3-538c-4ff3-8781-bc848b086bfc #> 2338 19953 5372 NA 17664e93-8236-4eb0-9505-4e71f43b5a7d #> 2339 16791 2335 NA b9e6500f-2bb4-47b1-a3ea-1e3f925a3743 #> 2340 20335 5474 NA 1163ba47-560b-4705-82be-69967c4fc096 #> 2341 21882 6910 NA 5670f3dd-822d-4d13-a6c9-f981354441fc #> 2342 21901 6915 NA fc116de9-ceb8-409b-b322-60659c73e943 #> 2343 18689 3867 NA 21199f7c-91bc-4295-a6c8-bc0cfd017616 #> 2344 18002 3241 NA ccfcbd2c-6e35-49b9-b131-ba2143665260 #> 2345 19890 5059 NA 9912fa7a-040d-40cf-99b5-0a7a28e0ba1a #> 2346 11023 529 NA e79d8a12-4ec0-46d3-ae42-384f16deebed #> 2347 21008 5861 NA 9d546e3b-0eb3-4926-a5ef-eb5e48b9330e #> 2348 15814 1764 NA b612c556-1285-405f-9294-733f0302869e #> 2349 15092 1494 NA 03af0e0d-a443-4b09-9ab5-4f2695248346 #> 2350 22465 7491 NA 7dcdf083-2f41-4788-a668-000cbfd1c8b1 #> 2351 17981 3220 NA c02b49d3-ddc1-4ffc-9f40-487199882fa5 #> 2352 12787 815 NA eeb9e3f4-e378-44ca-94b6-a724011ad710 #> 2353 11585 635 NA 46664226-53c3-4ef9-9aeb-f708e3e8269f #> 2354 22028 7003 NA 475aa381-25d7-4d6e-a6ce-bc7601f4b034 #> 2355 14981 1421 NA cf45fa8d-13e0-4c16-a9eb-301b090ef83a #> 2356 20796 6077 NA 03f235b8-e338-450d-9107-8103b7d0a32d #> 2357 19091 4245 NA 83ffd861-ffb0-4560-a79c-52acd2b6cb1e #> 2358 19311 4450 NA 704cc12d-78b1-482a-bd2e-06dc9a633ceb #> 2359 11577 631 NA d7055ba2-f8b4-4407-b491-60c05dff6162 #> 2360 17215 2747 NA 7af4c94b-529b-4403-ab66-2bfed3fcf0c7 #> 2361 21053 6098 NA 8fe853ae-184e-4c65-a00e-70d2f141504f #> 2362 22005 6949 NA ef422c88-b74f-4720-a831-947010c44ebe #> 2363 21025 6065 NA 577dfac0-3f0b-45ee-afff-c851c6aebb1e #> 2364 19923 5003 NA 7c7d286f-5c3f-4fe1-864d-9351499bd530 #> 2365 15827 1770 NA 1886860f-ad41-41a2-befe-fc2b5d361e38 #> 2366 20972 6135 NA a1ed2859-499b-4dbb-96b7-0d8728290de6 #> 2367 14534 1233 NA 706bc0ab-7200-47e9-9b09-726110eb83dc #> 2368 18946 4100 NA e1677afe-2d03-4e11-b6af-ba3810720799 #> 2369 14583 1242 NA 6fc3f73e-9c19-41cf-aa95-df4d83e29e9e #> 2370 13484 998 NA 93ff0e6f-fee3-41d1-a913-6111cd9ebef1 #> 2371 16051 1844 NA c7e51d4d-18d6-442b-850d-040411225b14 #> 2372 21494 6494 NA f00ccf29-884e-4914-b9f9-aca0090ee9e6 #> 2373 20185 5226 NA 09b78e4f-e683-4c5d-b35e-35cc0dbbf7e5 #> 2374 19956 5011 NA d1ae3222-8892-49bc-bb3e-0bcd7c74522e #> 2375 20044 5124 NA b47fe0b2-e002-42a7-ab84-4b9e61adc9e3 #> 2376 14895 1373 NA cfc93f5e-105e-4a5e-88d3-f4279893cfa8 #> 2377 20037 5120 NA e2104140-4ce0-42a8-8b00-346b4a9258b2 #> 2378 14536 1234 NA 409d4cac-ee90-4470-9710-ebe671678339 #> 2379 20012 5112 NA 5df36deb-d147-42e9-9059-11cb86d35b43 #> 2380 19799 4985 NA 2b119688-83b5-4d19-acbf-fa2087035fae #> 2381 18088 3327 NA 990a689e-200b-4cda-85db-85d6c3af911c #> 2382 16668 2257 NA 3a29784c-832f-4e41-a4ac-71d4f9ad410c #> 2383 22405 7425 NA 01d96b53-488d-4d98-8623-b2b29c7ebfbf #> 2384 21804 6931 NA 48ef5bfa-7b91-4ed1-ad12-e94c0bc101c2 #> 2385 20810 6012 NA 4afb77d8-4564-469b-be4c-5a8587df8046 #> 2386 19119 4273 NA 0afca88b-83e7-49d6-80df-1f68b21cca9f #> 2387 18923 4077 NA 1a92b0ad-3eb2-4df3-bf02-04c4d9ffe10c #> 2388 18987 4141 NA d5fde14a-1f7e-4db7-ad67-e6ea1cd415e2 #> 2389 19998 5377 NA 7c84bbbd-6bc1-4d3a-8fe9-263b807a08b2 #> 2390 19544 4649 NA ca8791bf-ca6e-46cb-9f79-dcf6283c292b #> 2391 16782 2326 NA b2805ba0-6faa-404d-b0b5-7c8ccce85f3a #> 2392 3617 131 NA f26bd260-a1eb-42ab-8768-bc8ad24e4f9e #> 2393 22408 7428 NA 7483724a-dfce-4d6f-b499-481d37744fee #> 2394 18075 3314 NA a2b2f929-e3a7-4d19-888f-49600cf718bf #> 2395 21230 6568 NA 59eef23b-4c9a-4b8b-b681-6d8e24aa9252 #> 2396 1658 58 NA 587d0a98-7ec5-45a5-adba-8af26e8f256b #> 2397 22407 7427 NA bad1a0c1-7ea2-4898-b5d9-ad1aec45c8b1 #> 2398 15263 1603 NA 16c67c97-ffd9-4f92-917d-ad6124ce1f6e #> 2399 21807 6865 NA 1ea7affb-e5e7-491a-aaa3-55e200b2eb48 #> 2400 19950 5010 NA 383f4814-6836-4766-a297-fc063e8509cc #> 2401 19281 4421 NA ad2a1d03-020b-487a-bd5f-7ca9fbc250fe #> 2402 16830 2374 NA dffa69ad-331e-4f09-ae38-40a5a4406be6 #> 2403 20970 6168 NA c00e0b6f-367f-4cf5-ba11-d23b1aa114f1 #> 2404 21751 6967 NA df2caa7b-29f4-4391-8ce0-b1b711196379 #> 2405 21960 7135 NA 81997ce2-9e70-4014-999a-25ebb405dbf6 #> 2406 20793 5902 NA a296f2fe-7af8-4796-b50a-28ef010d0933 #> 2407 20478 5722 NA c99cb557-3364-4755-a353-82737ba1de6b #> 2408 19668 4750 NA 4f4f888c-08d3-4ea8-ab8f-0ddcf8bf195e #> 2409 19120 4274 NA aecc1809-4628-4c3a-8b2b-c8f2858d2492 #> 2410 20875 5846 NA 754faf0f-40f7-45f0-b23b-6ce990ecaf26 #> 2411 16790 2334 NA c682e8ea-fe48-45d2-af60-682a6125ab22 #> 2412 20963 6171 NA 16da963d-a300-4d72-8e4d-7771196c03e9 #> 2413 14587 1244 NA b228c353-bb1f-4ba8-aa6d-d18ecf297259 #> 2414 18418 3631 NA 2182217e-7580-4602-babb-c73beee0eb2b #> 2415 15666 1728 NA a511a53f-8628-465b-b7ef-79c02dcef127 #> 2416 16400 2086 NA f42981b3-d272-4438-a024-f28277392ec8 #> 2417 18203 3439 NA 658f1215-e84a-4170-aaea-a6e8bacc8ff5 #> 2418 16417 2096 NA 5d03f256-0569-4908-a0bf-5f95325c8be3 #> 2419 16832 2376 NA 1c435ae4-8e29-4006-905b-7fa34f87604b #> 2420 21137 6286 NA e289cb0a-2447-458a-a47b-5f843c0edd3c #> 2421 13479 996 NA 29ac0dbd-2d1c-40da-88ba-36f0d3856d05 #> 2422 18970 4124 NA a80f1b08-3977-48b6-97e0-5991ca26bfae #> 2423 20366 5436 NA ae6a5f6b-20ac-4b44-9d05-b75634aa1199 #> 2424 21145 6405 NA b4f07920-56e3-4e9d-b787-014b2f940b0e #> 2425 14878 1359 NA 226723b9-fddf-45ca-8245-d8cc5442c400 #> 2426 16143 1913 NA 63a656b9-bcbb-44a3-95c8-e8a63660e71b #> 2427 16353 2055 NA 13112f4f-03c9-432c-a033-454870cda46b #> 2428 20674 5767 NA ff214afc-4e6a-48c1-986e-d52271c6ad8e #> 2429 16669 2258 NA d5ba025d-5e9d-452d-8b86-f68a3bff5e22 #> 2430 22103 7027 NA cec656f2-7a0b-4993-9489-7a0cef088c0f #> 2431 18966 4120 NA 3c151ffc-4fd3-4785-96e0-3a257e99706a #> 2432 19907 5040 NA 55414554-e550-435e-a108-6047a9318e0a #> 2433 18239 3474 NA 2967c556-a7b2-407a-8013-cee8d99b41cf #> 2434 16678 2267 NA 1b8414b5-3db8-4e89-8bcc-7ac7f7d0b931 #> 2435 18951 4105 NA 92c77d16-f8bf-4716-bcde-6328838f4e65 #> 2436 16778 2322 NA acb7169f-3ffa-4386-9866-e06af6ed7fef #> 2437 19952 5371 NA eb864600-7562-491a-b7a7-9eb3068dba06 #> 2438 18904 4058 NA 74473bcc-5bdb-4650-8549-8a8a12874cbf #> 2439 15122 1513 NA 436e0e45-f07a-4674-b21f-4fd8e1f24583 #> 2440 19481 4594 NA 09f4ba1d-6eab-4e9b-9f22-a5ff33f0f2d1 #> 2441 20713 5816 NA 987c5e68-21d5-4bcb-a5f3-2e09cc512374 #> 2442 14875 1356 NA 94ee954f-baf6-489c-b50f-3b60b2506f33 #> 2443 18060 3299 NA e8fa43ed-ae19-4603-b69c-a555664bd368 #> 2444 16067 1857 NA e00a7f77-8320-4415-8c71-ba9c5d0240b8 #> 2445 16294 2015 NA 6c434322-0ee2-4df5-a5e8-1a6e5f12285e #> 2446 18949 4103 NA 764df188-bced-410b-ac54-84a86ef125a9 #> 2447 22073 7025 NA ac77e2b6-e094-4d79-a162-2d868b76e3d5 #> 2448 21867 6792 NA 1a8eff7a-1057-47c9-aa82-3dbf3f47a76c #> 2449 22074 6975 NA 9b747474-db7f-4137-a559-38402c828139 #> 2450 19124 4278 NA d2e2b313-6769-48c6-a217-d167f04068df #> 2451 20773 6005 NA 2a86a6b4-58ef-42f5-aff9-d5d979bea6c7 #> 2452 14901 1379 NA 67da5b5c-0db9-4fbc-b98d-7eb8e97b69f6 #> 2453 16789 2333 NA d0b7699f-5e18-4631-813d-2f709ee4b281 #> 2454 14088 1134 NA 294acd0c-63a9-429e-afaa-2bfeb00d7988 #> 2455 19139 4293 NA 8925f38d-5c75-42c7-aa52-e3bcca16a21c #> 2456 18761 3931 NA f1bce91f-ba57-4015-b74e-dee3df872c98 #> 2457 1410 49 NA abd73d50-ce60-47f1-b37f-2f9a05b0d7b9 #> 2458 16995 2535 NA 6f1bc007-d446-48f2-a6e5-58c5e53df94f #> 2459 14864 1345 NA 1b0234dc-a434-4c31-bb41-6457c068a0fa #> 2460 19891 5041 NA 75a74283-5ab6-49d4-bf2f-e6fcaf91ec36 #> 2461 22401 7421 NA 5180ecc5-bbd9-42b6-b227-c5efdb53cf80 #> 2462 18167 3406 NA 897fc741-34bd-4f34-a1ed-125d56805b70 #> 2463 21490 6485 NA e9348fc5-273d-4ac3-9760-462f37c025dc #> 2464 20778 6056 NA e6eb9d50-9231-44ff-89eb-7f7b996e042f #> 2465 18851 4846 NA 0c727216-dadf-41d5-80e9-154ba9261663 #> 2466 14776 1301 NA 09a1fe57-c026-4ca4-b084-48b8ed9c106f #> 2467 18096 3335 NA 45f4b9ae-f1be-454b-bff7-8f808e6f0268 #> 2468 20996 6173 NA e8e8a5fe-00d1-4ffc-9401-9e5cb254afea #> 2469 6489 260 NA 73e133bf-d3f7-4fda-bd25-2fde66cb8ee1 #> 2470 19330 4464 NA 7738fea8-7ea2-4c4c-b589-bca90b070819 #> 2471 16041 1837 NA 42de9d1d-0352-460b-9172-9452414fd7fd #> 2472 19763 4863 NA 5c079a21-ae9e-4b38-a69a-47706fa8dd67 #> 2473 18973 4127 NA 6608fdbf-6c93-47cc-ad44-9da2fda598ce #> 2474 22400 7420 NA 7a52585c-03ce-4b03-91cc-742399b8399a #> 2475 16510 2161 NA f77479d7-51a5-41f9-8924-69526dd078cd #> 2476 16557 2189 NA 8d53ef4e-7d88-40c6-a390-78d166330bb0 #> 2477 20360 5284 NA 72cf3127-3953-4fd8-8049-3de1b6fa9825 #> 2478 17217 2749 NA b040e601-ec40-4757-bf3d-71bf64ef99cf #> 2479 21514 6553 NA e25b6e0d-efa3-4425-bab6-5f846b902195 #> 2480 16834 2378 NA 5827b78b-5150-4ba9-bc46-902428e99a31 #> 2481 21765 6996 NA c6c50d09-f14f-41c2-9eb3-87514f0121f6 #> 2482 20000 5370 NA d1e280f9-6df0-45d9-841e-0cfe6ea081b1 #> 2483 21354 6610 NA c5175598-1392-4eaa-ae62-d99811a0c477 #> 2484 18687 3865 NA 55473843-5bc3-4673-9175-3d7203aef040 #> 2485 16807 2351 NA 92da4f95-8f58-4379-b236-ee4ab8ff5daf #> 2486 19448 4564 NA fa8fbc2f-5160-4aaa-8f86-bbba666368a3 #> 2487 15012 1443 NA bb7f4f60-57a4-437d-9541-a42abb1d1f53 #> 2488 12308 734 NA b070601c-7985-4a1c-b71a-9f72bb5dbc59 #> 2489 20847 6082 NA 945aa5ab-3fde-4091-b360-66c2da384f2c #> 2490 21119 6221 NA eb995f08-f023-4338-bc36-5def4a83f59e #> 2491 19833 4966 NA c2b21a35-81fc-465f-9476-6e5cda608288 #> 2492 18006 3245 NA a3cf95a2-4994-4ee4-a07d-b27004183a6c #> 2493 21205 6565 NA c03a2bf7-49d3-48fc-9062-0a2937a17647 #> 2494 14791 1310 NA 1c1f0577-f9c7-4406-b2ab-b9e42ddb1af3 #> 2495 22023 6889 NA 1a7caa50-2fa5-4651-85d6-05cda9d9b3b3 #> 2496 20556 5555 NA ae0e9024-5df1-4b5b-b928-3c0e3429fd32 #> 2497 20797 6089 NA 7f48c754-002d-4d0c-ba40-8c402f95a7c4 #> 2498 20361 5285 NA 70473218-5ae3-47b4-86fd-151e68f1e8b9 #> 2499 22456 7481 NA 31815cf3-6f59-439c-9a10-8548151da1f8 #> 2500 15100 1500 NA c3bf8d3e-3b2e-4f9e-ad74-c0a684035f17 #> 2501 22119 7075 NA 527dfee0-a242-4dc7-830a-ab7028308259 #> 2502 19063 4217 NA 2ada91b0-036e-454f-83c3-6d939ff584a9 #> 2503 19064 4218 NA 3e2e74e9-18a8-4275-9437-b275db27e2ff #> 2504 20817 5911 NA 917d4304-d039-42a9-9c43-84e3786f105c #> 2505 21496 6554 NA 0e3160c0-d5ad-44c7-8c28-b31c1f6a7e03 #> 2506 19318 4454 NA 5aba3610-ab55-4922-ac46-806ded5eb8bf #> 2507 15974 1800 NA 7b96a836-666b-47b6-a0a7-9dbb0b4c53e8 #> 2508 20932 5872 NA 628a6a0a-4fde-4024-8d7c-28674953d5af #> 2509 21717 7049 NA 3ae9f0fa-c711-4663-80cf-4707856c07aa #> 2510 22340 7352 NA da92303d-1419-4cde-aa52-b120635f364a #> 2511 13887 1077 NA 4f0053fc-5559-4551-bd81-dcd1cdf3a9ec #> 2512 16768 2312 NA 5b496c58-83ef-4763-b1e0-5f052af46b3e #> 2513 20052 5126 NA fc7f8c60-4fc2-45d1-9611-e803dbb1611e #> 2514 20077 5137 NA 4aae1781-1eec-48c0-b41f-e4fee61c3c32 #> 2515 19755 4854 NA 6124c4d4-337b-4926-b3f8-d2feb1c16fa9 #> 2516 21747 6803 NA c90471cc-fa60-4416-9388-5aebb5d877eb #> 2517 19627 4719 NA 7b108d08-f950-49c6-be33-85cb9222e655 #> 2518 13610 1011 NA f7163bae-d4da-4d38-847e-e0315605b9d0 #> 2519 14900 1378 NA 50287cd3-afea-47f4-aa56-98a82aa87cf0 #> 2520 21050 6060 NA f84bf885-d6ff-4fc8-8b6e-64bb3bceb17d #> 2521 18332 3559 NA 479b4819-3377-4255-9156-c1ce82cbf1d4 #> 2522 21639 6714 NA cd6cfc03-9ffc-4a2d-8dd3-7dac5915e637 #> 2523 21064 5946 NA 278a0811-98b8-42d2-96e9-160b7f364ae0 #> 2524 19892 5054 NA 2df83b38-7b2b-4aea-91ee-bfc5974486a1 #> 2525 15988 1809 NA 36da9517-98fe-4258-807d-6d7e4b334c2f #> 2526 22431 7453 NA 4f13ee42-4af7-4719-bce6-60a426036fd5 #> 2527 21521 6640 NA 8de972e7-c997-4444-83a5-10f975d4fff6 #> 2528 20748 5959 NA b2da84c5-e51c-47d8-bccc-888f8caaa8ad #> 2529 21940 6888 NA 27732f2b-2009-4954-a0a0-d29f5ce1abdf #> 2530 19087 4241 NA 2157df58-ca82-46cd-9897-261a80060292 #> 2531 22434 7456 NA b5e33405-ea22-4fb7-97d8-8b324d6c90b9 #> 2532 11382 594 NA f0f60621-a075-41f6-a07d-74fd9e1348f2 #> 2533 12247 720 NA e56569f1-eaf4-473b-b92c-fc5c84cc7338 #> 2534 21136 6296 NA c8d98dc8-ca11-40bc-bd72-7e2f4bd2ba3b #> 2535 15200 1558 NA a0557106-4517-4516-a5e7-d46cba52fe44 #> 2536 19086 4240 NA 02c7bde8-3715-462e-a268-95b3f2e19311 #> 2537 22423 7444 NA fa1bd78e-99e4-4745-9896-cfea01392038 #> 2538 22070 7125 NA 2f471656-9ecc-42ea-977f-0c56756d0557 #> 2539 17512 2993 NA d6ce0b64-9526-4983-8c3c-7f14f2918f8e #> 2540 21069 5999 NA 75f6779f-4f5b-4059-bed1-c79bd2b40b49 #> 2541 22021 7413 NA f48df73d-5d7f-4b84-868b-7cef4d77a282 #> 2542 20379 5668 NA 5fd40b6b-d81a-4a4e-a394-53ed7e58511f #> 2543 16822 2366 NA 538a03f2-ae79-45e0-bb22-01b9a8517e77 #> 2544 22426 7448 NA ca8fe3b0-337f-4354-9010-3951127786a6 #> 2545 15231 1580 NA f6244333-6b6a-4e61-bc2c-cb6ffc2f318a #> 2546 12298 731 NA 2c48a13f-bac4-46f8-b405-7ada72dd543e #> 2547 19908 5053 NA e1a79497-3e4b-4820-99a6-8ecbfd03995c #> 2548 8750 391 NA ecc4f0c1-64e0-46cc-9b58-91c2b215e62a #> 2549 20046 5376 NA 9a4fd6b9-9ddc-4161-ab9a-3013a792c70d #> 2550 15227 1577 NA 186014e2-3430-4510-867f-a7013daf0bb8 #> 2551 16642 2240 NA a1902bda-47bc-4436-9165-2d79620e4030 #> 2552 20894 6003 NA 8bc51884-c9db-4745-8731-20eff25f41b0 #> 2553 16271 1999 NA df483199-088f-47d6-b8fc-1574f74bb4e2 #> 2554 22429 7451 NA 112b95ea-d080-4aa7-bedc-5755c6c6b80c #> 2555 20981 6119 NA 37849d01-7d7e-4a35-8840-e17cacd73d85 #> 2556 14375 1192 NA 9a612961-9fdf-47d0-b7ca-32b55adb1f61 #> 2557 9700 471 NA 94285cbc-7338-4732-b59c-3b1082cd5d83 #> 2558 18825 4865 NA 5c66adc6-62d8-4f29-aadc-11b5ed21495b #> 2559 11767 667 NA cee49408-2e91-487a-a8ec-d3314ebf539d #> 2560 19834 4969 NA 503eb9a7-83ed-4b96-b0f2-7afe4920bde9 #> 2561 16925 2468 NA 9000be32-15ad-4c43-bf8d-79a9c7113cdd #> 2562 20718 5824 NA 812162ea-0b21-4da6-b7c9-383b1e8ab60e #> 2563 17550 3008 NA 4278baf5-f774-4031-ab0f-12a9c7e43c45 #> 2564 15190 1550 NA 949c34b9-150a-4a1b-b884-1fcf1ebaabdf #> 2565 4737 181 NA 22fb2b54-4936-4e8a-a48d-62096c0c9bb1 #> 2566 12982 862 NA de816e24-8442-49a4-99cd-dde7e7c05863 #> 2567 4314 167 NA 41c44740-d0f6-44ab-8347-3b5d515e5ecf #> 2568 19861 5052 NA 15965c39-17be-4338-911a-8f337f48a3ce #> 2569 11932 676 NA 166292fc-629e-4c7b-b7bf-f572ca9eeb43 #> 2570 21788 6885 NA 4b0a90db-f007-4ac1-8542-b531342b9da5 #> 2571 20973 6187 NA 5c651ad4-7aea-46d9-83c3-3d0cc35c7723 #> 2572 18803 3969 NA 7f46a7be-286e-4bfe-8778-d03dbe600ce9 #> 2573 15185 1546 NA 5ec072b3-2837-4cf1-bb4f-ecd873949626 #> 2574 17965 3204 NA f4992e8f-73f0-43e4-a9ca-c83953fe3f5b #> 2575 19032 4186 NA 987fb8b2-98ba-4a01-bd84-d962dcdcd053 #> 2576 19954 5375 NA 4deb42ec-bece-4b00-b697-3caeff8c1997 #> 2577 18576 3764 NA 23557a45-6dc7-43c8-a4c6-f53ae72ff660 #> 2578 18942 4096 NA 410037b3-d7f2-4188-9d87-53bf51fd31fe #> 2579 16795 2339 NA f552cc18-aaf5-48ef-87f1-4791a101e553 #> 2580 16268 1997 NA cc58971d-d24e-44a3-9f09-1b2289e92577 #> 2581 19130 4284 NA a10ec19e-0573-4a53-9a27-5285ce9fe85f #> 2582 22033 6793 NA e39240b4-cac5-453f-b99f-6bbbdd1c9c82 #> 2583 18072 3311 NA 6d9f5816-f0f7-4562-9db0-26b1eb487f68 #> 2584 18901 4055 NA 93ed8c6f-b676-46d3-bf82-6155e89b4a68 #> 2585 20506 5409 NA 2fa75e05-cac4-4b40-8924-dbc9ae0c959c #> 2586 19335 4468 NA d6647491-8a3c-4f9f-999c-823823bd478d #> 2587 16593 2214 NA 5afe93fd-0caf-4cca-83fc-7f405bebfa3e #> 2588 10974 515 NA 2142a164-48ad-47d6-bb27-0bc58c6b2e62 #> 2589 20314 5269 NA 225d9e5e-598c-4b32-9c74-d7df2018500c #> 2590 18673 3852 NA a0498a95-9dc3-4df5-8f51-a1564fb3de57 #> 2591 18896 4050 NA a138f20f-8a41-4d0e-930a-a16b6cb597b3 #> 2592 18880 4037 NA baa61bb5-f8d0-4f90-bbe2-028576b8d33d #> 2593 22430 7452 NA 3513b0ad-2b0b-4e07-a401-54cd04106ea2 #> 2594 11056 536 NA 16e33176-b73e-49b7-b0aa-c405b47a706e #> 2595 20550 5705 NA 50d378c3-a33e-4f30-a5be-7c13bf52ff66 #> 2596 22432 7454 NA 19b027f5-8d0a-447e-8511-b98e4c95f9f4 #> 2597 21675 6960 NA 93c17735-5275-45cf-b3ef-620351c62313 #> 2598 16597 2216 NA c48c21d9-0ae5-478c-ad34-30a660cfa9b8 #> 2599 21138 6290 NA 85e18d5f-8a3f-4b6c-88fe-dfdaaed5554e #> 2600 19922 5374 NA bdb77276-7191-4454-85c2-e1693a33d709 #> 2601 13969 1101 NA fa9d0178-a2a7-402f-ad11-c7bea0b80705 #> 2602 17511 2992 NA e2ba47b5-f503-42fc-86d2-2f6061551a30 #> 2603 22419 7440 NA 2a41d03d-aec1-4821-a241-6fbe1878d3fd #> 2604 20384 5671 NA ab741f46-d660-48f2-a910-774d0514d2e4 #> 2605 19062 4216 NA 1c41b4ac-bec1-4943-b0a3-5b57642faaaa #> 2606 19300 4439 NA d0fa2103-69a1-4ed0-a3cd-4eb8d5e342c2 #> 2607 16035 1834 NA ab49bafe-7023-46ce-9606-9a9823eabee6 #> 2608 22084 6829 NA c87aaf5b-e1e9-4d18-b0f1-f328b646031d #> 2609 22152 7150 NA 099c975d-104f-4bac-9815-52346771a515 #> 2610 18369 3589 NA 3c7b7eef-6c99-4f88-8b1c-cdf93864f2f3 #> 2611 16930 2473 NA b5fb8706-5436-422d-a4df-2d5235b17aee #> 2612 21581 6682 NA aee4f924-aaf5-4351-b503-9fce1ade59c5 #> 2613 18924 4078 NA 6db40c6e-7d09-486e-b80d-1d8008547250 #> 2614 20811 5908 NA aac96096-362f-4254-952a-5b3b04472f19 #> 2615 19259 4400 NA 486d1b54-2f4a-4fe1-8935-c8659a8dc942 #> 2616 17994 3233 NA c909532a-693e-4e8f-b853-fbf41037c100 #> 2617 16194 1947 NA 016d31ec-9b32-47e2-801b-9724c0a30f62 #> 2618 20921 5966 NA b84b99f3-5fac-46ed-b892-5800159edbf9 #> 2619 16812 2356 NA f024c29d-c4e6-4f23-b8e5-c7788bc87e47 #> 2620 20940 6125 NA dcbe3642-aa52-43e6-8f4c-4b9809377c4d #> 2621 22422 7443 NA a78206af-6d78-4b4c-90e3-dc4bd62ac80b #> 2622 20866 6048 NA b7d42dc5-dedc-4cd9-b5a9-77cd30fd7ea7 #> 2623 20045 5373 NA 2a97c476-70e9-479a-be0b-11ebaeee11d3 #> 2624 14096 1136 NA 3a2a4022-a54c-4325-b521-e46e460559ab #> 2625 21880 6887 NA ff0950aa-357f-47b4-b4dd-d4374413ffc1 #> 2626 20380 5615 NA 7bce07de-7179-459c-97a4-279fb53641a2 #> 2627 21310 6379 NA bd12a2c0-e6ce-460b-9f09-27b75c306608 #> 2628 11545 623 NA d53cd589-73d6-4aad-ae69-e979670a0d14 #> 2629 14988 1428 NA 496680c4-2432-481b-883c-6f311da3a4a3 #> 2630 21060 5936 NA 3b69032b-a321-4da8-9303-9d21a1970de6 #> 2631 16875 2419 NA 9be53b35-e7fe-4f28-97bc-09d87f782ced #> 2632 15758 1750 NA be449b4d-799c-4045-8e9e-e8a7fd7c2cc8 #> 2633 22425 7446 NA 397901eb-5589-4f0e-8c02-f50509e22f3c #> 2634 22154 7152 NA e44cc736-fe98-4b80-a138-4ebc5f087335 #> 2635 2982 110 NA a527b7db-0b52-4379-9e4c-2e08c1fe1bed #> 2636 21360 6581 NA 8f442456-427c-4d96-8596-a7928074a094 #> 2637 17123 2655 NA b0b804c6-b75b-4497-8f47-86ce924f862a #> 2638 15327 1626 NA 401c4b1f-8302-433e-a84d-9d3101a30f4b #> 2639 19862 5030 NA 60d5e71e-e127-463b-8e6b-26a7dac3db76 #> 2640 15206 1563 NA 2c8e1238-0125-484e-b4f2-c0d08b5ef952 #> 2641 20297 5673 NA 84b2d5bb-4d5e-4661-b9e2-b3049f3d1c03 #> 2642 21578 6679 NA 8471f3e4-b507-4554-afbb-df333694360b #> 2643 19842 4978 NA 0813c5eb-608c-4a6d-8bfb-ed3538767e90 #> 2644 12951 855 NA b6782b61-89e1-4a9d-9ad1-7715eb6ff628 #> 2645 19066 4220 NA 29c53cbc-9d94-46af-b46a-674f9c1e5c79 #> 2646 20862 5928 NA 55d7adb4-be58-4c59-9a6e-1ceb73c10c4d #> 2647 21484 6461 NA 56b26b71-8f1e-416c-a7e5-62cd67c98f4b #> 2648 14590 1245 NA f5fe1cf6-ce57-4d6f-b2d4-6ebc3a18e336 #> 2649 14010 1112 NA 77c36756-9d3a-4746-bba1-8ff32542cf74 #> 2650 16171 1932 NA 0d038341-cd66-4651-93c4-e76c6d218135 #> 2651 21323 6378 NA 010806af-e6ba-409a-b7fb-a119714238f6 #> 2652 10067 497 NA 9aec0e35-cef7-4093-8de6-49868ca8644b #> 2653 20141 5206 NA 927dfc54-48f1-4566-a58d-a1351e8ad704 #> 2654 13799 1049 NA 5812204c-6dae-4450-8011-99e0f72864ac #> 2655 18868 4026 NA 2a78e2e7-4ef3-4cdd-85e8-0d254b65143e #> 2656 20055 5128 NA ddff375b-365e-4af1-b9ae-58d03b1b1195 #> 2657 21845 7064 NA eb3c219d-6489-4f2f-a542-bdbf7423a325 #> 2658 19065 4219 NA 25cc3585-6194-4786-968a-2600db46b6c6 #> 2659 17959 3198 NA 87c481c7-7414-43cc-82df-19ca0c2ae22e #> 2660 18957 4111 NA 02779042-2b4e-4fa9-b598-364fe01b523a #> 2661 16441 2114 NA 3d94860c-82db-43fd-aa99-3b72390111a4 #> 2662 15197 1556 NA a2270ced-ae01-4dee-a177-9dca7c5b20cc #> 2663 20001 5369 NA 7f969cc9-59cd-43e9-bcd0-c1885f0b18b7 #> 2664 22022 6844 NA 34f2abac-446d-4f6e-b857-5ca54918a4bc #> 2665 16172 1933 NA 1f301468-0e6e-4a38-9c73-919796ebaca8 #> 2666 11398 600 NA 0dfd5d3f-ebb5-4efe-8df1-2ebda0e5185e #> 2667 22420 7441 NA 413b48a9-4af4-4eeb-875c-44ad76b519f5 #> 2668 13730 1031 NA 1306d6f4-5de3-4bec-9c86-3e5ab8e2d081 #> 2669 20732 5949 NA 9f102200-82e7-4fce-a033-2a06d16c35fd #> 2670 16820 2364 NA 1f7fb52c-0320-4a3f-af26-608e99699fb3 #> 2671 22421 7442 NA 3c136bfa-d96a-4b39-966a-43973010c5b0 #> 2672 16903 2446 NA f22b34cf-6ecf-4522-9c77-1da275dfda7d #> 2673 21569 6662 NA 5aab93f1-bc81-4d83-b105-d579a14eb349 #> 2674 17005 2545 NA d0f9112d-2496-450a-9fc5-d2d01b4d2454 #> 2675 19296 4435 NA b0719e3d-199b-46e5-a2b4-1091f6fd5c0d #> 2676 21676 6834 NA 3d2f2c64-3d4e-461b-a3e7-677f74e6c5f8 #> 2677 18990 4144 NA e4f25a37-74de-4bfb-b6c9-f50a4fab0b87 #> 2678 22418 7439 NA 62d557bc-ee99-4703-83f8-e7b1ca0c89e7 #> 2679 18879 4036 NA e21e9081-44aa-464b-8d3e-83918d48b921 #> 2680 20372 5289 NA 54c60acc-65ac-4e63-a988-697ee26e862a #> 2681 19732 4828 NA 4e87e1a1-8b89-4738-a527-87eb0663c35d #> 2682 18361 3582 NA 958c9833-2e55-411a-8e0e-ecc229bbeb14 #> 2683 21042 5859 NA a9e580f2-1fbe-46fb-887c-c84089b507e4 #> 2684 18209 3445 NA fcfa9d4b-3e09-46ac-b4b6-77d70a5f304c #> 2685 21734 7496 NA 5e63e674-adf3-4f4e-929e-4a0ff2cfb1df #> 2686 17290 2822 NA d6d41a89-a8af-48b9-bf75-561de99a1d87 #> 2687 18422 3634 NA e0a31d02-9d1c-4dab-adb4-a5d9bbee8b36 #> 2688 19280 4420 NA 6a8b0081-6ac5-4eb7-8840-8fd633568e78 #> 2689 19134 4288 NA fb69c7cd-75b1-4431-8648-daec4817974a #> 2690 21945 6877 NA 446f9da4-8ca7-4552-9674-e0391ae2a2d6 #> 2691 16811 2355 NA c63eb787-fa1f-406b-82a1-2eed0a65b58c #> 2692 18972 4126 NA 5ff63fe6-3b33-4f0d-bc51-d5e84d862b08 #> 2693 16249 1982 NA 76c630cf-0fd3-4210-a73d-9347da9d9d66 #> 2694 20080 5368 NA 4296dd5b-261c-4c64-b1e2-e2afcda719c5 #> 2695 19971 5082 NA c0520c25-b89b-4f4b-a905-dd0c5612cf88 #> 2696 19254 4395 NA 46e11bbc-8d8a-4b32-96a0-d059472b8fc6 #> 2697 20395 5388 NA 3f178f8f-97fc-491c-ae5a-4c2544e611ef #> 2698 20885 6070 NA 4bbe8ab7-3ae2-42a6-a471-fd2b344843a2 #> 2699 18013 3252 NA 81ba31db-e21a-4944-8d0f-4e12cb83e3c4 #> 2700 21923 7136 NA eff8e3ec-98e4-49c8-b865-436e3abb0870 #> 2701 21044 6030 NA 198b8c48-abe7-4fcb-9aea-6519fa650b18 #> 2702 16072 5792 NA 186a4bda-d3b3-48c1-8ed7-cb4ad1014062 #> 2703 19955 5365 NA d187953e-102f-4f78-b840-79fb385fa15a #> 2704 19216 4359 NA 8e06b4a9-d210-465c-80b7-9bae20dc64b2 #> 2705 18943 4097 NA 2afc82df-1048-414d-bef7-1692198cedde #> 2706 21875 7024 NA 63758554-7225-48de-a553-c43c03419c49 #> 2707 20956 6124 NA e3601423-c3ac-4013-bbe9-3478e2b7e1dd #> 2708 22104 7030 NA 8d617c67-6e6a-4afd-b5c8-f98dd744c36d #> 2709 21444 6423 NA 39e4f09f-54bd-4d2c-9d71-c6e35d1bd0b0 #> 2710 21403 6400 NA fe9c0458-1a1a-4e88-b974-2de7426fa520 #> 2711 22092 6782 NA 9947409c-4a34-45f5-99a1-aa6daa13c430 #> 2712 19077 4231 NA fe1a1b0d-1d0e-496c-8777-2b5aff1f7231 #> 2713 13166 917 NA a25f92e6-6e67-4463-a32f-77976807b3d8 #> 2714 20827 5935 NA 38bf12bf-5a77-4b2a-9d2a-e63008fe8be1 #> 2715 18069 3308 NA 0777efdd-14bf-4561-bbb4-20f926fe115c #> 2716 22393 7410 NA 4faa0d20-a129-4bb4-9fb1-10690c00641c #> 2717 19841 4976 NA 0a1be8da-5839-4768-bfe5-9fec74908268 #> 2718 20002 5366 NA 8442c8f8-7fbb-4a0b-8407-355c2dfdf72c #> 2719 19373 4501 NA 87c4b182-e4bc-4f35-97ec-8537a2665875 #> 2720 18875 4032 NA 5ba11bd2-e764-4dea-98e1-dad01a21cdd3 #> 2721 17451 2964 NA 710f3162-8649-4eba-a707-1e6ea0cd1577 #> 2722 18112 3351 NA a12890df-5475-4689-895c-6b54abc71b1f #> 2723 21112 6215 NA 0a3aad9f-54db-4f86-92d3-c2faab45c046 #> 2724 16766 2310 NA 9aac7466-6718-4c40-9431-e51a3bfa0ab0 #> 2725 17940 3179 NA 91135683-4a52-48dc-9f1d-446502308e52 #> 2726 14867 1348 NA 058c99fc-470c-4579-a165-03e043335cc1 #> 2727 20248 5460 NA 622c2cf0-a29e-4943-8819-f9dc48f3d7a0 #> 2728 15113 1507 NA a76abacb-2309-477c-b075-ec05ccf938ae #> 2729 19132 4286 NA bb4f4ea1-d62b-4a60-a597-6fbdf8f481f4 #> 2730 18279 3513 NA e7b9abe1-2a5f-4029-90f5-7fd174750093 #> 2731 18873 4030 NA 4217a140-cd83-4b9b-8493-b5b27688d055 #> 2732 21207 6307 NA fceeeac9-470d-4864-bc19-36c5d03013b0 #> 2733 22017 6937 NA 5c52edd1-7566-483d-9564-03c21438fb29 #> 2734 21450 6472 NA 5ce0fd7f-bb8f-4d0b-a995-1473e148d45b #> 2735 21120 6220 NA c727b9d9-9776-415d-953c-9ae046e10a05 #> 2736 13731 1032 NA 7ec15a09-9237-43cc-9401-fb76cc418022 #> 2737 4895 187 NA c8af316c-0e46-41ab-bce5-e63a1730c356 #> 2738 16690 2277 NA 14656a50-c687-48e0-a2d9-819709e3ffa3 #> 2739 11963 681 NA 155b36fd-7287-4cf5-a065-6adc74fa866a #> 2740 15112 1506 NA 55e1ecbd-96c5-456e-833b-9cd3f046f3fc #> 2741 17179 2711 NA 2c259733-ec2c-4e3c-bb7b-34dc0d37dc34 #> 2742 20053 5127 NA d2023f5b-f73b-43ad-a816-f10dadfdfaed #> 2743 21809 7013 NA d446443f-130c-4bce-a300-a15cf66f27f1 #> 2744 6739 268 NA 2fda010a-8c62-4c07-b601-4ba03f57e6af #> 2745 13791 1048 NA a212c5d8-67f8-48b9-99be-2c121ee56366 #> 2746 20863 5889 NA 6cf9a842-dc3f-408a-887a-97b0b07d4289 #> 2747 18464 3664 NA 260e8f87-1d08-4c69-8e2b-afa825c1a68a #> 2748 18073 3312 NA 697200ea-cabb-40b8-aeac-e52763310306 #> 2749 18375 3594 NA 86363c46-567e-41d6-a59a-3fed9ca64591 #> 2750 21861 6945 NA c0a8a5d0-583f-457a-9d96-70027d3f69e7 #> 2751 16794 2338 NA a9c41c5b-0dcf-40cc-a76c-644307f2f2df #> 2752 17111 2643 NA 6e91b25a-4bf4-4a53-a328-69d3e7ef86c1 #> 2753 19945 5312 NA a54039fe-c6f8-4a25-82e8-80ce45db9a67 #> 2754 19894 5027 NA ac8909fd-d860-4c28-884f-291ff7cd370e #> 2755 22008 6862 NA c8fc4151-7d5b-49d3-b269-e5b2b1246736 #> 2756 20320 5683 NA bb414aa3-f682-426b-abec-042edf34296d #> 2757 19022 4176 NA 94710841-1b2e-4309-82ff-d7a00b4293e8 #> 2758 16419 2098 NA e15a26bb-db24-4e5a-b3a5-cc4d4eb4f0b6 #> 2759 16458 2123 NA 4c22d0dd-3f8e-4abf-84ca-7f08c046e3a5 #> 2760 20392 5430 NA 5e8ec29b-9769-4071-b9f8-3722cd138fc1 #> 2761 20174 5233 NA 14683736-9d8f-4e99-86c4-a778d343569c #> 2762 21955 6919 NA 309b8104-8407-4365-989a-f726251714a7 #> 2763 19067 4221 NA 2dcc8e56-ac32-4774-a011-b1e65ca73786 #> 2764 16656 2251 NA b24625a0-d402-4d59-a778-aa4b073bfe5e #> 2765 19982 5103 NA 870e89e7-018a-466b-adff-d0fe872b3e20 #> 2766 18094 3333 NA 02fc59d0-8a66-431f-97fc-21fdc096eb14 #> 2767 19579 4678 NA 2aa9cc15-bd17-4e53-bfcd-17a2fb1a2170 #> 2768 21742 6906 NA 7bb0744a-c93f-401b-9091-2a34072a40c2 #> 2769 20376 5293 NA fb815f81-3759-4194-bff9-1982fb2dd9a0 #> 2770 20873 5927 NA 7e8c4641-2beb-4213-ba22-69fe0307005f #> 2771 20529 5432 NA f4f11bc2-2fe6-4da8-a83c-63085788e789 #> 2772 22090 7078 NA eb626cc4-10ec-4385-933e-eea81e2dbfbc #> 2773 20789 5884 NA d3cc6f89-56d8-45e9-87f0-3a1a56f97bc6 #> 2774 20782 5924 NA d6f5ecdf-be55-430e-9370-0ea608395dad #> 2775 16728 2291 NA 61194d09-1caf-4bd6-9ff2-a6b1601a1839 #> 2776 20250 5250 NA 17f52030-0a86-408d-b7e3-194ed4374fbb #> 2777 21755 7407 NA af534c7d-791e-4b7f-900d-2d8fd47c0d2a #> 2778 21400 6402 NA 4a213e4e-b0ba-4124-833e-33c528bd5908 #> 2779 20328 5275 NA e98ce252-583a-4c74-a718-d38f1ba5793d #> 2780 18080 3319 NA bc175901-4a1f-4132-abb4-e49cc7d35e12 #> 2781 16629 2232 NA 766bff49-4d79-4e44-a53c-ba9f8714b7f6 #> 2782 18186 3422 NA 93eb4e28-a809-4192-82dc-783ab472323d #> 2783 423 12 NA d503e3cf-861d-4b06-8de8-f66b1b72a3bf #> 2784 17821 3074 NA 49606a1d-e06e-4cde-8528-f1adca8bd5fa #> 2785 16681 2270 NA 30fedd72-bf59-4a35-9aa9-dd01b1122c09 #> 2786 20636 5723 NA bffc773e-0286-4c48-933f-17ccd9c805d6 #> 2787 21274 6576 NA ae34c85c-a174-4f6e-b11a-f3b56e3c230f #> 2788 21154 6414 NA 8ae7ee0a-772f-441e-be2e-45508751d44b #> 2789 20546 5805 NA d06b5a20-97d9-477f-bd3b-bb454575c8a8 #> 2790 20814 6080 NA 2ae2aec7-ff82-4d2f-85ad-bba52ac09650 #> 2791 13838 1055 NA 7e3c0631-1bff-49af-b6bc-9c66c59a579d #> 2792 21146 6607 NA d80bd709-da27-4f3f-884b-a1e420191453 #> 2793 16545 2181 NA c1d07724-541c-49e3-bfbb-6843786de72e #> 2794 20377 5614 NA 8c2d4bf5-e654-4a8b-a17a-f81d6aebb030 #> 2795 14923 1393 NA dadcbaf3-cd13-43dd-8b7a-9f81db468872 #> 2796 19936 5319 NA 0e20c25d-437d-45b2-86f1-73bbd2d22c0d #> 2797 17087 2619 NA 3a3a069f-906e-4fa5-94ad-4cfd4e47b1e8 #> 2798 21292 6360 NA fd8d401a-0c57-4078-a29e-2ad3b07e06ad #> 2799 7509 303 NA 7f87c105-e608-4911-8897-31cc5a443175 #> 2800 16150 1918 NA 00eb19cd-bd8f-4f2a-98e7-a718d50ad66a #> 2801 20319 5600 NA 4db7ca4c-e0b3-4652-b311-6711c816c96c #> 2802 16465 2128 NA ed6cf80a-b7d1-4a99-8a29-63b5c620bcd4 #> 2803 20303 5472 NA b9d781a5-8049-48d8-a2eb-9b7ef61f22ec #> 2804 21555 6589 NA e9596e01-6469-4245-b5f9-d68a6718e4a4 #> 2805 17506 2991 NA d33249f0-02fb-4c18-a73a-af8930ad27af #> 2806 20354 5562 NA 53425600-c59d-4e89-867b-86affd42c13d #> 2807 19174 4321 NA 45f92801-156d-4488-a164-b9e527a6b72d #> 2808 21193 6281 NA 778bde7d-c328-439d-a2ac-7f9d1ce23df9 #> 2809 21438 6541 NA 99fb51a5-1ab1-4818-90aa-f0c10944067d #> 2810 19193 4337 NA a1cb7e9f-cd33-4c3f-9321-0c2258750eac #> 2811 21159 6559 NA 95abcdcb-16c4-4a13-8b52-ecd499c25c07 #> 2812 14979 1419 NA a6025030-596c-4829-9138-8281df21d841 #> 2813 20299 5770 NA f1decd46-ab7c-4ed9-a1ff-844a63bb091e #> 2814 19515 4773 NA 4454ebd3-84f9-40d1-8d7d-8917929b6af5 #> 2815 20551 5592 NA 5f642a99-fc5b-4cae-b23d-8d043681b264 #> 2816 18314 3544 NA 386e226c-faf0-4336-82f1-9e57d76ed617 #> 2817 16246 1980 NA 1818c219-44ae-4cd4-b8fe-5d93e596e936 #> 2818 21455 6445 NA 9ca42d97-d764-4446-b69a-a76fb7b5363c #> 2819 20285 5482 NA c3d1c1bd-0552-405f-9fe4-b99925e7ec15 #> 2820 9392 460 NA b1674df8-2270-4ade-a168-00159259c0b8 #> 2821 19083 4237 NA db4eadbd-ef43-444c-9e33-1ee781dc9965 #> 2822 13236 929 NA bb6c7928-54f1-43bd-bf14-f2645644dda9 #> 2823 19628 4720 NA 2cf86b24-50e1-4047-83cb-afd82b17aa91 #> 2824 15234 1583 NA 38709da2-bd62-45f9-a7cd-f209879aca81 #> 2825 18165 3404 NA b8fa8d21-898c-4718-9b4e-f512c6414b28 #> 2826 17973 3212 NA 3ade957d-5c6f-4f8d-8d56-fdaae1753aa2 #> 2827 14631 1254 NA 8cd557fb-94df-48c2-8665-198e5c8be20b #> 2828 15096 1498 NA 2ba5bdad-0b7c-4637-89a3-5b7b34d215b0 #> 2829 19108 4262 NA a3012bb8-118f-41f9-a010-e264499ff750 #> 2830 12681 784 NA 4f799675-2b27-4437-9acc-bc4e0c73ef0f #> 2831 16542 2178 NA 3f9d4b4d-2c3d-417e-a95b-714520b309be #> 2832 20594 5596 NA 3e310944-48c8-4d57-8e44-2a76e789980f #> 2833 13949 1095 NA a2015dbb-fd0b-46fc-ad19-eb387605f244 #> 2834 14948 1404 NA e2ef7b61-cf9d-47ab-927a-77759412ceb1 #> 2835 9664 466 NA 1e3967fb-21cc-43b8-9f36-1c2e3b280cec #> 2836 14020 1115 NA b2e66f2f-5b53-4e72-bbd6-83c948f3b7de #> 2837 21073 5998 NA 21f0649c-8f52-4837-8d63-baa836bbf58f #> 2838 16841 2385 NA b381794c-a1e3-4659-9ae6-766d3d943909 #> 2839 21188 6255 NA 73cdb8ae-7e5b-4025-aee5-6891ed3500a1 #> 2840 17001 2541 NA 8796d7af-c72c-4a1e-9665-677afd849a52 #> 2841 18400 3613 NA 812c5dd0-4da5-498e-bf8c-4efdd885973a #> 2842 14721 1277 NA 08b0d908-ad25-4b05-8b44-8c60eabb76a8 #> 2843 19231 4374 NA 0d91f918-0ad1-42c7-9eff-adecc72ca442 #> 2844 20349 5471 NA 40002ab5-a6c3-4ab5-84ac-6502c8f3e904 #> 2845 20614 5730 NA d00ac1d2-dd0d-4362-bfb3-29c9f29d2671 #> 2846 14793 1311 NA 588022c3-f9c6-4f30-b4ea-a264f99fc997 #> 2847 20692 5795 NA 11ed92b3-c1d1-46e9-87d9-387fd3280e4f #> 2848 19294 4433 NA 695d16fa-1c4e-4ce4-9d2c-0e117b4fa577 #> 2849 20671 5764 NA 5c6f3e4a-dee5-4aae-a128-14d638293a75 #> 2850 6078 242 NA 7979b613-6dbf-4534-8166-6430433c1ec3 #> 2851 17010 2550 NA 4f260130-570b-4a37-9f17-193b6c9cc025 #> 2852 17860 3108 NA d2e89432-b9e3-4beb-a795-f0e9f6756efb #> 2853 16916 2459 NA c0cfe76c-0633-4b6b-b282-02ca9911cabd #> 2854 19625 4717 NA 3e5858a5-d0b8-44ba-94f0-e341b1139676 #> 2855 6687 266 NA 85a051d3-3f76-411d-a59e-82d04a971c3a #> 2856 21509 6497 NA 8ed1ce29-8bbb-417b-9766-5de8fdfb4606 #> 2857 15105 1504 NA 8076f480-6c59-4aa3-8e19-71a9d5227e4b #> 2858 19451 4567 NA 7e4cc74a-0ae2-422f-ab7e-dc26fc116d92 #> 2859 18526 3718 NA eee79103-9ded-4a79-812b-b9b18da20135 #> 2860 21479 6431 NA a69f9855-327c-4618-bdfd-cd913b31904f #> 2861 20918 6073 NA 2ded061c-1061-4c92-b417-c6ef04134c8c #> 2862 18515 3709 NA 0d50cb7b-d179-41b7-b4bd-acc4c05e2d8a #> 2863 20397 5350 NA 6eae8044-47a4-4cd8-9c4e-6539afdf3837 #> 2864 16660 2253 NA 101b9211-4f92-4024-8978-b4df2eec3c74 #> 2865 16214 1960 NA 02eb6a66-8d0d-42a4-a2c9-10e028908910 #> 2866 19585 4684 NA 57d6fd4d-29e1-46cf-a3b0-601cc5b3d48d #> 2867 14144 1145 NA e0d47951-fea7-4f2a-a936-f4d758ea6b83 #> 2868 19743 4840 NA <NA> #> 2869 21500 6624 NA 3461b2e5-e015-4f0f-a2a4-a5116732ca98 #> 2870 20216 5518 NA dbe9a91f-bc71-48a2-aaeb-8f7f3d3fec14 #> 2871 13472 993 NA fc309bb0-d8f9-49a8-b2d3-5c6eea4dec24 #> 2872 18511 3705 NA a4f5b5d2-e56f-45e4-b448-ce8ac8b77706 #> 2873 19133 4287 NA e8e8cc9e-678e-4da1-8a23-cb53f15a9b9a #> 2874 17495 2988 NA 075a78d5-72fd-440e-ae25-f22b57835ec4 #> 2875 20365 5435 NA bb4823e2-f2d4-4910-8528-a762f8db449b #> 2876 19532 4637 NA a24108bd-87b2-47c2-903e-d38e35a02652 #> 2877 5916 235 NA 4a69f085-8bef-4b3c-a66e-cab65b3fcb7a #> 2878 18594 3781 NA accab0d5-2f39-4a5c-a595-c029cb6a9c05 #> 2879 21374 6630 NA 4990de3e-553a-4cae-9ce8-c3d1f4eb6bbc #> 2880 19047 4201 NA ae269fa8-85d9-4d95-b0e2-6d0451dd9425 #> 2881 21058 6042 NA 0553c32c-4b9d-4ea9-811d-6d58c1985c9b #> 2882 19696 4820 NA fabca6af-000d-42a9-8a90-524f401a9774 #> 2883 13070 888 NA 036fd3fc-e7a0-4f75-9019-8a5badff5e5f #> 2884 20446 5400 NA 034cade9-af0c-4c85-b5c6-9d6ada777dcd #> 2885 18294 3528 NA b2ee8205-9bb6-41e6-814d-40433673e172 #> 2886 18340 3565 NA 14d50779-5b08-44c0-9ae1-6f05b1b8a4f9 #> 2887 20324 5604 NA 169612b8-67e4-4b1c-bb0d-c73967ac583e #> 2888 18657 3837 NA b9523f29-adfa-4382-98f2-611c590bb526 #> 2889 19092 4246 NA 28270bed-0130-4ef3-aee9-c7069a662c46 #> 2890 20593 5595 NA 8564968a-505e-4954-81a3-3d288204cf91 #> 2891 19007 4161 NA d461a676-a2f4-4e26-b851-60af14b00ca7 #> 2892 19243 4386 NA db7c756b-a340-47fa-bdd5-5556fac68d20 #> 2893 19607 4702 NA b8e9269d-2310-4dcc-a225-6bcf47d8e5fc #> 2894 18708 3886 NA 08770f4a-4b29-490e-b76a-f60d87fdc414 #> 2895 20531 5447 NA 976fdc88-10c2-469b-8ee4-c96de6805339 #> 2896 19305 4444 NA 7b378e5b-6414-4bc2-8ee8-c196d2ed7d78 #> 2897 16098 1879 NA 6d9fad01-7167-4291-9523-3f72d6837d4c #> 2898 20725 5832 NA 655f87b9-e129-4271-8b90-8ff3c9b9d4e9 #> 2899 21512 6499 NA f2d31944-cc46-46e0-bdeb-5cd99ab366a4 #> 2900 15086 1488 NA 113045ba-c7e5-4a91-a089-bc1bbcf55008 #> 2901 16477 2138 NA 5161ce0c-a12d-4daa-9176-eb9edee80c37 #> 2902 13718 1025 NA 56e7b803-c110-4ff8-b097-7e3a7e7c0a9c #> 2903 21582 6683 NA 2b76130f-5a38-429e-a620-9c5b1cd557b7 #> 2904 15041 1459 NA 42cbcd13-4fbc-4cea-905b-85d2c0b0ff55 #> 2905 4122 156 NA a2907a39-139b-483f-8369-e278c26a6951 #> 2906 20625 5713 NA 47abba7f-63e6-41e5-ac8f-9b3f274db595 #> 2907 16882 2426 NA 207d740a-6c64-449a-bd24-b90aa85934d3 #> 2908 16068 1858 NA ebfdad99-5262-4d16-9024-85583947d544 #> 2909 20461 5480 NA bc41be9e-edb3-4582-b2eb-c7177dd6d979 #> 2910 14381 1194 NA 2023386f-584e-4cd3-b4e6-491cda3fee31 #> 2911 18578 3766 NA 1413a204-0c2e-40d4-b1fe-15ada63dfb4a #> 2912 20530 5433 NA 98649d6d-839b-48eb-a92d-e57f82807841 #> 2913 13104 897 NA 221abfe3-f41c-4c1f-aa88-ca06fc57ed8e #> 2914 17229 2761 NA 3f05e230-38fb-4caa-b488-69e034ecdc03 #> 2915 18391 3604 NA 6a85f300-518d-4c97-860d-c69713649c58 #> 2916 19490 4601 NA ac65cfa3-1db6-40c1-a3f8-563767d599ef #> 2917 4701 180 NA 5927b542-db0f-445f-b6cd-eb8c9e80c427 #> 2918 17353 2885 NA 1bba6a5c-9759-4559-a6c3-4b2ffffa1ab8 #> 2919 11731 657 NA 69d9c13c-2293-4eed-ae35-01c90dd45c1b #> 2920 16803 2347 NA 716c039e-a1c7-42f7-87f9-ff414df726d3 #> 2921 20022 5326 NA 30c9d379-80f5-4d53-a05f-2aca8c208e8f #> 2922 15437 1662 NA a486fc4b-e475-4ff2-b22a-f454c266819a #> 2923 16372 2068 NA 10af66eb-88ac-456d-8d47-d7c1e19c8b30 #> 2924 16844 2388 NA 86476721-3f9e-4ad1-8c7a-40be5a43e602 #> 2925 21284 6614 NA 5661762f-9cf4-4cc2-b9fe-4cbe58f4ad28 #> 2926 9169 441 NA 9dc422e6-f4ce-4bc9-b8bc-7ff946b51a8b #> 2927 20427 5635 NA d6f6362d-4e7d-4278-8471-780da7a203a7 #> 2928 20313 5421 NA 5f55d5e7-1ff5-4ace-830a-920fe46acb88 #> 2929 17281 2813 NA 20da5dae-7faa-42d0-8b97-0ce3e3beee43 #> 2930 18188 3424 NA e5bd7067-d9ac-4aee-a073-3f345cf8191c #> 2931 18821 3986 NA 6775c8ae-1966-43c6-a61a-147ea5d112ff #> 2932 21019 6054 NA 5bb30e2d-868a-4597-94dd-0e0f6ab76d66 #> 2933 20254 5679 NA 31ac1b75-5119-47b1-9ca0-5b8c329c95b4 #> 2934 18122 3361 NA a0b23166-6964-4d52-a7b4-9705b61a7e56 #> 2935 17990 3229 NA 342fe758-e8d0-4baf-af71-1fa568197837 #> 2936 16551 2183 NA 4c0a966e-797d-4e60-8ba9-a67b5749ec5f #> 2937 16137 1909 NA 87dd051c-c8c0-4c96-bec7-d342f5ba4797 #> 2938 21416 6620 NA 60798c13-45d8-4a6d-b04f-0afe219e3cbe #> 2939 1650 56 NA 16340de5-372b-4c20-953f-07a0fe26be69 #> 2940 15199 1557 NA ed34cf85-1e5f-4967-89b0-3ff70e5555fa #> 2941 20086 5159 NA 2238219b-a0bc-464f-b83d-ff902e65bb87 #> 2942 16577 2204 NA 5e12087c-579d-4ab8-a5b8-4d6b89331337 #> 2943 2556 95 NA c881b179-070d-4289-909f-4d3594abbd79 #> 2944 19362 4492 NA cb06f6d9-def7-497f-b81d-45dc84d095af #> 2945 16823 2367 NA d3c47b87-1554-4afe-ab8f-d5e801706fc3 #> 2946 20486 5694 NA f4c38645-25d8-4046-918a-9285328d02ba #> 2947 21148 6226 NA cc8a671b-bf32-4bd5-ac4e-d294feebe3d8 #> 2948 16924 2467 NA e0b78e61-b0b9-4115-95f5-ad8d6013d685 #> 2949 18090 3329 NA 94b57778-d6dc-47d1-b7e6-6d844bccdbe8 #> 2950 20666 5758 NA 9be29984-4ae2-4ed7-9cf3-7ec32e7be408 #> 2951 19474 4587 NA 980aabf5-3127-4b80-83e7-ac91327e848e #> 2952 20307 5579 NA dde27047-788e-4b68-acfd-d0f241c6fba2 #> 2953 20558 5451 NA fcd3369e-e1e1-40da-afb6-d8296a1b89a3 #> 2954 16374 2070 NA c42dbe37-e779-489c-b5ad-c5749544a2bf #> 2955 17247 2779 NA 972d6237-1b3b-4b6b-a789-b5ca8391ed90 #> 2956 18252 3487 NA 337a330a-331b-4901-b07f-c3582586c2be #> 2957 11402 602 NA 74b40266-cab7-4c5f-9f72-b560f7457a55 #> 2958 19346 4478 NA 0b36513e-6dfa-406b-9198-619d090e6e8d #> 2959 18491 3691 NA 74940b12-6b27-496a-9113-d9139e38056c #> 2960 19270 4410 NA d29c218d-72f8-4351-895b-1a47554fe580 #> 2961 19697 4789 NA 9a2e65ef-64be-42f2-941c-863cee5e910b #> 2962 16675 2264 NA ff05fdc3-e3a4-4d18-861e-5b1f8553d773 #> 2963 20132 5686 NA 940cfc9c-4420-4ba9-8ae1-a7db9f04c80b #> 2964 11096 540 NA 06ed4b06-29d4-49a4-8bba-1bb63184255a #> 2965 20685 5783 NA 48c9c22c-6903-455d-bcaa-9562b440b690 #> 2966 21189 6256 NA b9d69750-a1b9-4b59-a679-4900c672cc97 #> 2967 21522 6641 NA 3e75960b-f28a-4221-8800-fde346336b0f #> 2968 20431 5578 NA 4ec41407-aa4d-4193-af06-b9795cb9aecc #> 2969 20429 5658 NA 5d61b458-9b4e-4016-9983-7add180b698d #> 2970 21553 6582 NA 95058b9a-e9a3-4021-a622-5bce275e3433 #> 2971 21505 6521 NA d45eb662-6dcf-4e6a-ad14-bc610ab65deb #> 2972 21557 6668 NA e634c38b-d446-4111-a7e5-3c46345f55b0 #> 2973 20143 5229 NA b0a7f6dc-0409-43fb-81c7-fbd8629445a3 #> 2974 21625 6707 NA 83f36348-3a45-4839-984c-896ca5a551f2 #> 2975 20435 5417 NA 33db338e-fe3e-4d99-9abf-a5ae0fd778a0 #> 2976 21567 6672 NA c7cc7627-6f90-414b-b60b-23869a4308cd #> 2977 21437 6636 NA 22903cb0-f58b-4fde-997e-5764769770ea #> 2978 13165 916 NA 5c453cab-dfd6-4c8f-ad31-f872229c6e06 #> 2979 20628 5701 NA 10a361ab-933c-46b6-bd83-3e10896813b8 #> 2980 19650 4735 NA 399071d5-6918-40ad-9f1b-8ee787ee8cd2 #> 2981 20130 5684 NA 63ed4efa-6dcd-40f5-ae8a-d6221ac0ead5 #> 2982 18779 3946 NA 10f3023b-d446-4e46-991b-4d2cc9aa0f60 #> 2983 12725 795 NA f44b4942-1de1-41d7-a8f5-c44552e7c336 #> 2984 18098 3337 NA 87daa971-0ff3-4186-b225-81d4661c89b3 #> 2985 7802 318 NA 2c9cbc74-9a26-4ccf-9552-c9fa99ef3663 #> 2986 21304 6346 NA e6acf5b3-b599-4519-bff4-557a5a44430b #> 2987 20651 5742 NA 8d276b8b-116f-4705-a6f4-a37b390f279e #> 2988 2158 75 NA 53f8b594-314d-4f34-9444-a2b3e7eb0185 #> 2989 8435 354 NA f1769155-163f-40e5-b0a8-61c3ce0fbeac #> 2990 20410 5502 NA 61dd98e9-3edc-4892-b20e-b0d74a25da5e #> 2991 1214 42 NA 36648f14-5fe5-40f3-ade1-ef53c8f93bdf #> 2992 20683 5780 NA 6904f89f-c6f3-42fe-add6-54ba80ee04dc #> 2993 20232 5504 NA 7f4d9680-0577-4195-9168-2fb90bb18e9c #> 2994 20084 5157 NA 6106a497-f2f9-4ee0-bef6-c6d9c8943d39 #> 2995 16017 1823 NA e12c1ad8-ba0f-422f-849b-c9cabb1ebb97 #> 2996 14135 1143 NA 8d7729c6-3a84-4769-8c2c-2ed11557be20 #> 2997 3808 139 NA a2eccf1c-8a74-48c1-8c22-81083df05274 #> 2998 18024 3263 NA 9aeb2a34-dbc9-463f-9c94-7161336f37cf #> 2999 8507 361 NA 5f2a0be9-3420-4aa4-a723-8956a58a8a8a #> 3000 17054 2589 NA 606d16ed-88df-488d-b506-111af8f966d0 #> 3001 12626 779 NA 423d2e55-053b-40cd-b977-bef2f3891907 #> 3002 20109 5627 NA e95dd915-4e7d-449e-ac8e-356ad784fa62 #> 3003 16923 2466 NA 128f79ed-c225-41f1-a10b-b9eb8c477c77 #> 3004 16050 1843 NA 63175907-f9fc-4a3a-a376-d8e3a76d7964 #> 3005 14299 1179 NA b9d34a54-0475-417b-a2b5-6c0743b541ff #> 3006 20495 5446 NA 58e567dc-6d54-4907-86e1-d21615afaeba #> 3007 17204 2736 NA d5e5340b-98be-4738-867d-791f36bf8e5e #> 3008 19526 4632 NA 7840c637-976b-47e5-8831-09e1099c0484 #> 3009 21314 6383 NA 45736f04-47b0-44d7-aa61-ba9f0a94565d #> 3010 16959 2500 NA 37845827-23af-4cc2-8f27-4fd355e4c4a6 #> 3011 19196 4340 NA f65b58b8-8d4a-4fb7-9fbc-a755464b0958 #> 3012 15233 1582 NA d36267e0-f2ef-4dd0-8bda-2a9238a377b7 #> 3013 15978 1803 NA 46aa49f6-6720-49dd-a13b-3c055d304fd9 #> 3014 16858 2402 NA fc909404-fec3-40af-b8e8-22ffcb48a456 #> 3015 16555 2187 NA dfce3ced-01eb-4558-ab85-9c427cf1807d #> 3016 19384 4512 NA 4b3ecabb-6adf-45c8-88ed-7decd72306f0 #> 3017 20151 5200 NA 0c0b9670-cbc6-43b7-8901-e99f2983cf3f #> 3018 20676 5771 NA 164a4e28-ffd2-4606-933c-9870c2ac5d67 #> 3019 20693 5794 NA 2428023c-797d-49e3-a931-1163f003b490 #> 3020 11977 684 NA c058f888-ff75-4f13-a9e7-3f5be65288bf #> 3021 19413 4534 NA c9b212ad-7893-4b0d-9d65-38b283894a5a #> 3022 19167 4315 NA 8dfbc354-6308-457c-95bc-74910878f2f2 #> 3023 18403 3616 NA 6c5ade3f-43c4-4153-b0ef-c9772bce8101 #> 3024 16805 2349 NA 97b3d907-e5b4-4ae2-a9ae-af4dad3dd169 #> 3025 20765 6096 NA 0643e15e-76f5-4eea-a08e-d35eba7f13f7 #> 3026 18597 3784 NA 04ac7d14-68fc-4d70-b0f0-334dce9c1c45 #> 3027 21441 6543 NA cb6653b6-39ae-4581-81fe-b275b20aec6e #> 3028 14645 1258 NA 86a412bb-7db6-4c6a-86b0-499afd326fd9 #> 3029 19703 4793 NA 7c71541b-048b-43de-8b27-1c9cfd43f0c0 #> 3030 18142 3381 NA e93e7aee-b38f-43d1-ab96-6eeb7c6f1392 #> 3031 19239 4382 NA 73cf139b-927e-43e0-9e4d-6f48cff0ab9d #> 3032 18185 3421 NA 41cc3ce0-53fb-4a83-8612-00b527328e75 #> 3033 21099 6198 NA 7bca471d-9352-4fd7-ac8c-42efcdcf3c27 #> 3034 16570 2199 NA 25a958c9-4035-43ad-8c9c-1309ea592e66 #> 3035 19114 4268 NA 9f5650c3-91a3-4552-a02e-fe4a7d13f262 #> 3036 16023 1828 NA ec0183f6-bd9b-4a21-b8f5-ea4d8f3741b2 #> 3037 20716 5825 NA 4a34b8b5-3410-4754-9d6e-c0ee28428f47 #> 3038 15843 1773 NA 3add1dd8-32aa-44a5-b69a-b0ad2eace07b #> 3039 8343 342 NA 2d23b5d1-fbee-41df-bd6f-dd984d03a4d1 #> 3040 19549 4652 NA a0ac50ad-b460-43fd-a932-50d19cda7c0b #> 3041 14729 1282 NA 9f5a9786-f72c-4d45-a858-71bccd5cb602 #> 3042 20035 5336 NA 596fa903-35a6-4650-b499-bc3ce33d5103 #> 3043 20146 5186 NA 3eb1e32e-3f96-4613-b142-78f748db3c7b #> 3044 21212 6312 NA 60542ef3-f053-4347-8906-ce698f5c434b #> 3045 4175 161 NA 6b49d038-966e-40b9-bb1e-fb4e94543a95 #> 3046 20101 5152 NA eab954d2-9dee-4a8f-ac28-d93855459fb6 #> 3047 21540 6649 NA 9e4ac12b-bd46-403a-baa6-a1cb4c7fa5a4 #> 3048 21303 6345 NA c4ec03a8-efda-456f-8916-c161b568d783 #> 3049 19476 4589 NA 08bb1521-fd1c-4c1c-bcbe-114cadccc1c8 #> 3050 19450 4566 NA 6bc64594-cdc1-4252-b896-dd3b667eccc2 #> 3051 20497 5788 NA 59b606fd-cd76-4a01-bee5-ffac60073b3d #> 3052 21322 6377 NA bd046bf8-70f7-4480-878a-8894e5912102 #> 3053 19727 4819 NA 8725d38b-398b-4ca5-9e80-d43b0bf855bb #> 3054 18607 3793 NA f5181047-2dbb-4058-bed6-34464a138867 #> 3055 20455 5522 NA 3c593d8f-daf8-4902-89ab-d59699482809 #> 3056 9994 495 NA 485369eb-3586-4aa2-9628-77d954f23da3 #> 3057 21570 6660 NA bf4a641d-bdf6-4e62-bbe1-a74a956226ea #> 3058 16010 1820 NA 5064d069-aa24-4828-81c9-c78e0e56fb78 #> 3059 12460 757 NA c3b6a5da-b9a5-415a-8239-1fd92dd34b80 #> 3060 19188 4332 NA edb39e18-4683-4774-ac05-af4019fe2aba #> 3061 12806 819 NA 3877e0ba-222f-4bd2-887c-1db8f1a5e7d1 #> 3062 19170 4317 NA 50d58b23-cdf9-4e0c-a303-d74d9e4f9291 #> 3063 21432 6545 NA 5272b788-ce57-4197-92db-5a08ff48d932 #> 3064 18541 3731 NA 944528d8-7647-4f92-8053-0e6998c5fcc1 #> 3065 18107 3346 NA ce64d3cf-516a-429a-b80f-18143eee2a49 #> 3066 21285 6447 NA 624218c7-a654-412f-9ebe-c574c4e74c0f #> 3067 20235 5506 NA 87c4fed4-d126-4c71-96ec-54d5d8d717bb #> 3068 13576 1006 NA d867198a-36ec-4a99-9037-a093216f99d8 #> 3069 21458 6556 NA 6f02ddea-9d5d-442f-ac40-c252aec881b5 #> 3070 14946 1402 NA bed70009-eeb1-4806-b65e-3bfc54963cb7 #> 3071 20627 5702 NA bd252716-1674-437f-8d91-fdd10cf4ebf1 #> 3072 20356 5422 NA 1b0801bc-9afc-458c-8235-b938d4b76d29 #> 3073 19056 4210 NA 48dede0f-2441-4549-8892-9d37c79321a1 #> 3074 20586 5568 NA 961507f5-29bc-4efe-bff1-bd1e4f063e8c #> 3075 15562 1697 NA a1e8bc26-2f4a-48f3-b2dc-549d8bc71067 #> 3076 19874 5019 NA 8fecfc12-c9be-400e-8b5a-4684c6884daa #> 3077 16403 2089 NA d694d99d-0dd2-443f-b02a-6cd377cdaf6e #> 3078 14827 1328 NA f60de8c5-b050-4386-8a67-3658f65350b9 #> 3079 19744 4841 NA 2fbd5ebf-c12a-4e92-b7b6-de649c37ccd3 #> 3080 21525 6608 NA ee4e7684-071e-4aee-9d0e-b8da39c46322 #> 3081 20371 5410 NA 5ec64dea-c6db-4416-ad24-8676acf7a7c6 #> 3082 19303 4442 NA 401fac38-aa48-4f45-b6c4-a4705b50f9bd #> 3083 7202 285 NA ac568889-d10d-4ccc-89a1-8e4233848086 #> 3084 20322 5602 NA 1da8b818-601e-4d53-943b-c7cb767969a3 #> 3085 21431 6604 NA 13141af5-6bef-4f49-98ce-5305f0187bef #> 3086 20190 5219 NA 34053914-0384-4551-a5e9-e3bd13c09b02 #> 3087 21250 6369 NA 0afaf743-1240-4598-91d4-13f003573789 #> 3088 20323 5603 NA 2be11ce3-61f2-42b4-ba82-f22c62e9363d #> 3089 20442 5500 NA 6191922d-218f-4f86-a3c2-7216810bccb8 #> 3090 21273 6575 NA 89588ce4-70cf-4a50-968e-d48cf5c66053 #> 3091 20140 5205 NA 49c20233-70a2-4de5-b3cc-9bf7039f1cb7 #> 3092 21446 6422 NA b27621a8-1629-45d2-838e-5e74a26f350b #> 3093 19232 4375 NA 911991de-37c3-4fcd-9896-80d1fb0b6112 #> 3094 16391 2080 NA 8fd4379f-242a-4388-ae91-5b99acbb1bd8 #> 3095 2232 79 NA 50fd6da3-9fb3-45cf-83e8-5797f1f16308 #> 3096 20119 5778 NA 3245841a-b113-4e4f-a994-449d25d1db98 #> 3097 13664 1017 NA ee305db3-cdaf-4eb3-b950-7146d51eac34 #> 3098 19533 4638 NA 035a2da8-8e69-48d3-9752-0fc042f545df #> 3099 19460 4573 NA 61a5aa8b-1f47-4bfc-ac91-eae7f6679ad6 #> 3100 20278 5689 NA 3555b24f-ed5c-41a3-aead-34e7b64d5c4b #> 3101 20110 5628 NA e34d2f84-e5ec-4818-a54c-94176e515a90 #> 3102 11108 546 NA c9fe00a2-7620-49f3-a744-7d04c5b30560 #> 3103 17095 2627 NA c280300e-a61d-4a19-aa95-ab100d5759e7 #> 3104 21626 6708 NA d79d84b3-cef7-44b9-8202-ba92d4d32641 #> 3105 13451 985 NA 690fbf24-aab0-40cf-aeb4-7e24d90108a1 #> 3106 18380 3597 NA 4efb66e4-7038-4b3f-bbb7-521aa3200760 #> 3107 9828 487 NA c0e4ed02-82ec-4bde-a1b1-c035dde46402 #> 3108 7680 314 NA 6de52f0c-2a65-42a3-81a0-9c772a588c08 #> 3109 20345 5589 NA 4ac2531e-8a86-4124-970d-0d6be201a4b4 #> 3110 16940 2482 NA eb96d887-4380-491e-b22f-b0cdd0bd64f5 #> 3111 16026 1830 NA 7d94e607-7908-4e25-ae36-b1f2707c06c4 #> 3112 14902 1380 NA f79197fb-9ee2-4edb-bb68-e8cd059a5101 #> 3113 19427 4547 NA 7e1ee344-f878-4fc6-bc56-e47588bf1000 #> 3114 18988 4142 NA ddc66539-5847-4c01-9283-595bde0ff97a #> 3115 17284 2816 NA 3748e9cb-edd7-4559-832b-e6bc483677ce #> 3116 2550 94 NA 57c5c69c-844e-41f1-9985-6fc178cee514 #> 3117 16091 1874 NA 3a8befa1-04e8-4aa7-bc14-504e3d2de483 #> 3118 16213 1959 NA efe0a829-1c7a-4460-b099-089bdb64b819 #> 3119 19713 4799 NA 563f4a41-967c-49f1-a217-28543727c7d0 #> 3120 14991 1430 NA c63eb820-738c-4b32-83f4-65ed80d54ae4 #> 3121 21398 6404 NA <NA> #> 3122 17529 3000 NA 0c042513-aba2-461c-ae16-db4bf83833fa #> 3123 20315 5426 NA 563471e7-202e-494d-bab7-a2493a9a6e31 #> 3124 14369 1190 NA e9cf609e-4d2a-497e-b7c5-677949820145 #> 3125 20691 5789 NA dd20b476-52fe-48e1-a614-3854c6b3989c #> 3126 20408 5501 NA 9ebd9a70-74d1-4df8-90e6-3de18368a4c5 #> 3127 16637 2237 NA bb29cf6c-17a4-4106-9b9c-47d2d9c0e6b9 #> 3128 19502 4612 NA 19667595-1b93-48ff-878c-5f245636173c #> 3129 21350 6500 NA 06a22cdc-f773-4424-a8e6-e49ca822ed1e #> 3130 20321 5601 NA 456fb5aa-5ecd-4cf4-819a-a7708ed8f0e3 #> 3131 16952 2493 NA 61b04d13-ebdb-49eb-9f5a-ea85355d6360 #> 3132 20244 5458 NA a548290f-bfaf-48b0-aa8d-4f8c71a1ff80 #> 3133 21313 6382 NA b88049ec-946f-4723-bc82-ce5803c652be #> 3134 17538 3005 NA af52bc9b-b734-43a8-af8d-daad398db79e #> 3135 20105 5513 NA c497d10f-bb71-47b9-aabf-daaecb38b6dc #> 3136 15389 1646 NA 38717cb0-9a15-4a89-b86a-c57ff0cef0cc #> 3137 20201 5491 NA 2fbafbc6-2236-44cf-8498-dc8b549161cf #> 3138 16974 2515 NA ff5d11ea-4713-4b63-88a8-50ed1a3623a7 #> 3139 18325 3553 NA 52191351-8e61-454b-b2a3-dc2e39043b11 #> 3140 18277 3511 NA 1ec9b4fd-414d-4dd6-96f7-45efa541ebeb #> 3141 4096 153 NA f83bfd85-4007-4c7c-ba54-75bedfc3c3c1 #> 3142 16896 2439 NA b6025ffc-496f-40e5-bd23-38469aa50cb7 #> 3143 18010 3249 NA af24c36b-adfe-49e5-82a8-67f9ea7264ab #> 3144 20181 5184 NA 7ecac271-87a9-43e6-afea-abc57552a0c1 #> 3145 20522 5497 NA cae53a94-89ce-4eb5-aff9-b1b618283db3 #> 3146 16526 2170 NA 917e7a94-fef2-4293-b50e-94e52f777232 #> 3147 12716 791 NA 1e110bd9-4eca-410f-82ed-e4d8af131574 #> 3148 19389 4517 NA 49c6000a-8ca5-472c-a166-b0a0911a00bb #> 3149 20358 5563 NA 2bb28fc2-96ec-452c-9dbb-22130681c4eb #> 3150 17298 2830 NA 3920baeb-570e-4b1a-bc44-c4bfd936e41f #> 3151 13319 953 NA 97d98203-7785-4286-b01c-2611c6f5a44e #> 3152 16857 2401 NA d0778d5a-f5af-47a4-9b06-adcbf5b3368f #> 3153 21184 6251 NA c07e2290-529d-4d55-bef2-1d8139816355 #> 3154 16425 2102 NA de3f11e3-90ae-4ad2-880f-48e9b6f729f8 #> 3155 17319 2851 NA af9992e2-6bda-4e3d-a95a-fc32c9f93391 #> 3156 16444 2115 NA f154d374-d504-425c-a2ae-958f3adfed32 #> 3157 15435 1661 NA f092bfdc-2385-4223-86e7-37b2654bc37c #> 3158 11514 619 NA d2d8345f-8eaf-4f61-8df8-df6e808b6aec #> 3159 20312 5420 NA 94062255-0b93-43ca-9399-92bbc10901ff #> 3160 21231 6325 NA 4023e7d3-2b70-450f-9afc-bf1a9dcee3f9 #> 3161 21532 6599 NA 6196fbdb-f9fb-4766-b611-c1875f8f6236 #> 3162 18713 3891 NA 0105886c-9f70-4600-b0c4-bb2a8efc5e9b #> 3163 19206 4350 NA f0b08802-f6f8-4dba-b53e-e26eb75a32e7 #> 3164 19541 4646 NA 7076d60f-8cba-41bf-a3ed-ee28af5e240a #> 3165 18452 3658 NA 0cae9da5-bdbb-4d19-b360-578b0a1c37bf #> 3166 18275 3509 NA 60aa9a85-1fc6-4b65-a350-34ec09456791 #> 3167 19573 4673 NA e73a5644-c7a2-425b-898e-da72c16f9b87 #> 3168 20568 5560 NA cdbe5207-fdbe-42f0-a536-bed784aa9cea #> 3169 16210 1956 NA 0719b89b-85f5-4be2-a335-596e81d93913 #> 3170 19096 4250 NA aa87a5e5-f90b-408e-b8b4-39f28204f8bf #> 3171 16869 2413 NA 0f062def-77f5-4362-86cb-4bdb63a59eba #> 3172 15631 1716 NA e0a63251-5428-43a1-88c1-c000215ac5ce #> 3173 14783 1303 NA 9d04accc-a404-406f-b93c-0878410e55a6 #> 3174 21365 6435 NA e046beb7-3d9f-4f30-9b33-2b61592461ff #> 3175 18376 3595 NA cc1df018-baa8-4344-b13c-cd5ef1a52d26 #> 3176 20587 5586 NA 91d9a3a9-241f-4f42-b0f0-2e7dd9b84c08 #> 3177 15555 1693 NA 8c5067dc-1617-42fa-82eb-0596392ab20a #> 3178 15191 1551 NA 360f6480-729a-437c-9875-5a409f4ca03b #> 3179 16966 2507 NA b936b29c-59ab-42ba-996a-00131b4b8580 #> 3180 20405 5353 NA a0c708a2-4620-4b5a-8453-967c2a9bd426 #> 3181 16534 2174 NA f611f87a-1e49-4196-9088-8c760f26006d #> 3182 14786 1305 NA 349f647e-bfc3-4d84-af89-b33f8a08e26e #> 3183 20389 5296 NA 1987b2bb-042f-49c9-b183-bec358ba1b98 #> 3184 16955 2496 NA 96b38cbb-4709-4c5f-89c7-f9fd7fa77a95 #> 3185 20223 5240 NA 3eeb2be6-2bc9-4b6e-a35b-bb1d87f14dd9 #> 3186 20092 5145 NA 17f32692-ccfa-42c0-b238-483534dd0b7c #> 3187 18636 3819 NA f50fb156-fc3a-4930-aa51-8fe977ef6984 #> 3188 16203 1952 NA 513caa63-d30d-4cde-b605-8cf825a4ef27 #> 3189 14391 1196 NA e597cba3-fa90-4ce2-85e7-3e0bed1791d5 #> 3190 19283 4423 NA 369d8fc2-fce9-4e75-9419-3dfbe3ad3977 #> 3191 19525 4631 NA dd6959e5-13cf-4c1f-a05a-03bb7648af96 #> 3192 13188 923 NA c10e08b6-33a7-4233-8628-29b40d1183ea #> 3193 21546 6654 NA 991678cd-6d07-45d0-98b1-3d40e5725c29 #> 3194 17260 2792 NA 6ba5ea17-2790-448e-9fb8-2d0d05ca955c #> 3195 20470 5394 NA b91dbdd2-b7c4-4ad1-95a9-c675c30b4b57 #> 3196 19103 4257 NA fcc9d16f-4591-4ba2-9720-9fa187b9d9d5 #> 3197 19478 4591 NA 7e408bdc-df1a-44bf-878e-8cc790c40a3e #> 3198 21554 6583 NA d21096bc-ed34-4b82-9129-a5b08d51a827 #> 3199 17093 2625 NA 5f06c995-7b1c-4da1-8bce-5ab5f63a901d #> 3200 18647 3828 NA 444c9f9a-b6e1-4be1-ba68-bf18781f8c89 #> 3201 16390 2079 NA aa80f701-cce8-4136-b0cb-965fb8c90519 #> 3202 17565 3016 NA 779bef9f-4c2c-409f-9079-784e03645eea #> 3203 12212 713 NA 07ab211c-4733-4336-b59a-2137f3efe5e8 #> 3204 20612 5650 NA 7428dd41-d736-4141-991d-b7a74b61aeda #> 3205 18372 3592 NA d37758ce-9e3c-4e3c-bb7b-b8eaf1c58541 #> 3206 13442 979 NA fc506583-7edf-4e40-8047-83f60bea67a2 #> 3207 19107 4261 NA e055cf84-9602-468a-a960-5240cab53aff #> 3208 21574 6675 NA dd074695-df70-49ab-ab37-504bac11d171 #> 3209 17165 2697 NA 0f1b8946-54b9-43c3-8c9e-1778c6314e9b #> 3210 11311 581 NA f1cff356-8de9-4589-8522-40922fecfad7 #> 3211 16168 1930 NA ebb13f2b-f29b-4f05-b88a-a522d1935fa3 #> 3212 6853 273 NA 93ee67e5-08d1-4272-bc6b-d97feaab5d6b #> 3213 11612 643 NA 4094730d-a3ad-4c7e-a899-a3c8001748d9 #> 3214 12453 755 NA 5bd91ec9-3d48-48c1-b36e-78462044acfc #> 3215 2104 74 NA 0f0ff562-af1c-4be8-8011-1f71e8441e00 #> 3216 21091 6189 NA b2830633-1ef9-44e2-ba35-8bbd8a3a84fd #> 3217 20272 5535 NA b0c19fa7-b58a-413e-812b-54fce2038239 #> 3218 21066 5897 NA 8e4979d6-aa7f-4b18-a0ff-74021728ca1d #> 3219 11548 625 NA 4a8190f6-039d-485b-8d51-7f98368b02e1 #> 3220 15433 1660 NA 3d6d3bab-67d8-4c08-ac5a-0cd80405e3c6 #> 3221 18050 3289 NA 822e1946-3df1-4a25-b967-291a0c435cf5 #> 3222 19197 4341 NA 36bbcd0f-c3a1-4656-850d-6f0c7497a483 #> 3223 15280 1608 NA 2592f1d6-3cc5-4e32-b6fb-18ad517be491 #> 3224 19327 4461 NA be6c0952-4400-48bb-8a67-95c00f8aaab7 #> 3225 20532 5434 NA f58c28b8-262c-44b3-ab15-992c362e3f43 #> 3226 15453 1667 NA f4ce175a-0408-4215-8a64-2cac3679d151 #> 3227 2379 88 NA 7a2612f3-ea18-444c-95ee-f1ca597d6fb0 #> 3228 15311 1623 NA cb2a824c-bdaa-4848-9f56-b5b37bf419e3 #> 3229 11154 555 NA c0cb57ed-b7dc-470a-8769-c161dad25de6 #> 3230 8593 375 NA adc1b9ae-0b59-4399-bfba-959f694dde3d #> 3231 20165 5215 NA a45043f1-9e33-4564-bd69-df6528cbd03f #> 3232 17108 2640 NA fc73c0c1-b250-4feb-a5d6-f30145b28bad #> 3233 7243 290 NA 26138e8b-b776-492a-9684-b1c07e51b25c #> 3234 21236 6330 NA 11c5317a-a0a7-4330-a1e5-532dbfe8f021 #> 3235 12167 704 NA 9029830c-1394-494f-a92c-e192697913cf #> 3236 8776 395 NA ca8815bc-c68f-4d18-80fc-f61e4a2053b8 #> 3237 19151 4303 NA e8aca261-6e92-4e6d-bd21-3cfeb70ce9e4 #> 3238 19366 4496 NA f18e87b1-2548-4bdd-8b30-25fc04c9788a #> 3239 20638 5712 NA e3a87257-7012-48c5-8ab2-8322f3a95f2d #> 3240 12215 714 NA 76f95387-3bc1-4756-a714-a4b1a93f23ff #> 3241 21334 6355 NA 5e32839d-6ea9-4f92-8209-520a980ffcde #> 3242 21209 6309 NA 1824b9ce-a9af-4284-bc33-c36f100b13c3 #> 3243 19991 5083 NA d4590268-6931-43a1-b794-d9a684c508db #> 3244 14440 1209 NA 5db03086-c670-4adb-98ed-b6a59a4f9270 #> 3245 20127 5489 NA 1ad00b25-912a-4e92-b585-906594f3020e #> 3246 21499 6512 NA 274c50e9-73a3-45f9-b9dd-c08270f1132c #> 3247 20348 5594 NA cdd83d70-ee27-42d0-a6f0-7db2c2ec6995 #> 3248 13476 995 NA e9a0297a-0b34-4c55-af1f-ca113d672195 #> 3249 16000 1815 NA d452a634-8f68-4bae-808d-5ce4d9630970 #> 3250 19094 4248 NA 86697b45-157e-45ed-b63d-826cf5c7a0a1 #> 3251 20608 5681 NA f7b0f6fc-217a-4df0-b5d1-a9555fabbba9 #> 3252 20509 5739 NA 30d66e1f-256c-4597-b31a-e54a17508c35 #> 3253 21518 6527 NA 7c218b81-76f2-45a1-b4a1-ac4e7a987c6c #> 3254 21552 6667 NA b4565520-ee0d-4d4a-a3dd-7f8c17a9196c #> 3255 14256 1168 NA 0cb97421-cccf-4cce-ac0f-92d47986defc #> 3256 20344 5469 NA 5535abc8-e8c0-48bc-b233-3aacccde7eaf #> 3257 16677 2266 NA 6fa770b7-6cf8-400f-a3ea-47696eef0074 #> 3258 19321 4457 NA 6c51cb10-bafe-40a2-9a1e-002dda2f88e1 #> 3259 19285 4425 NA 82d57e35-193d-4f1f-ae40-f73b4c4c15c0 #> 3260 21047 6113 NA 21b89b42-8e13-4450-a5ff-a080c80a5400 #> 3261 19374 4502 NA fe2712f8-45df-49b7-a871-d68b7006a912 #> 3262 13448 983 NA 675fff00-6821-499a-b30d-04fc54468eaa #> 3263 21265 6537 NA b997cb23-f1a0-43c8-a684-7941e38afa8e #> 3264 19462 4575 NA c242081f-f312-4e15-8de3-854dfdc2bccf #> 3265 18287 3521 NA 4e31b011-050f-4024-8a7f-bbae9b01b216 #> 3266 18386 3601 NA 1e4470b2-2710-4c23-b1ee-5dccd31352a9 #> 3267 16975 2516 NA a044125d-85ff-434e-ac2b-deeecf314d63 #> 3268 14605 1248 NA e461d721-5ca5-4896-8fe5-12e452a003b3 #> 3269 19002 4156 NA 6b01960b-1a92-4aec-a262-db57ca85c22b #> 3270 19088 4242 NA 9cdc17a0-1cd2-43b5-948a-579a993a30fc #> 3271 14826 1327 NA 1d127c62-d7f3-4fe5-b30d-9b7a9cef6637 #> 3272 20257 5510 NA b25967e0-9a90-4b59-bf85-168581e0da04 #> 3273 16590 2212 NA 7206bfcb-ae42-4220-b738-158d3e2bb0fe #> 3274 19418 4539 NA 324274e2-f7d1-40b8-b5c8-4cf58fda42fd #> 3275 7098 280 NA b31b2a6b-1464-4c78-a19c-1f6ae627d519 #> 3276 8504 360 NA dc99b6a9-4825-40c1-858d-252a4061c289 #> 3277 19521 4627 NA 21be8393-db2f-4ef0-98a3-5f1b8421dd54 #> 3278 21565 6671 NA 838e8308-5d0a-43dd-a6c4-27b0d7c879f9 #> 3279 11178 556 NA a9217999-fa6d-4474-a176-1cf9013224ea #> 3280 21433 6516 NA f1ea77e8-6e8c-454c-b508-f06e5676a0bc #> 3281 19171 4318 NA dbe09c33-0164-42fa-8eed-e5d3f11377b7 #> 3282 15073 1478 NA e584c525-2f4e-4d29-95c5-1d16138834e5 #> 3283 20485 5693 NA 76c7bd95-fe1e-49e1-9a8d-b4d3a18e5df4 #> 3284 19277 4417 NA 3a3a9ed8-e941-49cf-bc32-331424d0bd42 #> 3285 18531 3723 NA 4a52883d-cc37-4593-9ca3-cb9967e4db5f #> 3286 13310 951 NA 1c1a6937-9267-497e-9386-00562e5fb399 #> 3287 19040 4194 NA a8a5db13-5676-4194-8e2c-c75778366a3b #> 3288 20104 5512 NA a25bf0a9-84a3-49c3-9969-50b046a0fa30 #> 3289 9042 422 NA 2c80e71d-c173-4c07-aeda-69371e969591 #> 3290 12838 828 NA a877e5f6-37c5-4c7c-9f23-9e3a9f9d0d84 #> 3291 14345 1184 NA 22b17923-9927-42ad-9c57-d9e89c5dd61b #> 3292 19470 4583 NA 53fac8d5-eea1-431e-8754-d71446e0dbd3 #> 3293 19363 4493 NA 7649ea09-692c-4012-b071-11422d383388 #> 3294 17458 2967 NA 284a3a87-2d1c-4e14-84a5-07d5c817a69c #> 3295 20208 5599 NA 0220c312-f4d4-4646-9bbc-1d9f8c3020da #> 3296 10994 522 NA 6edf1c3e-bf89-4148-b827-cc4e50888c18 #> 3297 21648 6725 NA 53a783a3-183d-478a-a752-cb28054d208e #> 3298 14367 1188 NA 18f9dc06-eaa6-4c7f-8995-78aea971fdd4 #> 3299 15223 1574 NA d6aea7ed-2c24-4be5-b789-41e3ba0c2137 #> 3300 21477 6520 NA c2a4c4a4-d0d7-4687-bd2b-7ea13118c3a7 #> 3301 19000 4154 NA 3671d5fb-6f0b-4582-8007-0265a66cf2c1 #> 3302 21180 6561 NA 59a2ccc2-8f08-45b5-808f-a8938a95f1f5 #> 3303 21461 6478 NA 8cdf3bb1-29d1-4812-ae16-893f3c448df1 #> 3304 8296 334 NA 0ecd0d32-5e18-40bb-b8bc-278b6206657a #> 3305 8419 351 NA 5fbfe48a-11ee-4141-8f8d-6bef67d3ea69 #> 3306 16349 2053 NA 4a9a26fa-6a05-4c67-a023-43773a5c67f8 #> 3307 18672 3851 NA d5ce4494-a0d8-4c70-9759-48afe6b19a7f #> 3308 18169 3408 NA 159f802d-8825-4bc9-aba4-e6631aa11e44 #> 3309 15115 1509 NA 8e6af99d-a697-4be5-ae7f-f1ddc12bd15a #> 3310 16950 2491 NA b220ff58-7cb4-472d-93b5-da41058d9a79 #> 3311 16483 6718 NA 8834e7eb-3cf0-43ae-ac0f-5a1e28dc5107 #> 3312 21544 6652 NA 7c05af13-68e8-4aa4-b2ae-745bd0fd1e33 #> 3313 18078 3317 NA 258deb9a-9e98-48b8-bb86-3f2e339ecef1 #> 3314 18085 3324 NA 2b808ae0-ff65-43d5-9a07-b21d02e36c35 #> 3315 16596 2215 NA 3f22bb95-48f6-4ff0-a199-55257d0aaf91 #> 3316 13261 939 NA 6499ef2a-c7a9-4f14-abeb-8cc165333249 #> 3317 21664 6747 NA 52bb89b1-5d19-43fb-bb16-e7ed48eaa17c #> 3318 19052 4206 NA 60121cb4-ba9b-4f3d-9add-7d55890e4795 #> 3319 20407 5553 NA adaa09ba-2a08-4910-ab31-e6641c3c4941 #> 3320 16604 2220 NA a797919f-59d2-42d2-be96-d78312fa6b48 #> 3321 21321 6418 NA 992d1531-9091-486d-93d1-53e8b060e950 #> 3322 15410 1653 NA ba736850-97fe-48c4-a5c8-cdbe3bf6fbd1 #> 3323 19210 4354 NA b84995d5-f1b5-4d6e-84ed-66babfadee90 #> 3324 18273 3507 NA e710f662-a7ba-4a95-a5c8-982519ecb2ed #> 3325 20276 5688 NA 4086e06c-747e-433d-85e1-5b38443c0c78 #> 3326 18591 3778 NA 7e93123a-caf3-4915-bb8a-e1199257f8de #> 3327 16507 2160 NA a54b3a65-476d-4913-8f64-9b85ef61e310 #> 3328 20571 5538 NA 19dd5977-ff82-4fa9-baa3-643a0c49e615 #> 3329 18397 3610 NA a4bf7889-f726-4bb7-a390-c962d6cc04bf #> 3330 20543 5656 NA 93d973b3-06c3-4d22-b7b2-5430f53622d3 #> 3331 21076 6112 NA 4cac4ec4-d719-4f77-a714-0a8ed45be814 #> 3332 15128 1519 NA d54a562d-0571-4960-a903-6e98415ead6a #> 3333 17756 3044 NA a04c2eb7-52a1-42db-9960-f97486cfe417 #> 3334 20259 5631 NA 297bd882-4641-42c0-a612-d3db66d6093c #> 3335 19039 4193 NA 8f738734-fb58-412f-a549-27295e3183b6 #> 3336 20425 5412 NA 9b1fd0a4-6a45-4388-bf1e-bf4162e84056 #> 3337 19334 4467 NA e4c61c4e-a9ae-418d-9469-4add053e541b #> 3338 20615 5731 NA cb006e99-2754-4bd5-a521-6d0cf473b233 #> 3339 21339 6525 NA e4a4febc-ebb2-492e-a3d5-ef5bdd2f9b1e #> 3340 20843 6062 NA fea687cd-12c8-4954-8431-31b1634bcd3f #> 3341 19195 4339 NA e51b8fd6-dc76-4810-a77e-2bc153a29d1e #> 3342 16873 2417 NA 3887491b-d2f3-43e2-bd27-01ba860a65f7 #> 3343 14852 1335 NA 36bb2c46-33d3-4e86-bb12-63b658cf8f7f #> 3344 18196 3432 NA 9e360674-eb05-4d1b-ba8c-03d6c12fb177 #> 3345 17496 2989 NA 5bd4b926-db76-436f-9390-5c96475245fc #> 3346 14813 1318 NA 000bc6c6-c9a8-4631-92d6-1cea5aaa1644 #> 3347 21430 6513 NA cc100593-db21-4a2f-a6d2-607bdcea88ad #> 3348 20062 5621 NA e9a3dcf7-e5ba-4f4b-85a4-7a46b901d8b4 #> 3349 9050 424 NA 3ebbc479-fec5-4463-8eb1-b9b09b0d3bc2 #> 3350 21572 6673 NA 04b20ccd-7dfa-4269-ae9e-e4227b803fa1 #> 3351 21628 6709 NA cb175050-09d6-4216-93ee-276fed373aa1 #> 3352 7459 301 NA fafd2927-7e17-4e85-afa2-aa2c019229ed #> 3353 20439 5499 NA c2648042-c616-4ee7-b9d5-f1b77c560c0e #> 3354 20267 5782 NA 593e7567-a8a2-4032-876c-12ef72720dc6 #> 3355 18579 3767 NA f5664cdc-9ce6-4533-b55c-89d3bafa7012 #> 3356 7815 319 NA a54b32de-57a0-4ebb-9eca-059d956fee22 #> 3357 20483 5440 NA 092b8c48-e863-474c-ac81-212d1265dedc #> 3358 16241 1977 NA 89398fe2-d54f-4672-9324-3012c06ce2a6 #> 3359 3339 124 NA 9c2bf2fc-d6cb-479d-8ece-f2ab4d1cda91 #> 3360 11046 532 NA 6a1b2504-153c-441d-ba17-f78457d58b9c #> 3361 14273 1172 NA 4cf02857-f50c-4a6f-b94d-ff12d8f701b0 #> 3362 19722 4809 NA 9ad0b3b1-28e5-4c23-91fb-728beb7c63d4 #> 3363 10956 509 NA 1540d25f-4758-44d8-a4eb-276845326620 #> 3364 15430 1659 NA f1fdbd9f-484f-441d-9f50-35e972a50300 #> 3365 19678 4760 NA 84a504f4-417f-4af3-ac1c-6af958e10bdc #> 3366 20465 5523 NA bb6dc980-e124-4548-9344-cd67803b146a #> 3367 20256 5509 NA 851670a6-111c-4678-b4b6-60c2f813cbe7 #> 3368 16494 2149 NA 78009cf5-8d12-42cc-9a99-34137cd0b420 #> 3369 15008 1439 NA 2db8a161-7b3a-4a3c-b915-c5be5b3cd39b #> 3370 14061 1129 NA 83fac4ad-a729-4774-a44e-20713aa01319 #> 3371 20590 5584 NA 03863dcc-b11d-466e-a6f5-845d91b9ec3e #> 3372 19227 4370 NA a29582a0-fa94-4337-b6d1-aba67e8d3141 #> 3373 20454 5404 NA ef133256-fb0b-4a2e-bef8-48b5245395a1 #> 3374 21471 6471 NA <NA> #> 3375 12490 759 NA d90adc80-8e8e-4484-92a3-00bf274e6a9d #> 3376 20958 6160 NA 18750e3f-5625-4253-ac44-61c6b8fc07d4 #> 3377 18166 3405 NA 345a3f59-1eec-484b-93d0-6330bdb358e1 #> 3378 20459 5478 NA a8912b9a-e400-4f2e-be47-59e17b4ddf2d #> 3379 19201 4345 NA 5a7fd0e3-5b63-4ebd-b8f9-02f3dafe0d45 #> 3380 20205 5676 NA 3422e0da-2496-4e8c-b716-599b5782a567 #> 3381 20720 5826 NA 43b6dba8-0299-4f5d-9094-e061be3e8fe8 #> 3382 20657 5748 NA 8b91b834-6eae-4a18-8fc6-9c99caafa615 #> 3383 19468 4581 NA 7b7bf4a7-4600-4540-b675-c3e4c7f163e9 #> 3384 20287 5542 NA d6fffab3-1d96-416b-8f9f-fbdff691f33d #> 3385 20197 5172 NA 7a41d4ff-5634-4b1d-843e-820e9b2a6049 #> 3386 17158 2690 NA 5286148b-f209-4a92-b3d7-83e4b05acba4 #> 3387 20115 5641 NA 155d6c0a-4ab8-4e58-92c4-5e955eb4ea13 #> 3388 20291 5544 NA a7db348f-e49d-4ec4-8818-57a4820f2f14 #> 3389 21305 6347 NA 04a63d1d-683e-46ed-a929-458923150f5e #> 3390 19576 4675 NA befe4b46-f918-4faf-a9ad-c034e990c0cb #> 3391 19218 4361 NA 0cea85ba-f49b-4f4b-b50e-b96042a6a680 #> 3392 20575 5574 NA 82a32245-a807-4018-be7e-a64e10abea6f #> 3393 20855 6061 NA 0baf5ce4-ce92-425e-b5aa-ea0c388a9b6e #> 3394 19312 4859 NA 56615da2-0091-4683-8596-5b13d933db93 #> 3395 16471 2134 NA 4bbe4348-4fe2-4787-a6c4-fd2a9ff76bac #> 3396 20832 6079 NA b82c2d22-1a6e-453f-ba11-9a048bf36f63 #> 3397 18827 3990 NA c8b91c2a-3a98-42ea-a295-35344979fdb9 #> 3398 20114 5640 NA 7033ecd3-b11e-4123-8328-4413e1d7acc4 #> 3399 18738 3912 NA 935189f4-3934-4206-a64e-c5b92f3d9c43 #> 3400 20739 6085 NA c5dfe8ed-dba1-46f5-821d-cb88ee7ab664 #> 3401 19338 4470 NA 63de92e7-69a9-494f-b2a6-43aa67ad325c #> 3402 21010 6020 NA c3f75363-b89a-4d6f-be40-e10ee2704c6c #> 3403 20261 5633 NA 8044439b-4873-4d1a-ba45-0e3365d889cc #> 3404 20851 5896 NA 48a49ac2-640c-4ef5-9192-4ba6ccc306ea #> 3405 18989 4143 NA 4123860b-90a2-425e-ba0b-051aad7c327e #> 3406 20630 5735 NA 0d732ceb-7d32-4469-99a0-386af0d951f1 #> 3407 16109 1889 NA ece6cc68-6834-4c1a-ab97-03d327ea132d #> 3408 20955 6656 NA 37aa17f7-890f-40ad-ad48-57d70f2708a9 #> 3409 19634 4724 NA 37e44075-a98b-4908-ae69-4963c5cc3c69 #> 3410 20579 5581 NA 8bcda483-4714-4caf-bd21-4e64884a1ab3 #> 3411 21288 6533 NA 8777f90a-8280-447b-9fb4-806989838e9f #> 3412 19563 4664 NA 57b80476-cfca-4d31-a7c3-cf84ea3261b0 #> 3413 21034 6099 NA 889052f9-12d3-4540-af7f-2728c1ad91de #> 3414 18155 3394 NA 0c3f8621-b32c-4887-890e-dbd6b76b2370 #> 3415 20687 5784 NA d15e6d19-924c-4c1f-9d1a-e15b378c2875 #> 3416 21267 6571 NA 5bf874ec-3fae-412f-855d-257870e1c72f #> 3417 21068 6046 NA c66e5f22-10ad-41fb-9fde-52598df5fba7 #> 3418 20260 5632 NA 335ba0c8-25e2-46a9-89b9-8d9eaafe11cf #> 3419 20548 5557 NA c4243a66-f376-4ad0-ac40-3e2b759ba64a #> 3420 18046 3285 NA beeb2f7d-e318-478a-956e-7419aae66bd7 #> 3421 18077 3316 NA 9823700a-2d8e-4872-862d-382d69c67a46 #> 3422 20017 5338 NA 3b10d2d7-f361-4bc2-93ca-1bbe414b1862 #> 3423 19385 4513 NA e7488114-9a87-41e3-bf4f-85923ddb106f #> 3424 3253 118 NA 480277d1-47c9-44df-969e-038a84cd0fea #> 3425 18473 3673 NA 7df7e968-8402-48a4-b0b7-97cb54a1702e #> 3426 5714 229 NA e5247e5f-c4af-4a9b-8c7c-da75ef7fbf8d #> 3427 16164 1929 NA efb15571-8b8c-4894-8c3f-f595cf7ccf87 #> 3428 20238 5247 NA 33c4aa3f-8f62-48c0-9ebf-d6ad73c6e4e3 #> 3429 21508 6496 NA 5e52491c-218a-4e32-b455-0d3aa05b8151 #> 3430 14877 1358 NA 596c4000-ede5-45b0-8336-33efeb686d2b #> 3431 18255 3490 NA 2c0ebb74-96d8-4d13-9891-90bf9b15fd0e #> 3432 3258 120 NA 9ecf8040-10f9-4a5c-92da-1b4d77bd6760 #> 3433 16644 2242 NA 0d1171d4-c955-4966-9257-640b569866d1 #> 3434 10092 499 NA 4869b8db-2e38-4327-af11-cc1e17ef3490 #> 3435 3388 127 NA 218d1644-603e-4da3-9ce1-48ce3927494f #> 3436 4354 168 NA 47cfc2a1-2b81-430e-8b30-ff5129e5c601 #> 3437 13140 909 NA 30be69a5-f203-49dc-a354-19e4733a80da #> 3438 16065 1856 NA 94d5430e-41b9-4b3f-af7e-4d25bd6da4be #> 3439 17274 2806 NA b882eddd-10fc-4cc0-9a8f-ca2d6db0c6fc #> 3440 16682 2271 NA b1f8c22c-e516-4fdc-9ecd-d2bd1e9a1f36 #> 3441 13112 901 NA 6fbd5f30-db84-4c38-98ea-69631bdbc53f #> 3442 16272 2000 NA 61033955-2852-4620-a5ea-cc596a8f4e12 #> 3443 13358 962 NA f9354bca-514d-4f8d-97b2-5c6ed471edff #> 3444 12195 708 NA 7853d82d-7c4b-4275-8ade-f8b96dd89bf5 #> 3445 5334 210 NA e9b4a5be-80ed-4e00-9db3-6ee69e32b529 #> 3446 20258 5511 NA 8488c04c-1972-415b-85b9-84829ee09f11 #> 3447 16879 2423 NA 5f727913-cfa9-44e5-89e4-e2a52dc11760 #> 3448 15132 1522 NA aad60db9-4a23-44d5-a738-46443e99ea77 #> 3449 15669 1729 NA a41304be-54fb-4448-bf94-9bf6334a880a #> 3450 17188 2720 NA 91fc931a-acff-46d1-8233-182ce9635740 #> 3451 21219 6316 NA 4cad5078-de06-4449-b629-a954b92c51e2 #> 3452 17203 2735 NA d1ac1143-9b14-41b7-be88-6b094592a3dd #> 3453 15301 1616 NA f41be233-94ee-4d66-bb7b-aabb9a9509e8 #> 3454 14750 1291 NA 3f6b7426-8fc2-44c8-9cba-9d6234e9d43d #> 3455 20458 5477 NA 4916c90c-11e8-44d8-be62-67806f9efcdf #> 3456 12562 772 NA 8bc1b144-ce6d-4889-a1e1-e7cc394756e6 #> 3457 12424 750 NA 171deb91-d41b-43d6-b531-9d4cf7fa2bb4 #> 3458 13941 1093 NA e858a1af-ebbe-4413-9903-ecd96d36a09b #> 3459 8003 325 NA 61a9fbd6-4913-4814-b5a7-9c71fbd4cac0 #> 3460 12753 803 NA c3315876-1a17-4c6e-b024-07db4489e016 #> 3461 15986 1808 NA 42a9be0e-66cd-4efc-8150-91950ed97955 #> 3462 15065 1470 NA 67c59603-6e43-4446-9035-6a2ee811ed1b #> 3463 21659 6741 NA 39e9762a-327a-457f-9361-65c0e10a0e9b #> 3464 11940 678 NA 38a7122f-5c9d-4b65-99bc-b9822f9d981a #> 3465 17301 2833 NA 5651ca6a-4d61-41ec-8bf4-341069ee0591 #> 3466 15530 1688 NA d9f211f9-6028-4153-a9a8-f4d05298e6e4 #> 3467 12157 702 NA e65e1798-fa0c-416c-a88b-c28fc7f6a574 #> 3468 16266 1995 NA dfbbe1cc-1fce-4599-92ae-922a8b79fb83 #> 3469 13520 1000 NA 74c595a3-b683-49b3-90f3-fd8327857b1d #> 3470 16037 1835 NA c5573e07-97a8-4a0d-a325-753af5e564f1 #> 3471 1248 44 NA 22f9e814-6daa-4fe6-982e-c2cc5290561d #> 3472 15703 1740 NA 7bf442fb-62c6-4cf5-8d5d-a8ccd6daa80b #> 3473 21357 6743 NA 671f58ec-970c-4ccd-bfcc-115cecc3f189 #> 3474 16691 2278 NA 4d492cde-8c65-44aa-a4c9-c637b4e22366 #> 3475 17044 2579 NA a333a955-16bf-4157-bc86-a6919ce9edf8 #> 3476 16784 2328 NA 17cc7638-a3a6-4008-9fbb-72f03ef5f775 #> 3477 12305 732 NA 428873c9-887a-48a2-b4d3-e06618ebd2dc #> 3478 14032 1118 NA 6fc9e2c6-fb44-490e-8353-2362b7b94ee9 #> 3479 15139 1528 NA a1308227-2421-4537-9074-3218f078d9f6 #> 3480 12063 690 NA 680fd5cf-3bdc-4317-bc99-cbd97fbebeb3 #> 3481 12581 774 NA e232b84c-2e05-494a-98ac-69489544d16f #> 3482 20215 5517 NA 4f9cc48d-e9dc-42b0-93d7-6938ec0a8e7d #> 3483 20489 5496 NA b0946b90-9a41-4a88-898e-eff0894e213b #> 3484 16280 2005 NA 663dae9c-0484-4eb6-a093-ae19d0a743db #> 3485 14021 1116 NA ba384269-98b5-47ee-93bb-18a4e71ad0eb #> 3486 16978 2518 NA 5a5ff009-7591-4a42-b7cd-07a77af5b939 #> 3487 16843 2387 NA 0af18f1a-0f65-49a0-a09e-b37cfd875286 #> 3488 13860 1064 NA a62a2950-521e-4670-a4cf-47f6863fc0d1 #> 3489 8565 371 NA 9f98ec9c-fac4-48f2-996c-9c7558f64221 #> 3490 17144 2676 NA 775d6455-bc3c-4fd0-9adf-ae105f71fc95 #> 3491 16890 2434 NA 2f901553-926f-44c4-8ef0-1f0ff2d772cf #> 3492 8231 329 NA e3896096-bafa-4c02-bd35-372c4002b3d7 #> 3493 16613 2224 NA 959852b0-ce24-4c89-abff-ded427cbfbdf #> 3494 7383 296 NA acc3b2c7-d229-41c6-bee6-0cc0c5c0cf29 #> 3495 16901 2444 NA 5e576254-2f7e-4456-8bbb-26964d1e67b6 #> 3496 17162 2694 NA 3a17fa1d-19a0-4e5a-922c-7a9b648d2ed6 #> 3497 17175 2707 NA ce29ca20-450a-467e-b683-8bd6fffad38c #> 3498 14294 1177 NA 204e0eb0-c5ef-4522-9056-393e2e5177ea #> 3499 20677 5769 NA 4291f18f-19cb-43ca-8385-50af43d7448e #> 3500 21186 6253 NA 9f54d2f9-b787-4a50-8ea0-9db1cb7760aa #> 3501 12742 799 NA 7190fb71-0916-4f9d-88a0-8c1a8c1c9d0d #> 3502 9051 425 NA b5a6d6f3-73a9-4d70-bfa1-786bf166d14c #> 3503 21454 6530 NA 328dd5c5-51e1-4554-813d-b264098b061b #> 3504 15147 1532 NA b399ac02-6b52-4ae9-8eb0-7b3fffc29eea #> 3505 16900 2443 NA d292c14d-ed36-477b-b088-ce80c9185710 #> 3506 16932 2475 NA 503066ed-f217-4c3a-bda5-07bfc68c1cac #> 3507 17098 2630 NA 6baa540c-d745-4804-b20b-20dae69d0d9f #> 3508 20583 5582 NA 16912b78-47fa-4742-ac95-60df2585a00e #> 3509 21247 6340 NA b454036c-4cca-4b02-b847-c7c9f68c345d #> 3510 17172 2704 NA 1d4e5e39-3328-4043-a743-1af99b5879c8 #> 3511 16969 2510 NA ccde8174-ce0f-44f8-8bc2-e44872a2f30a #> 3512 8950 414 NA 37fd76c4-41d0-4997-a94c-d135bd9dc582 #> 3513 21592 6693 NA 787b5760-f724-4caa-9c54-f26bb6efdc30 #> 3514 16840 2384 NA b0ccc4f7-84a8-448b-bc7c-11e41d14ad09 #> 3515 13400 969 NA 94cbc2c8-07e4-4779-851b-b657b46a7920 #> 3516 16937 2479 NA b8f2a6c5-b7db-497c-93d1-08ac7f3dbbd4 #> 3517 17279 2811 NA 429ba323-7175-4bb2-8f81-e77fe9d38f3c #> 3518 12910 844 NA dc30acae-b1e8-4676-959f-d3dad221c694 #> 3519 16157 1924 NA 8a372789-3c74-406d-b3de-d2ee387b1f22 #> 3520 5083 199 NA 9c6d7765-03dd-4266-aeaa-926e5a85235f #> 3521 19826 4959 NA 6bbb8551-be80-4eae-a1a5-9f877f917a05 #> 3522 21308 6411 NA 7d8a8d31-8628-4a56-934d-ada35fe98e8c #> 3523 12383 744 NA 12aea7fe-1548-4426-a47f-76bac18290bb #> 3524 2194 77 NA c38a3fbc-f9af-4676-b905-4f101a99194d #> 3525 15372 1637 NA b0a3df00-b1ed-4ba5-8c2a-1414b6871e61 #> 3526 20186 5227 NA 0845c23b-3e5d-4802-ac42-e2658a55e9c5 #> 3527 17913 4899 NA 1749d4fa-1cdf-4f62-9783-08dd81e25a87 #> 3528 20633 5737 NA 9e324b1e-b03b-44cc-83b5-1d483b4051e8 #> 3529 21469 6464 NA 189d2495-ff24-4ffb-9887-8fdc717cf4c0 #> 3530 21262 6597 NA c83a2be7-048e-421a-9734-ff1a26a05484 #> 3531 18723 3899 NA b1a65955-f70b-43c7-b262-b6781e404b4f #> 3532 18021 3260 NA 89781fd0-0817-4de8-ac16-c9cf095b333e #> 3533 21245 6338 NA 1435dd7d-3378-45ac-8b35-3ef9260afbaf #> 3534 16982 2522 NA df13444e-015f-413a-89f2-fe402765f232 #> 3535 20076 5364 NA 1d5c2aa1-3c96-4cea-9589-723d3cc9cd57 #> 3536 12885 838 NA 29eb7ecf-3967-4bc4-812f-9ffa947b34ff #> 3537 20992 6134 NA f042a554-0303-4cbb-8ca3-b56281664b7f #> 3538 20147 5187 NA e430f1a2-3546-4691-8dd3-37c6262db83d #> 3539 20564 5485 NA f890f03f-3f07-4e11-bbd3-c59aeb877326 #> 3540 21587 6689 NA 5c10f2aa-0ee8-4629-8a61-3af17877fb63 #> 3541 21465 6466 NA db9afb6c-3148-4e7a-8b3f-182fa8ad28bd #> 3542 21244 6337 NA b6086d5d-4976-43ed-b5e5-56a0251a8e30 #> 3543 20617 5696 NA 7305431a-7db7-47a0-ba82-cc4faff5f278 #> 3544 21485 6616 NA 4ce9600e-ee43-4b0a-becc-c8de646ff451 #> 3545 20381 5616 NA 1a4d1d61-ea6e-4c11-80f5-a6b807932db0 #> 3546 19262 4403 NA 2fa2b6af-de4a-48f7-9548-47333df7fbe0 #> 3547 19126 4280 NA d75903d3-b3c5-405d-a99b-d625bb063d82 #> 3548 21153 6230 NA 859229d6-d9c9-4d5b-87f9-2f5a2145cf12 #> 3549 20304 5473 NA 0ae84f6d-1523-4ae8-883a-149539dcd7b3 #> 3550 20243 5457 NA 6c9c6852-1f41-4e03-83c2-9c4d78e35342 #> 3551 21495 6495 NA 83f3cd34-466b-4d30-acfe-42523e6f5764 #> 3552 21566 6658 NA bab20c49-1865-4c95-a850-fccaca346c18 #> 3553 19684 4765 NA b22487e6-897e-40b4-92dd-3ce8d851e587 #> 3554 19202 4346 NA 590a61c9-e38d-49b2-a8e2-21340d613cdc #> 3555 20596 5611 NA 5729fb1d-9fb5-43da-824f-66b96822f023 #> 3556 292 6 NA 1c5a8bd4-1b02-458e-943d-c391d3f0258e #> 3557 20432 5414 NA d753a8d1-abb0-404a-ae73-ae8beab3d28f #> 3558 10977 517 NA f0d837e0-54e6-496d-9334-e2d6365d16d6 #> 3559 20445 5399 NA 69560a34-8601-4e88-a555-b99955ce28b4 #> 3560 21232 6326 NA d8afa121-1cd9-499c-924c-364a6e0e0f7c #> 3561 14859 1342 NA 52f75d86-f8fe-4411-a381-7675acd5bca9 #> 3562 20054 5339 NA be1314f9-5b2a-495d-be64-579158fd29eb #> 3563 17941 3180 NA 60cc4395-be8e-441f-b6b2-7e74e15f2593 #> 3564 19057 4211 NA 139d8533-cbd7-4a41-9567-f1ce1c641311 #> 3565 20609 5682 NA af606d16-92a5-474f-8674-0bcd440a76c2 #> 3566 18840 4001 NA d59adf1f-97dc-4787-b47b-9dc6148941ee #> 3567 20948 6188 NA 50ffb7df-ae23-4211-a495-3beac62a6522 #> 3568 20645 5725 NA 0bfa4f27-7a00-438a-a0c9-20fbf0be3370 #> 3569 18338 3563 NA 54403340-5565-4fdb-82bf-60c9b38a9bac #> 3570 19050 4204 NA 900c4073-411b-4ef0-9188-fc4188ffe588 #> 3571 18656 3836 NA 3935a558-5680-4a4f-9a7a-a067210a2a42 #> 3572 21147 6225 NA d82636f8-8ec5-4be3-a61a-8b1947a880d3 #> 3573 19990 5085 NA 021fddc1-4ba1-4bcb-9f40-347a0be8866a #> 3574 21488 6483 NA 9fb02841-5372-49f8-b621-958d5bb4b189 #> 3575 21185 6252 NA a3dca1fa-69cf-4468-b95b-63c8d532dc5f #> 3576 18233 3469 NA 555ad7d1-ee7a-4679-b24e-0cbee3ca680d #> 3577 20623 5717 NA 4a1e3f81-112e-4357-b3a4-a7cb7349bd1a #> 3578 18432 3642 NA e4b362e0-d43c-4279-b30f-15000dbc0591 #> 3579 19507 4616 NA 69abeeed-ad7d-46a8-a1a2-ce0c0a1c3afe #> 3580 21483 6433 NA 8c56b03a-baa7-4030-ac56-6648fb154bb7 #> 3581 21152 6229 NA 051dbbdf-1718-4abf-a088-25e551f9a303 #> 3582 19315 4452 NA cbfc2a87-0ecf-4e5e-8d2d-2d171308f377 #> 3583 20131 5685 NA 4813aa50-3a36-4658-855a-1bf1098d7a69 #> 3584 18352 3575 NA 1d9fa156-0e17-4de2-8ee4-6756ea760066 #> 3585 20214 5516 NA 4385e287-c7c3-4a5d-ba11-642d9e7a99af #> 3586 19405 4527 NA 53a75e9c-b028-4ae5-97fc-31992f8d9dc2 #> 3587 17266 2798 NA 64e79f32-c315-45ec-831b-374c0d6e10be #> 3588 19127 4281 NA 76e8187a-8262-4929-8078-36e4820c018e #> 3589 18200 3436 NA f6bb7c37-844c-4f68-bd90-f6bd1a8bb2fd #> 3590 20641 5719 NA 90863a6a-0a66-4ad1-bb1e-13126324f644 #> 3591 20129 5443 NA 0f57f7d4-41b1-400d-bec5-09da91d825f1 #> 3592 21324 6356 NA 991410bd-6edd-415e-9ab1-fb03f0fccc21 #> 3593 21529 6644 NA 743aebf3-b1ad-4de7-a381-f6d10446989b #> 3594 20650 5711 NA d0d36216-31d3-4920-acc2-e97823a46ecc #> 3595 19383 4511 NA 2717b760-4ea5-4e18-b1b3-b39275b8978d #> 3596 20048 5411 NA 8ecba9b0-11b8-4cd3-88f2-3f8301d385f8 #> 3597 19337 4469 NA a0fb3448-d9ff-40d4-8387-59a802768794 #> 3598 20347 5605 NA fdc9f4af-b677-44b3-947d-d7fd18e77390 #> 3599 19144 4296 NA d6d18868-c912-4af0-961f-e529d8fc8e45 #> 3600 19095 4249 NA da734b72-1ac6-440f-89c9-40b90c0ad1a7 #> 3601 19152 4304 NA 3a1d02b6-1940-49b2-a0e8-1ccb1896c5e5 #> 3602 20751 6064 NA ae2f82ea-f93c-4133-93d9-3404006f3035 #> 3603 21511 6498 NA c7f8e21d-25fa-4a9b-b4ca-ac65f548031c #> 3604 18509 3703 NA 3423801e-c462-4d71-a740-28dca36bcbfa #> 3605 19456 4570 NA 65fc4235-1a53-45fa-8117-b40bfdcc807c #> 3606 21550 6670 NA fbf333a7-12c2-44da-8705-994abaadd67a #> 3607 20334 5453 NA ebb3f664-8f39-448b-89aa-422f4aa9e312 #> 3608 21243 6336 NA 199c8ea9-eaca-405c-bb4f-e2738e59294b #> 3609 21233 6327 NA d01f2455-60cc-486f-b8c4-9716f9e85b1b #> 3610 20735 6066 NA 6f896917-eb15-41ad-9e0f-18ca8e8969b4 #> 3611 20163 5213 NA 80990455-df2a-4d7a-92a2-7828f4f9c777 #> 3612 20705 5807 NA 27a44c07-9e5c-4332-9ad1-7e66ddf0e9c7 #> 3613 21665 6748 NA b3768244-a2ee-4ab8-9c2e-4e83ac020821 #> 3614 21237 6331 NA ca8107bb-0548-49ba-8f76-2a65f93c4dce #> 3615 18554 3742 NA e549984f-1414-4468-9645-4766ba767510 #> 3616 21075 5940 NA a3c8276d-e6f7-4fa0-bffd-a087f225ef54 #> 3617 20177 5180 NA 16b9334d-bebc-4f2e-94af-0450cb5dd0fe #> 3618 21182 6249 NA 43fbd37f-a5c0-483c-9522-0f20c6483d80 #> 3619 21489 6484 NA a8873d1a-d00f-454a-b18d-8e833d429108 #> 3620 17311 2843 NA 7595ead0-d80a-4dc5-bbd4-b2577d566608 #> 3621 18138 3377 NA e02ce2d7-5bcc-40f2-a35c-3e80e6f7b695 #> 3622 20647 5720 NA 9c00d8a7-dc6e-4701-8ebc-2f9eb0a38324 #> 3623 20436 5418 NA 23489c12-9efd-4a72-a43a-38d2981caca3 #> 3624 21502 6508 NA b58cabc3-4443-401f-95fe-54809db519ab #> 3625 20658 5749 NA 172b5902-e710-4101-ae32-9c18be65266b #> 3626 19519 4625 NA 0854bc61-cced-4ec9-84fe-726c822d6926 #> 3627 20580 5573 NA 7a0fe22d-0eb1-4339-91d6-0d21b4804eb9 #> 3628 20574 5559 NA 2cf0146b-c27d-401b-a5f3-7774748343bc #> 3629 21579 6680 NA 556c438d-87bd-4ef3-adfe-1ee617e7ef2e #> 3630 20041 5380 NA 7c256087-75e7-435c-8efc-5b46ad316e6e #> 3631 21624 6706 NA a01280a0-41f3-406a-83bf-3d57e2a6db90 #> 3632 17910 3154 NA 366703df-ee7c-4f00-b6a4-ae475956f039 #> 3633 18120 3359 NA 36c85a2b-ce62-43b4-b6ec-0497323da1a1 #> 3634 20545 5657 NA 53542368-9d32-4728-a72a-4e788f9d9ab3 #> 3635 18086 3325 NA d65013f2-51b0-45a6-8f26-608574abeee2 #> 3636 19580 4679 NA ac973c8c-c148-4866-b3fc-f39e402d61d9 #> 3637 20786 5939 NA fcba2ad8-5b56-4d42-8250-937e58a6e6e4 #> 3638 18572 3760 NA 8fd82d9f-fa30-45e3-8c5d-e2278441a984 #> 3639 16908 2451 NA 5b947dd3-1a96-48ef-bbf6-bf905556629c #> 3640 16971 2512 NA f824eed3-af52-4794-92da-f32974831c98 #> 3641 20031 5343 NA 2feb5241-ab81-4907-b660-ef8e92976224 #> 3642 19248 4389 NA 3513168f-e8ec-4dc8-984d-c305758d2e38 #> 3643 21059 6015 NA 5c972829-e159-49de-9aa8-edf961b39850 #> 3644 19058 4212 NA 99e9c388-c562-40d4-b225-e99c57cb55ba #> 3645 20846 5907 NA 0daacac7-7fd7-4ceb-9c2c-c7eb24e929e7 #> 3646 20605 5680 NA 00fab770-3336-436e-9901-89849769b7b2 #> 3647 20394 5387 NA 708dfc0a-2a20-4551-99a7-8188fe4cf99f #> 3648 18635 3818 NA ff813dc6-d3fb-4021-830c-736996df5863 #> 3649 19651 4736 NA 0d48b2af-aed0-49be-9945-6c091040206b #> 3650 18410 3623 NA 2ae84168-c2e9-4dd0-9680-afc1f9b11668 #> 3651 18304 3537 NA b6e1d56a-8fc4-4ea7-a88e-52f281c6d4ba #> 3652 19115 4269 NA 1b96851a-604d-423b-8bd7-f0d394bd6ca8 #> 3653 18828 3991 NA a8e9bc1d-a8a8-4b93-b108-0f0f7fa04185 #> 3654 17027 2563 NA bed14e65-6ae0-4ad0-9f9a-85abb3c4824c #> 3655 18557 3745 NA b8569ff2-bc1a-4b91-9830-c840e7b94549 #> 3656 20547 5556 NA 72fc9f1e-a09f-44bb-a2f8-4a51273fcb40 #> 3657 20359 5564 NA 4baef7c8-e86c-4524-b9ab-a25cbbc46fa1 #> 3658 20126 5488 NA 80fa17ab-6d73-4276-a9e8-ede251995fa6 #> 3659 18962 4116 NA a2b6e1f9-1f06-45e3-b6e9-79ec8490e5ef #> 3660 20572 5546 NA f8ba56d5-ba8f-4ed0-92bc-e850c619bb80 #> 3661 20603 5643 NA a9b13ddb-a292-46b8-8f66-13fe60cffe5a #> 3662 19586 4685 NA 8c609519-c1cc-4c84-bf7a-9c6c8d483800 #> 3663 21375 6550 NA fdc21b70-71d4-4b68-ac29-8470f9a95ab2 #> 3664 18590 3777 NA 91555a62-f501-46c4-ba59-20f4a27e8d8d #> 3665 20622 5716 NA 9a63551b-fc8b-43c3-9f70-1f19835cf8c9 #> 3666 20251 5677 NA 3a7f48c5-6cda-4793-89a0-2bda1bc55e14 #> 3667 21155 6415 NA 1247fbf3-500a-42e2-a323-7a3d4a006984 #> 3668 20207 5419 NA 66a249cc-3ba5-4b1b-bc6d-b292f7f8fc51 #> 3669 20125 5487 NA 11e233cf-0f59-40b1-b59c-f5f3bb06bc7e #> 3670 16176 1936 NA a2fbe350-af20-459a-b8b5-3c9a0bab06fe #> 3671 18485 3685 NA 998fb46a-9579-479c-be9d-9ad9478b6000 #> 3672 19121 4275 NA 367d293e-9fc9-41e4-875f-3f2c1f8565c2 #> 3673 20430 5521 NA 0f8e560c-013d-47ad-8fa0-2a397ab3258e #> 3674 21654 6732 NA ab9fd2ff-fb48-4d8f-824c-5172fe67d28a #> 3675 19113 4267 NA e6723038-94ed-468b-aa3a-9c2080dcae81 #> 3676 20474 5405 NA 1fc0823d-73ff-4657-9c85-f4527abd6a12 #> 3677 20417 5651 NA 3f35f03b-45c8-4bac-a535-b97a0c5022b3 #> 3678 18436 3645 NA 18ac09ad-486a-4f94-99d0-2099aa85b746 #> 3679 17738 3034 NA 8bb26f10-90f9-42ce-bca2-1f450515d9d9 #> 3680 20613 5666 NA 9ddec51d-2012-4a18-a37b-fccabf04e0a0 #> 3681 17517 5729 NA 38e300f8-1cb6-46cf-966f-4c65f7c49d4f #> 3682 18406 3619 NA f9344384-6d80-416e-aec8-876683583801 #> 3683 20242 5456 NA 4ed28749-5605-4706-a6c8-565dcede96bb #> 3684 18651 3831 NA a217c048-2479-4b4a-8b47-6e166b16d1ed #> 3685 21506 6638 NA ea1c9271-d0b7-463b-a232-3cdd74b31427 #> 3686 21580 6681 NA 9aa9d930-6ab7-4ba0-b6be-69f50497d8e1 #> 3687 15039 1457 NA cfb697e0-f8c5-4986-a2ba-59c99e3b5b1e #> 3688 19147 4299 NA 97be6c07-9295-4f98-8a7f-83aaa7a47aad #> 3689 17002 2542 NA e9256df6-ca8b-4575-8df8-75bf3367b85b #> 3690 21359 6580 NA d5608d99-560e-4026-85cc-4ef79d1f1d27 #> 3691 20569 5525 NA a8edaf07-1599-47c0-a138-1fab2a84dff9 #> 3692 21371 6410 NA af51a581-554a-418f-a3b1-5e24da5dd190 #> 3693 21539 6648 NA 89fc014a-7d41-40c9-90d1-1459286813e2 #> 3694 20363 5390 NA a891204c-a3dc-4d72-a72a-b004ab4d9d96 #> 3695 21280 6532 NA 630e7cfe-e952-42c3-9ffb-33192be4711a #> 3696 19106 4260 NA 907dee94-20a5-4ded-a25f-c5783c41a44e #> 3697 20916 6038 NA 93d8047f-24c5-4a8f-827b-b3ddacebc561 #> 3698 19226 4369 NA 6e480446-348b-430a-b2d0-dca65cbe9fb1 #> 3699 19372 4500 NA eebb987d-dbe0-4d3a-95a4-33144c6bb53a #> 3700 20639 5728 NA 32a0db4b-3c70-49b5-8921-ed99310691cf #> 3701 21402 6406 NA 01be8423-2835-4450-80c1-4e462bbfb661 #> 3702 19340 4472 NA e5f9d5a7-f2f7-48c5-8abf-a72b8400dbcd #> 3703 20668 5763 NA c3e877c0-282c-4955-a1cb-7e12403698e0 #> 3704 20640 5732 NA a6fa52bf-e47d-4799-b0f2-cb9fa9939220 #> 3705 17429 2953 NA f43c9d6b-8caf-4f00-a0c2-bb1f73e70a86 #> 3706 21135 6297 NA b867114e-9ac1-4368-aa44-226b6342c500 #> 3707 18117 3356 NA cce52ea1-7e17-4992-8911-e6b07b7b3831 #> 3708 20268 5531 NA 99c3a17f-afdd-4150-ba51-2120b61823fe #> 3709 19693 4776 NA 86f9a399-bcd3-452a-9cf7-3a72294f2892 #> 3710 21447 6473 NA 30ed5daa-7bbd-4c35-b7ad-0ad0f9350973 #> 3711 21181 6562 NA 707b300c-cc7d-48e9-a0ea-ef20bac0ed0e #> 3712 20896 6010 NA 10498aac-6432-404e-8bcd-52b0b9f57a21 #> 3713 19616 4709 NA 6c8bf92c-4031-4ae8-84fe-4a47972b3bae #> 3714 21300 6412 NA 79348865-f45a-45dd-8b2f-a919b3fcc91b #> 3715 20433 5415 NA f73a26da-0da4-4a51-88b5-98988ca94c58 #> 3716 21501 6603 NA c54e7e12-8433-46de-80fa-ae98cb5407dd #> 3717 20927 6086 NA 8e57530b-1a1c-48d0-a6df-9fb2fa75f581 #> 3718 21504 6613 NA 8721884c-d136-4c87-ac7a-c61c035f1af2 #> 3719 18560 3748 NA 02d2c680-e929-41d9-b514-67ffe0c4cd2d #> 3720 20118 5529 NA 9314e111-0b7e-4a75-8026-0cc5abe40543 #> 3721 19434 4553 NA 613aaf0a-ee53-431d-9bb9-aabc174fdab9 #> 3722 20100 5151 NA 726fbbac-42c1-451b-8712-72f92fc1cf77 #> 3723 18022 3261 NA c6c63d67-4913-497f-a17c-55c72cbe5b9b #> 3724 18610 3796 NA 66a432fc-ee15-4f63-a37b-207c1b5e7c31 #> 3725 21460 6509 NA dec4a1a9-5bfc-4ca3-ad1d-903020bf4403 #> 3726 19190 4334 NA bfa27c96-613d-4233-b661-e9b5e3624659 #> 3727 16996 2536 NA 649b6405-54eb-4c23-8a30-84c2f2c3031a #> 3728 21331 6474 NA 20b85f3c-8cec-40a3-8cfe-05a4fe43c23a #> 3729 18836 4918 NA c9593a7a-1b6d-4112-aabe-2c47f53e6f13 #> 3730 20386 5617 NA b07a20bb-da2a-4440-a295-44352d350cd6 #> 3731 7606 307 NA c4b15bec-4adf-444a-bda1-5a07ade70abf #> 3732 20426 5413 NA 80f0f41f-1b81-4552-bcc8-407d96add7c7 #> 3733 18908 4062 NA a87c5fa3-3e73-4c15-bce7-9c2c7152f58e #> 3734 15625 1713 NA ca668ed5-05b3-41da-a3a4-6fa8982968f6 #> 3735 19245 4387 NA db3b481f-4edb-4392-87c6-6198ec2a12b8 #> 3736 14710 1271 NA ce74af98-fcfc-446d-83fe-e875d2e8dbd9 #> 3737 21191 6563 NA b24beb2f-de5d-4160-8b82-d7a5578b59af #> 3738 3764 135 NA f6b48c8b-66ac-47a3-aafc-5addce6a6d82 #> 3739 17501 2990 NA 728a0b65-0f9d-4af3-944b-b12cd74243bb #> 3740 18815 3980 NA 68969959-6910-49f3-b08a-05cabe34336e #> 3741 14628 1253 NA ae103342-a4f0-4dbd-8c2a-63d9b159d9bd #> 3742 14192 1151 NA b4e5d1c1-5915-4326-b737-d6c796da0d75 #> 3743 17450 2963 NA 325735c1-9fa1-48ee-bb8d-2ae45781f28d #> 3744 13281 944 NA 947ba5a9-71de-4cc5-839a-884cfa49544b #> 3745 19818 4954 NA 9d8effd8-9693-4b7a-b235-cf1d5124af64 #> 3746 21204 6403 NA 2df27f31-ffaf-4c2a-abed-0c34d4081f07 #> 3747 15148 1533 NA e6166069-6d2c-4121-9988-bc7b533e1558 #> 3748 21260 6343 NA 941662f4-da41-48cf-a663-cfbd011491bb #> 3749 17971 3210 NA 92c02ef1-8400-4f5a-9420-6458755e14d4 #> 3750 20704 5808 NA d5008b72-1433-4239-b06c-14c5b33415b0 #> 3751 14404 1200 NA fa8cfe11-018a-4d4c-9588-c86cab0415c0 #> 3752 14053 1126 NA 0847010c-9a77-4f0b-9d63-c8b4b224d263 #> 3753 16864 2408 NA 609ab653-c3d4-4138-a2d9-c697a34174ad #> 3754 14971 1411 NA d4dd3d0b-5023-415d-ad15-94f294c561b1 #> 3755 20113 5165 NA 4c54672f-f0f5-47ff-9d98-33137e3c0773 #> 3756 20507 5709 NA 90395591-32e3-42e8-962f-1f82f7cd6e75 #> 3757 20308 5265 NA 7bf77a00-7fd4-47c9-8806-4122e3846eae #> 3758 11527 621 NA cc3640b0-7560-431f-84ab-599e9dc8cac6 #> 3759 20142 5228 NA b6f50b3b-0b8b-4318-be6d-b6677616a3c6 #> 3760 20595 5597 NA c9d1cbdb-96b7-4264-9469-042f42591346 #> 3761 15746 1747 NA 663b69e5-1fc2-404b-9a3f-f153c650ee89 #> 3762 21425 6606 NA 5b9c1f26-de51-4dbb-bf9b-6e8ea6eb6968 #> 3763 17929 3170 NA 19e253df-b121-43e4-a222-6df5fa8ad93f #> 3764 20025 5118 NA ca457f6a-eb43-418a-97a7-4f4304dc5875 #> 3765 19497 4607 NA 6c5c5f15-33d2-4df5-af4e-e026755d2d65 #> 3766 3867 142 NA c32d8200-2b85-4638-8db3-9a52fb86b207 #> 3767 17974 3213 NA 648a6a76-32c3-45fa-b158-f77de2a9a95f #> 3768 20209 5237 NA e187574f-622f-4477-a61a-edec81adff2f #> 3769 16211 1957 NA ba2e7ff8-ed39-4fd1-85e3-d263a946a212 #> 3770 12083 691 NA 72fbe462-91c5-4c84-9640-e8ad7cad6447 #> 3771 4932 188 NA 6cb6226e-f08c-4192-95f1-69709ed686c6 #> 3772 20368 5286 NA b8a2180f-a864-4358-ae73-c1ce006a4a7a #> 3773 17927 3168 NA 8f924766-111c-4cf2-a13b-2221e1013909 #> 3774 20004 5108 NA b88e39e6-3247-4f85-9909-c18d373eaeee #> 3775 21646 6723 NA c1f2f510-3542-47be-96de-baa784b1f8d8 #> 3776 20468 5392 NA 678be3a8-1589-476f-b8ff-8189c451a301 #> 3777 17932 3171 NA f1ec6243-aaca-4237-85fb-9699bc90aa09 #> 3778 20305 5263 NA e1767e07-8ccd-479e-b356-b7024084518f #> 3779 20222 5239 NA d45cb60d-b5d2-43e4-a202-97a43e7d2d27 #> 3780 17966 3205 NA 573f7acc-376b-4f37-8039-5c4c15c4a508 #> 3781 8415 350 NA e6c40f79-1bbd-4f62-9391-7f535f110c0d #> 3782 14868 1349 NA 19d00799-4271-40ac-b5c4-4ea8b410a704 #> 3783 13910 1085 NA 01291a8d-d97c-4d88-b497-b5ad4b72f626 #> 3784 15982 1807 NA a6155092-1005-4b4c-8e37-21422ce93b42 #> 3785 20453 5403 NA 2b136f32-c023-427c-a663-29b921e5ce90 #> 3786 2428 91 NA 57ad34b3-f60d-4b2d-9e01-3cb5a9451c37 #> 3787 18525 3717 NA c67e52b1-0801-4a6c-802c-32cdc78bb7c9 #> 3788 21316 6371 NA 17c30647-39b9-46c2-9ba5-599f6007fc71 #> 3789 14008 1111 NA e3181493-6a2a-4e95-aa6f-3fc1ddeb7512 #> 3790 19068 4222 NA 5e5ea79d-7127-4e65-9cd5-b2a0a1fe910e #> 3791 8723 389 NA 8263e101-aa33-435f-bf0f-388e1c4eeb59 #> 3792 18204 3440 NA a798a651-cd63-4007-9c30-0af0d4c5c1ee #> 3793 21167 6237 NA 1c56ddce-b89d-43c3-a268-f19e625938aa #> 3794 16836 2380 NA 5b64cbb5-0af6-4efc-a441-31c1f33d2eab #> 3795 16345 2050 NA 7dac43ce-3a74-4033-b63f-bf9171a24a55 #> 3796 18349 3573 NA abeef681-4be7-4ff3-9076-c72ec5a1b2e4 #> 3797 21023 6031 NA e63d39ab-704f-40ad-9036-b8bad7ece8bb #> 3798 19090 4244 NA b92d015f-0e5f-42e5-b85a-9c68ee6d8f1f #> 3799 17102 2634 NA 7dc5af64-ae1d-4915-8af9-a4f5fb601710 #> 3800 21456 6446 NA 6d882a8b-c34f-4de1-89d2-8ee71628e039 #> 3801 17023 2560 NA 2a4de276-55bd-4756-9fa5-89fe30f5304f #> 3802 13255 936 NA 65b991ed-ad0c-41d8-bbe0-95fc147c9441 #> 3803 17050 2585 NA 488c3707-26ee-4e1a-8742-494a06f77801 #> 3804 20588 5587 NA 86b05ebc-a22f-46a4-b521-67cc0b1fa206 #> 3805 20686 5785 NA e528d5ca-0033-42f7-b4ff-509fa84b3046 #> 3806 18225 3461 NA 2f260f4a-e42d-4456-a361-24e6e5a0de23 #> 3807 20697 5800 NA 40e3d913-a28a-4e51-8618-70ac40382dc6 #> 3808 21101 6203 NA 9559901c-5e13-4d23-bd11-d9eec372aabf #> 3809 18435 3644 NA c7dc96df-0837-4681-bcc5-9663a3f1315f #> 3810 13124 904 NA 478ae115-d220-424e-af45-56137f163d3a #> 3811 20598 5624 NA 63a42b17-bb3e-4e68-970f-aa2fffee4d10 #> 3812 16609 2223 NA 4cb511e9-4d43-413e-998c-2778cc7786fe #> 3813 15616 1709 NA 44ac9500-8fd8-4512-a5af-d63bc00aea7f #> 3814 16699 2282 NA 0e166068-5f25-488e-9115-4d1146de184a #> 3815 15224 1575 NA 1ce7bca8-68f0-47ba-9484-5baf57dd75e8 #> 3816 21221 6318 NA 2e194e2d-74ff-4a70-9bef-724779bcea15 #> 3817 19531 4636 NA 4c0b108c-e50b-4fee-a123-49c7e7c705d7 #> 3818 7969 323 NA aca06a5e-0e3a-4285-a025-199f8fa0376f #> 3819 20166 5192 NA e8a4e5aa-f17b-49fe-8b8b-8efac0fc40f4 #> 3820 21367 6539 NA d2166e46-897f-46e6-9f86-fd98b9f3f3b8 #> 3821 18451 3657 NA 6a65641c-5ee2-44e3-8a75-7f98887b40ae #> 3822 14352 1185 NA b4ce3e07-7848-4da2-a33e-4f04ce540ba5 #> 3823 21041 6021 NA 86d0d3b3-5400-4fc8-943e-cb0a92d69e77 #> 3824 20561 5463 NA 9ceb92c0-25d4-4e05-848f-1ddce1774410 #> 3825 17101 2633 NA b1e1f2ed-e978-4fe2-8a4f-81c25e722bdb #> 3826 16307 2024 NA 65f91b8b-6794-4273-bf42-4d00b5973ddd #> 3827 18217 3453 NA 1bdc067c-6376-4c35-b9f8-cebbb1ad595f #> 3828 16909 2452 NA bb78a66a-a8ec-4294-8858-c7e5a1d15106 #> 3829 20521 5398 NA 3dc42923-568b-4e5e-8c97-cb10d8527f7a #> 3830 18488 3688 NA ba36a4bb-5cc4-4113-9b5d-32bab02ef966 #> 3831 12386 745 NA 82bce0be-9a87-4b6d-a85b-623bf8d1674e #> 3832 20016 5115 NA f9e352ee-a6f6-4b92-8683-1867739d6d94 #> 3833 15207 1564 NA 06787c1d-f02b-4217-9152-c269e826928a #> 3834 16886 2430 NA 9173225c-4e88-4c87-ad78-41aa0d00a1be #> 3835 16127 1901 NA 40cd928f-f228-4ffd-8179-b27a12e14a44 #> 3836 19700 4791 NA 5f2136e8-d439-4fd7-b023-b03fe3fdb5a1 #> 3837 21391 6592 NA 5bbe722c-3a86-4ef4-a730-ff83c2676d69 #> 3838 16099 1880 NA 6eba2319-7d5b-44da-bc48-280d3f9e423f #> 3839 19391 4519 NA 414b95e9-e7e0-4ede-aef6-b0825ddda611 #> 3840 20706 5809 NA 7dbed172-8808-4ddb-88f9-7b46414bbfc6 #> 3841 21571 6664 NA 35d4b581-a090-4e15-be33-140485a8fb1d #> 3842 2699 103 NA a4970b66-6eea-4d9a-9f96-15b528161b57 #> 3843 20327 5274 NA 7fbf8067-075e-4db7-8090-6ead0e5b8910 #> 3844 15020 1451 NA f7841baa-9284-4c03-b698-442570651c6c #> 3845 12239 717 NA 72f5a27a-544f-468a-b10b-89a1fc5d0e9f #> 3846 18299 3532 NA 81050032-4268-4906-874f-3463a6b57a3d #> 3847 20700 5801 NA 88c294db-5c85-48dd-9b0a-7c31a9eae32f #> 3848 14533 1232 NA 63fd9abe-4bdf-4611-9497-0c67e030ce01 #> 3849 20552 5618 NA 9a86b7ee-277d-46d9-940a-51dc89d3721c #> 3850 21622 6705 NA ab38817c-07a5-4862-a338-1baea17c0248 #> 3851 21627 6710 NA 64602329-20b8-4690-a924-544a22bd09ae #> 3852 16112 1892 NA 59fc3367-5514-4616-a93c-06e4365b2293 #> 3853 19529 4635 NA b9b88174-d790-4ff2-85cd-fdbfa03405f6 #> 3854 19078 4232 NA cee77408-f330-4a16-bb6f-dead52f9291f #> 3855 13158 913 NA bcce08ec-736e-40c1-bb8d-ebe2d489f331 #> 3856 20091 5144 NA 9ac049a2-9286-4898-881a-f349bbffd223 #> 3857 19278 4418 NA 1b577eee-a177-4b56-833b-4e55e0632585 #> 3858 18235 3471 NA cd0f8e25-7df1-406c-bfc4-058a435aec3b #> 3859 5451 218 NA 96a1fc85-5af7-49fa-a5ac-ddc06c205ced #> 3860 17066 2598 NA ced6a2eb-a067-4865-b9e4-f6b0a925e55f #> 3861 19024 4178 NA d9aecfba-a416-4d99-b26a-dfe78f876b73 #> 3862 18680 3859 NA c79a901b-cced-42ee-be24-dc0059c24a74 #> 3863 6828 272 NA e5e0c7f9-c4e3-4de4-8052-d9c083393a99 #> 3864 15010 1441 NA 051ac116-6d32-4e77-91da-e0ce27d202da #> 3865 16934 2477 NA f413d6fb-5105-4110-b915-d92840a3e656 #> 3866 20661 5752 NA 80be80e9-8b41-49ac-919e-6a184a6f8f7c #> 3867 16898 2441 NA 65e4d6cc-988b-42f6-9eef-4fc70eb8f564 #> 3868 16309 2026 NA 307141c3-baf9-486c-896c-5bb825f4d082 #> 3869 17016 2556 NA 03e668c4-0249-4838-b633-f2f10a6759d0 #> 3870 20294 5259 NA fa890b86-8204-40b0-ab8a-301a35d15ad6 #> 3871 19353 4485 NA 7e199884-1db9-4684-b308-a20ca28c646c #> 3872 6198 246 NA 15b156b5-30cc-4070-b60a-1c09e62c5a9b #> 3873 18227 3463 NA 38a9afff-33b0-4c29-a66e-8ba4d22c0d29 #> 3874 20136 5201 NA 878d42bc-8f58-41b2-9179-46a0c834e219 #> 3875 16273 2001 NA 4402b8d5-d6bf-43d0-9198-651506abba76 #> 3876 2262 83 NA c1ffd69d-92d7-4e12-8fd3-db9977d6dcf4 #> 3877 12800 818 NA 4a38cda2-e92f-47f8-b324-0c34e09d83f2 #> 3878 16867 2411 NA 6512b90e-d6b3-4719-bb0c-a75f97673f37 #> 3879 16142 1912 NA 46d5a560-8260-44d7-a8db-8adb6fd8f2e9 #> 3880 17197 2729 NA af944a80-eba7-479d-b3b1-73279abdc67a #> 3881 20562 5464 NA b928bd74-ad93-4251-9c96-300bfa04857e #> 3882 21283 6506 NA bbd96f73-7fab-4047-bde6-b66b0228a06a #> 3883 20078 5138 NA 77002a9a-fa1d-4040-b7d5-976159aae433 #> 3884 12780 814 NA 600ae879-d95a-4ac4-ae4e-72c05a05f1ad #> 3885 16189 1944 NA cbf1cdba-d165-45f7-a695-5e0971dd9042 #> 3886 15966 1794 NA 481da4a3-fb29-4480-9db4-9cffdf33f510 #> 3887 16856 2400 NA 2641d36d-7c61-445f-980f-313671f2e8ce #> 3888 20192 5195 NA ac6aeee0-d291-481a-a914-947061b639b2 #> 3889 19412 4533 NA d53755df-ba10-4546-bfc8-b728eaf192e6 #> 3890 20624 5700 NA 845d6938-ca66-42a3-8913-1772bb8de446 #> 3891 14872 1353 NA d08da2a3-8296-4038-bb46-ab1feca4bbd4 #> 3892 20801 5976 NA 677b17b7-a8c2-4f2b-ac73-fe086de32103 #> 3893 19797 4949 NA 1c42cbe4-115b-4f28-ac50-e9bc977371b2 #> 3894 14549 1236 NA 87f35e44-8c37-4381-97dd-e3df2a83beeb #> 3895 18256 3491 NA 5274fac8-fa34-46fa-ac4d-7b58bb84999f #> 3896 20309 5266 NA 65def267-986f-4d5d-96fb-42b9209833b1 #> 3897 21520 6548 NA b248e75c-d959-4fc4-8df5-87030f462951 #> 3898 14046 1123 NA 6e024d51-d5fb-40cc-8a07-495f81347ad1 #> 3899 19257 4398 NA 5ec329e9-0752-487d-9ebd-40c6a03c41e5 #> 3900 18339 3564 NA 538d0379-bf54-4df5-9564-ae33fcd551e1 #> 3901 18153 3392 NA d57233b2-3d11-4405-b490-e33ec698f945 #> 3902 21491 6491 NA 1e85069d-9402-4bdb-8aa9-79e30713df43 #> 3903 11256 571 NA 55200cbf-e475-44fa-a875-a51998c20457 #> 3904 12296 730 NA f5d20030-d934-45e3-8282-e34c6c83ad84 #> 3905 21286 6448 NA ebbd3227-f6e1-4311-ad57-a76c361888ff #> 3906 17067 2599 NA 512e3d02-9d44-4ede-bf6b-660cffbf8a31 #> 3907 17199 2731 NA d6e545a7-281d-4a0d-8988-2a4340323529 #> 3908 13299 949 NA 91a95850-9514-49d5-b2b0-f8e21156daa0 #> 3909 19428 4548 NA 856182d1-221e-48ce-bce4-58c7843549fa #> 3910 18885 4042 NA bfadb11e-2e89-48f6-a7b2-896be3106dc8 #> 3911 19085 4239 NA 294b247f-c8b9-4fe7-9fce-bb4011fff02f #> 3912 20741 5918 NA f3c3c5ba-2788-4708-bbc5-4ea525d06a81 #> 3913 21293 6385 NA 802d7f08-9fbf-41bc-aa67-2bc6c8a09963 #> 3914 15256 1596 NA cf8e8522-6220-4612-a8a1-72c496dac536 #> 3915 19111 4265 NA 385eccc0-c138-4cda-8c50-84b996d21b8f #> 3916 20690 5791 NA 8b08fa71-adf7-400c-84d7-f247e57ea93f #> 3917 19186 4806 NA bab97866-4834-4b76-a712-fb7069a5f803 #> 3918 12774 811 NA 170b4c5f-a345-4899-8d81-e8982b0f3d65 #> 3919 20504 5407 NA 9e0a37e5-9814-4b43-a79d-0a51c97ec5c3 #> 3920 19516 4623 NA 5dac4c6d-332a-48fb-b4ab-f90240800351 #> 3921 21166 6236 NA 211e459d-99a9-4ae6-bbc9-ec2183046d6e #> 3922 21317 6372 NA 91671654-f27f-498a-b3ed-7bf006ee3f2b #> 3923 15045 1463 NA a0e27c0c-0b7e-4da4-b228-1a366b09596e #> 3924 20534 5462 NA 5ab29759-c330-4147-a2cf-be04bbac66aa #> 3925 20804 6115 NA 14e3c57f-0eb2-49b5-9e94-10a4a54990cf #> 3926 16989 2529 NA 36007e6e-ca6b-42ee-b9f8-79a9a964f5bc #> 3927 20263 5252 NA 29b6ebb9-1d22-464b-b7a1-e132057e0f28 #> 3928 19229 4372 NA 017fcaa2-13d3-4159-8fd3-13c71ff7707e #> 3929 20472 5395 NA 3d36bdab-2521-44da-8ede-30226510c2b0 #> 3930 10949 507 NA 64d9a11b-2d05-4173-ac72-4f9e63fb4aa6 #> 3931 12317 735 NA b66acf1d-a43a-46af-bc51-7595c5add61b #> 3932 8066 326 NA 97132012-53f4-44c8-96da-88f0e8a819e8 #> 3933 20340 5278 NA b12a30ab-c36e-4a60-b1de-1ab9cff34524 #> 3934 19915 4997 NA b120cb2d-04b8-4dd3-809e-92c9b4c29b0c #> 3935 15138 1527 NA 030f508b-be11-478e-bf68-d21e70fcff7b #> 3936 20549 5558 NA 3f58b3d7-535e-4cd3-bd1b-603f9c36bc98 #> 3937 17969 3208 NA 997525cb-5d0d-4f3b-bd56-7488b62627ec #> 3938 20501 5550 NA 60946edc-733d-4da3-93af-b63d269536ae #> 3939 14385 1195 NA 5c2a0c83-e18a-43dd-bd65-704771157e42 #> 3940 20236 5507 NA 6a83bc28-1b9c-41b7-9860-aa1640929ec3 #> 3941 21327 6351 NA ed58a10c-d9c1-4ec5-8b25-0ba65aade9f4 #> 3942 21002 6087 NA e6357477-ecbf-4489-a0cd-49a6a4feb807 #> 3943 20475 5406 NA 20d25783-a394-4771-96a1-97dd818053ba #> 3944 20573 5527 NA cc5a9d4b-7838-470d-8c36-182e97ff161d #> 3945 16502 2156 NA 2a027210-21b3-4723-868d-df995e5d7441 #> 3946 21524 6547 NA 472c659e-621d-4933-b539-1ad9fedc21ac #> 3947 16957 2498 NA 04917392-c076-4f86-b3f2-c20350b0efb2 #> 3948 18191 3427 NA cbe0aa91-829a-4ecb-ba86-01d90135ac05 #> 3949 15516 1686 NA 7690ab6a-2ae0-4449-abd5-74ec54403f2e #> 3950 16473 2135 NA 977e4e40-c596-43c3-a5a9-2141f6590b89 #> 3951 17673 3023 NA 4a859afc-0cdf-4d0f-b91d-da30e88cf58a #> 3952 19324 4781 NA ec7bdd76-8299-484b-a84b-057474f17af6 #> 3953 20535 5467 NA 64cd627b-77b5-4502-8612-3fc3fa724426 #> 3954 13468 991 NA d58339ad-6ec1-41cd-98d7-964ac47d7225 #> 3955 21453 6622 NA 6077550f-2d44-41b4-956a-44fcb0482bb5 #> 3956 17252 2784 NA 511ec990-f0f6-4432-a10f-2dcbc8efd485 #> 3957 17091 2623 NA e73ef17d-9ef4-4469-bcb2-0841c3c4d27f #> 3958 13789 1047 NA 22b30e9f-e24b-4fa1-a038-77e8f6d9f2f9 #> 3959 17984 3223 NA 6aa53b87-fcbf-4edb-b61a-460580f93e5d #> 3960 20195 5198 NA 7f4b8e34-6a2e-4b60-9df5-732e5ef838be #> 3961 21150 6228 NA 7fb0ab39-da56-4f98-bf9a-90661a82dffe #> 3962 19112 4266 NA 2bbbcaf8-553d-4250-b0e7-24cd90b5604b #> 3963 11271 575 NA ad9a6262-7df3-41a8-9753-b89866f5cd0e #> 3964 20087 5160 NA bfaf12ae-0199-4956-9ae7-d8a1dbfdfcd2 #> 3965 15179 1542 NA e4039abe-35b3-4b78-9752-e714ef01cecd #> 3966 18335 3562 NA 5405b613-39ef-4c12-977c-e199bf112e43 #> 3967 11589 636 NA c5c25485-c0dc-4b5c-abe1-312fdd368637 #> 3968 21326 6350 NA e33cf2fe-4f46-4190-8344-b8c53be1e482 #> 3969 20872 5958 NA 352d09d1-53af-4910-9f1a-5d66ad954d83 #> 3970 18570 3758 NA 9f1e4e06-a9b9-4d69-be4c-91e9841dbc44 #> 3971 17135 2667 NA 20a9d2d4-9abc-4156-9bab-c8471efb1139 #> 3972 19401 4524 NA 0b873737-cd0a-4af5-8d88-c3860f93b29e #> 3973 18048 3287 NA 27a541bc-47b6-4185-aa3d-6cb194666dbe #> 3974 12668 783 NA 422f9f66-97d7-4bae-9840-24b3a24655e8 #> 3975 16005 1818 NA 19403487-1d34-434b-8fc2-a8852167af76 #> 3976 17872 3118 NA 4cdcea81-769e-48a1-ad97-234e5ff649ea #> 3977 20675 5768 NA 4d4a1164-3864-40a9-98e1-423af86b7c92 #> 3978 19028 4182 NA 5455b3f0-9ee0-41cb-9409-13303f5e6c8b #> 3979 19505 5585 NA 2e51f768-6b00-4fcb-a4d2-7c909121b2c0 #> 3980 21229 6324 NA be382b2e-a4ef-4c83-a054-7bc75b0e0d99 #> 3981 20112 5630 NA 4659f9a0-22c4-4004-8d59-a5727bbafa25 #> 3982 15242 1590 NA c615cf52-bc61-43ed-bb76-39695ca019c0 #> 3983 21583 6684 NA de6f20c5-7028-4ecc-82e8-6516ab1c470a #> 3984 17164 2696 NA 70f64838-b12f-4201-859f-382bfedbf73d #> 3985 21202 6267 NA e50ea337-3b0b-4bcd-8995-6e06689aa8cd #> 3986 14972 1412 NA ecb0a97f-f70b-4ea7-a741-e1d4e764edfb #> 3987 11386 597 NA 409377a4-293c-4eee-a9d1-02a46449a540 #> 3988 17080 2612 NA 72755454-8cf9-446f-80d5-d97e4fc29fa3 #> 3989 19554 4656 NA 5cd06df7-8ae9-4b20-b710-f07e39930cfa #> 3990 19220 4363 NA 13d56de6-ed55-4323-b79d-e0d49d936723 #> 3991 20481 5494 NA cc5b0099-b37f-438c-b0e2-5ffe0d7b6ad8 #> 3992 19150 4302 NA 450fc1ea-0709-4bf0-bb32-273e2ef70f50 #> 3993 17331 2863 NA 47ff835d-2b33-43a7-81e1-26590f6b271a #> 3994 19808 4906 NA d23b7135-c37d-4a5d-b034-2400b3666fa0 #> 3995 19122 4276 NA 24a25ff7-0690-4769-9dc9-8265ecdcf1f2 #> 3996 21223 6319 NA c5915cd7-c21d-4441-8960-c394f680dd17 #> 3997 14824 1326 NA 4b6a70aa-3123-4ac4-939d-00f81fde0e33 #> 3998 21103 6206 NA 011b1396-4a13-4bdf-a48d-978688a9eb35 #> 3999 11598 639 NA 1f49b95a-97cb-426e-8bd0-aeeb4b5b0ad1 #> 4000 19290 4430 NA 5e9efe19-7880-40c6-842f-477523525395 #> 4001 16870 2414 NA c6392013-57ae-46b3-8a86-791f94bc0c79 #> 4002 19308 4447 NA c4b82d6c-31e0-41ca-905f-36a9f0ba85aa #> 4003 11205 563 NA 6e8964e3-bc64-4cff-acdf-b984f9b28811 #> 4004 19291 4431 NA 059715eb-7177-47ba-8083-90dca29f0380 #> 4005 19138 4292 NA 39624169-06bd-4512-ae65-04f4f35e7705 #> 4006 12741 798 NA d0840d54-b383-4e26-9055-5a57067951e5 #> 4007 19352 4484 NA 30da88c8-9f18-4fad-99db-2fd3275c86bd #> 4008 19594 4692 NA b85b824b-7a0b-46ed-9f02-0485db43cc07 #> 4009 15218 1570 NA e0f05175-f652-4f5e-9931-068a712291e6 #> 4010 19477 4590 NA faa0d163-480f-4ca5-a09e-0c4a2206a5a4 #> 4011 16814 2358 NA aacd2e1d-0882-4698-87dc-f033382257a7 #> 4012 16225 1964 NA 433a368a-b67c-4c84-ac59-5addd32bb36a #> 4013 15999 1814 NA 4c12aa37-07aa-46c9-9890-a5ba23f693fa #> 4014 12179 707 NA 65578d87-d998-4de3-8866-90bbdb43faa9 #> 4015 14451 1212 NA d9168af9-6bf7-47de-ba56-19d6a3a4548b #> 4016 12966 859 NA 4b749c57-0fbe-46b3-8d71-81c35e0de672 #> 4017 17740 3035 NA 5f164b8f-0aee-4c48-a30d-996cd2142722 #> 4018 16871 2415 NA 50aa72c8-c5d3-4a33-b35a-33880993a8ee #> 4019 15993 1811 NA 5d4102ae-6e17-455d-8bfe-16fc7b7ab681 #> 4020 12948 854 NA 044d5384-6a9f-4843-ad3e-909d362381f6 #> 4021 13051 883 NA d954bad7-541b-43d5-9918-ef1cead10b13 #> 4022 12360 742 NA 0d91e0a9-232f-4e27-b6a5-e7f7e1d3fc6c #> 4023 15339 1629 NA 45039bcf-634a-48a7-8102-f0131491cf66 #> 4024 16827 2371 NA 9dd63f16-866c-443a-856b-671913195f3d #> 4025 15969 1796 NA 120a785b-d0c7-4378-a91e-87650d1340f5 #> 4026 16880 2424 NA 3f142dc8-b7a7-433d-9b70-efdd0a8a0a6a #> 4027 15170 1538 NA e965df63-0d31-42d7-b93e-3f2778647a61 #> 4028 11319 585 NA 2fc398c0-2e7c-47ad-bf3f-803c2dcf11ce #> 4029 13762 1044 NA c2187fda-5e33-4854-b3f8-c0c1c5fbfb35 #> 4030 17561 3014 NA d3bd9fdf-b901-4f27-94b9-f02498754c4a #> 4031 5274 207 NA 50bcb5d3-62fb-45ac-b25b-5dffbff0cb0c #> 4032 16631 2234 NA b7628a7f-101e-4ae3-ad6a-470ef00ffd32 #> 4033 15307 1621 NA d4c3b274-7bef-44de-baa5-c8709b1c78d2 #> 4034 16025 1829 NA f93fd6fd-e301-45c9-825a-4eb3129a7e23 #> 4035 16999 2539 NA c1e82d78-b03b-4aac-b4f3-0720e2811ec4 #> 4036 17559 3013 NA b9564858-003b-4d2d-846a-decb96fc7f3f #> 4037 16684 2273 NA a9fa2c9b-56df-470e-8f4f-682cdeb3dd7b #> 4038 17769 3054 NA 095c22b1-9a56-4b04-9625-910218a087c5 #> 4039 5885 234 NA 84740b88-9a98-45f5-a0b8-f42a2903e87b #> 4040 1958 70 NA 4d628a09-3631-4166-85f6-45f41a74e992 #> 4041 21275 6487 NA 0c49b066-56ef-42dd-b9f1-1e956cced841 #> 4042 21319 6374 NA 7467134f-8eb3-4fde-ac64-e2fc9f9789db #> 4043 17121 2653 NA c5606f69-f550-4b4a-b61a-f1f71142a32f #> 4044 20553 5609 NA 56bc4b31-3074-4cad-92fc-041f550b7fe6 #> 4045 20663 5756 NA a9a138f8-372d-4d49-9e6e-5e423ce885fb #> 4046 8508 362 NA a2579c70-73d2-477a-b7f6-4ff09aa75364 #> 4047 18272 3506 NA 0b6d4047-2c3d-4727-8cd9-0ec66178c7a7 #> 4048 20635 5733 NA d1037ab1-74a0-450d-8052-eef7f7aaf83e #> 4049 19010 4164 NA bb9f0c5a-cbc2-43bb-9aa5-77cdc7e77bb6 #> 4050 21168 6238 NA cb95c9be-53e4-453e-8363-6533ebd018e8 #> 4051 20311 5268 NA 31a408da-0c38-4046-8419-3ecfdd6d37f2 #> 4052 21481 6460 NA e9620a37-f9cf-4081-ab2a-75d16af640b7 #> 4053 4577 176 NA c5da1132-2198-4ad0-af83-89642b424574 #> 4054 7884 322 NA 82da09c2-e542-4f7d-87d9-24dfd8e014de #> 4055 18147 3386 NA 6b56abc0-6d5a-47f2-84ea-43584ac9b288 #> 4056 17741 3036 NA 4d747b73-bcc6-46d2-a2d7-ec1d0c8135a2 #> 4057 17021 2559 NA 7b5052ff-f939-4284-afcf-677ac31dc5ad #> 4058 5084 200 NA 0a95e792-6455-4927-9539-f95fa7f41fbb #> 4059 18105 3344 NA 4bff1c89-f4d1-4699-8c85-69bbbbaec5a2 #> 4060 13997 1107 NA 9102665d-a658-4264-81c3-b9810776ddf0 #> 4061 14445 1211 NA cccc9f16-9508-434f-b7a4-9a29cb0cacf9 #> 4062 17182 2714 NA 0f0aa0af-8830-47f8-b83b-ba0aab773594 #> 4063 19547 4650 NA 4571c406-9d68-4b0e-9772-9d6069ef17f3 #> 4064 5511 221 NA 645a8bf9-2079-4df4-904a-3d8f08438b85 #> 4065 20306 5264 NA 0337d524-097d-418c-8fde-be44c0cd7b7c #> 4066 20228 5245 NA 3d4553a8-00bb-4511-9a33-da8664cb5563 #> 4067 18133 3372 NA ec2db5f2-ffec-4ece-9ca9-7a860c4880b6 #> 4068 19030 4184 NA aad59ab5-1450-465d-96a6-fb10a9fca368 #> 4069 16979 2519 NA 5e3b63cd-db76-48a8-82dd-7ccc8222f6ae #> 4070 20519 5774 NA db2b100c-1931-460d-a80a-3d7d3786e80b #> 4071 16679 2268 NA 0170285a-9b32-4177-bfd2-f6f6f112155f #> 4072 18700 3878 NA 8f9e7e75-ceab-4483-a234-8318f6923f30 #> 4073 16853 2397 NA 1fe3aadd-336b-4838-888e-8c9609747afc #> 4074 20424 5358 NA 0eff9c9a-de53-4daa-97e0-eec4f3a58455 #> 4075 17063 2595 NA 310f7c80-2118-4fa5-b4ea-4147ce9cf941 #> 4076 16238 1975 NA 947e7faa-e8be-4603-829c-b57e4247ccbf #> 4077 17013 2553 NA aa0182e1-9c7d-4329-a8f9-52df8aa00749 #> 4078 18317 3547 NA 38fd7c69-d405-4a49-8320-25d8492e4c5b #> 4079 21658 6737 NA 3465559b-8923-4342-8853-c59f8ffadcaa #> 4080 18748 3921 NA 2ff2d430-6c3e-4f1f-8883-3c019052166f #> 4081 14876 1357 NA 9c04a540-cb7c-41dc-8e7c-50b7af29a3a2 #> 4082 18441 3648 NA 7b29d20b-0839-48b4-8126-006499981186 #> 4083 12153 701 NA 46bb9a85-523c-4530-95c3-2c2a9737e65f #> 4084 17754 3043 NA 9ace8914-bf2c-422a-af03-62a78bc27880 #> 4085 19764 4864 NA 786225e3-3d9c-4d2b-a171-54ad8bbb8ce5 #> 4086 12751 801 NA 04ca4fb9-194e-47fe-8fc8-adb5790a8e78 #> 4087 16327 2040 NA b77aa319-b97f-4316-84c5-e51390432644 #> 4088 11535 622 NA add7a245-2444-491f-bdfb-b1b0d76f6a28 #> 4089 13170 918 NA 38f5843a-8318-4eb7-b517-c83d415e77a4 #> 4090 19647 4733 NA 5e12fc0a-e37d-4196-a9d2-cafe8127d543 #> 4091 16884 2428 NA 34cab90e-62e4-4d0c-a7ca-bbba76a2c6b0 #> 4092 20632 5718 NA d8bc2cac-4537-4541-b9ea-a51bdd63e20c #> 4093 20342 5280 NA 085ec52a-f9f2-4c02-a205-2239221a19f4 #> 4094 20536 5468 NA 17f451af-7590-4dc2-bce5-2921b268f853 #> 4095 1181 40 NA 0ca741f8-58bd-4933-9d5c-0e04de3f4cff #> 4096 21427 6462 NA efd6f3c3-b752-4bc2-a4f2-b776c15c3ec0 #> 4097 20659 5750 NA 72fe03ff-a2f2-4c91-9d1b-149b4778c20d #> 4098 16196 1948 NA ba519b86-8211-4b2c-8fc1-c9fd38e6e3c5 #> 4099 14820 1323 NA 5b3f26e8-4500-47c0-b985-5b5b1eed6098 #> 4100 20329 5276 NA 7ca9797c-592e-4d07-9932-d0562434dc22 #> 4101 19269 4409 NA 25aca9c3-55fb-4113-9367-f0877d6f5490 #> 4102 20370 5288 NA d9fcbb62-399e-46c8-8a74-b5f3d96a3fa0 #> 4103 21296 6388 NA d428cfea-10ea-40b8-a4aa-423e5839fb0d #> 4104 16988 2528 NA 666e3121-3daa-4413-b1ec-8e728f7cc645 #> 4105 16608 2222 NA e78261de-af00-4530-824c-500addbe9f98 #> 4106 20577 5547 NA e15d7337-d967-4350-a829-b15395b1dc2a #> 4107 11756 663 NA d81844de-54c3-42ee-9850-072dc4131b6f #> 4108 14496 1223 NA 16cc9ade-f9ad-4d32-b5b9-d7568ee80f58 #> 4109 16648 2245 NA 2b159c76-53d6-4670-b341-392bc7d6d5f2 #> 4110 19390 4518 NA f14bbebf-5021-4813-8daf-7c8db6542aac #> 4111 15371 1636 NA fda00e5c-b7df-487a-9a24-5e4087c575e1 #> 4112 21352 6590 NA ef0395e2-8019-4fdc-afdd-714e62cef5fb #> 4113 18229 3465 NA d76c8e95-7c6e-4def-9fd9-d813df18b3b8 #> 4114 15082 1485 NA 433587a5-dabc-4b1b-9545-66e570f806a7 #> 4115 7175 284 NA ccce5e8e-52ca-4f0f-a40f-fe5e7227d156 #> 4116 19480 4593 NA 5079332c-3043-47a6-be13-89a76469057f #> 4117 13861 1065 NA b6325c85-c313-4cfb-a299-9884d5e9e389 #> 4118 20275 5256 NA 136f2fd9-c299-478c-bdbf-5b3cc6d04960 #> 4119 8848 406 NA c43cf6a1-8faa-4f95-aa2a-f1aac3ffe103 #> 4120 19180 4327 NA 69026a74-4f62-418e-8683-208987dfa4b4 #> 4121 17064 2596 NA f13bb3f1-7055-484f-982a-9f26b058c1e2 #> 4122 16759 2304 NA 2a1658c4-c9fd-4a98-b619-74ec35e30bf5 #> 4123 16057 1849 NA d579765d-263b-429c-9375-9c6e340df2ca #> 4124 16962 2503 NA f0805b80-e01c-46fd-99a6-dae1134fb764 #> 4125 18250 3485 NA 0dcd539a-2021-4772-8473-79cf818f3216 #> 4126 14707 1269 NA b80f5604-dcbf-42e5-aaab-0e996b318002 #> 4127 18097 3336 NA d7fe9224-7bd7-40e5-a314-1152ed5334d5 #> 4128 18236 3472 NA 339a0e9a-cb90-483a-8d68-9492d5a4a3f6 #> 4129 17758 3045 NA c28c4493-6fd0-4b02-9dee-0e84c974d2e5 #> 4130 16111 1891 NA fa26e15f-2375-4acc-aaae-cf32cfe4bc3e #> 4131 12415 749 NA 338b1ed8-131f-41f4-850a-1f93534558c7 #> 4132 11345 587 NA 518c96c5-65bb-4559-8074-9cdb2ca32f99 #> 4133 20383 5670 NA d9625727-d02c-45c9-ac7c-eeb0a910a970 #> 4134 20152 5231 NA 8e73bb69-7907-4220-a09d-d97efc006606 #> 4135 16574 2202 NA caca998b-2475-4ec4-85fa-42ff312c9c5e #> 4136 21297 6389 NA d7e8585f-8213-4810-81d5-8005ecf55e5e #> 4137 18662 3842 NA 66478107-d228-42de-aa84-bc8a2ac01cb9 #> 4138 21497 6501 NA 16551ae2-a27c-4c2d-aa48-0fce4fde68a8 #> 4139 21256 6365 NA b72e251b-b993-4d6c-b470-10ee78178d78 #> 4140 13987 1105 NA cc745cc3-d52a-454b-98c8-ac9155a9405c #> 4141 15367 1635 NA 6310d6aa-02d4-46de-8839-9251cb319dea #> 4142 13027 874 NA 87f6826a-f35a-4b49-9673-da54ccb9becd #> 4143 18642 3824 NA 81fb7fa0-7ad9-4ef4-bc33-9df9574714e5 #> 4144 20188 5217 NA bbd60ef7-27c3-46b7-91c0-b18382e19b4b #> 4145 18246 3481 NA 155ef610-f858-4ee1-b180-afd7cf337631 #> 4146 20660 5751 NA 184a2ef6-ddec-41e4-8fc1-87ac713e8831 #> 4147 20464 5385 NA 69e38370-3c00-470d-aed2-af98bcddb7c1 #> 4148 19424 4545 NA e927859a-16e3-481c-8d02-4d11a3a81dee #> 4149 18280 3514 NA 0456cc0d-84e0-432f-ba7c-a6ca13446b76 #> 4150 19158 4309 NA 355bf682-53b6-46c1-8052-eaf75c805278 #> 4151 11026 530 NA b44773b9-af17-4d6c-a453-132e20849712 #> 4152 14122 1139 NA 7ee060f9-4c69-4611-9d6d-3b139e06c82a #> 4153 21198 6263 NA 324c013f-3e74-44cf-86a3-c45d7c674426 #> 4154 13386 964 NA 27921351-a775-4649-bd49-7b4c486d1ba2 #> 4155 20019 5322 NA ccb8ccf7-fa57-4d2a-8907-b55ebb8fa3fe #> 4156 18334 3561 NA a204547e-ecd3-4116-909a-ce823caa9067 #> 4157 18399 3612 NA 32d18129-6c6c-4401-9695-8661ab84b288 #> 4158 16829 2373 NA 2e56cca7-b898-4aac-bbc5-b5bda9163be1 #> 4159 20589 5588 NA 47dcb702-edbb-4bfe-80f7-0390a1e2be77 #> 4160 18157 3396 NA 58ea6518-6fb7-4e5a-a586-7202d4c5f07e #> 4161 19504 4614 NA ab9cf0fc-f4e4-4d18-8132-97e518eb14f3 #> 4162 19398 4522 NA 9bd7ed5d-968a-40c0-8dcd-25fcc2d4d47f #> 4163 20274 5255 NA 11a3d414-412d-4dee-992a-4eb8ece1fbdb #> 4164 18014 3253 NA 931dbb14-36ac-4044-a61e-5f11854f0383 #> 4165 4556 175 NA 9f2aebe4-b654-4f0e-a437-ec46f20b6bfe #> 4166 16848 2392 NA 52d09eea-a580-447a-8062-5841d5a9c8b3 #> [ reached 'max' / getOption("max.print") -- omitted 458 rows ] #> #> [[2]] #> season team position depth_chart_position jersey_number status #> 1 2021 ARI C C 72 Active #> 2 2021 ARI C <NA> 53 Active #> 3 2021 ARI C C 61 Active #> 4 2021 ARI CB RCB 7 Active #> 5 2021 ARI CB LCB 21 Active #> 6 2021 ARI CB <NA> 35 Active #> 7 2021 ARI CB <NA> 39 Active #> 8 2021 ARI CB LCB 37 Active #> 9 2021 ARI CB RCB 30 Active #> 10 2021 ARI CB RCB 20 Active #> 11 2021 ARI CB <NA> 41 Active #> 12 2021 ARI CB LCB 23 Active #> 13 2021 ARI CB <NA> 41 Active #> 14 2021 ARI CB <NA> 32 Active #> 15 2021 ARI DB <NA> 38 Active #> 16 2021 ARI DB SS 34 Active #> 17 2021 ARI DB SS 28 Active #> 18 2021 ARI DB FS 36 Active #> 19 2021 ARI DB SS 22 Active #> 20 2021 ARI DB FS 31 Active #> 21 2021 ARI DE SLB 92 Active #> 22 2021 ARI DE <NA> 61 Active #> 23 2021 ARI DE RDE 94 Active #> 24 2021 ARI DE DT 97 Inactive #> 25 2021 ARI DE <NA> 76 Active #> 26 2021 ARI DE RDE 99 Active #> 27 2021 ARI DE RDE 96 Active #> 28 2021 ARI DE RDE 91 Active #> 29 2021 ARI DE <NA> 96 Active #> 30 2021 ARI DT NT 98 Active #> 31 2021 ARI DT NT 93 Active #> 32 2021 ARI DT DT 95 Active #> 33 2021 ARI DT <NA> 70 Inactive #> 34 2021 ARI DT NT 90 Active #> 35 2021 ARI DT <NA> 69 Inactive #> 36 2021 ARI DT <NA> 70 Active #> 37 2021 ARI FB <NA> 45 Active #> 38 2021 ARI FS <NA> 44 Active #> 39 2021 ARI FS <NA> 43 Active #> 40 2021 ARI K K 5 Active #> 41 2021 ARI LB SLB 45 Active #> 42 2021 ARI LB OLB 42 Active #> 43 2021 ARI LB <NA> 58 Active #> 44 2021 ARI LB LILB 47 Active #> 45 2021 ARI LB OLB 49 Active #> 46 2021 ARI LB RILB 58 Active #> 47 2021 ARI LB <NA> 43 Active #> 48 2021 ARI LB LILB 51 Active #> 49 2021 ARI LB OLB 44 Active #> 50 2021 ARI LB <NA> 57 Active #> 51 2021 ARI LB <NA> 56 Active #> 52 2021 ARI LB SLB 55 Active #> 53 2021 ARI LB <NA> 56 Active #> 54 2021 ARI LB RILB 25 Active #> 55 2021 ARI LB <NA> 56 Active #> 56 2021 ARI LB <NA> 54 Active #> 57 2021 ARI LB RILB 50 Active #> 58 2021 ARI LB LILB 9 Active #> 59 2021 ARI LS <NA> 47 Active #> 60 2021 ARI LS <NA> 46 Active #> 61 2021 ARI OG LG 67 Inactive #> 62 2021 ARI OG C 73 Active #> 63 2021 ARI OL DT 78 Active #> 64 2021 ARI OL RT 79 Active #> 65 2021 ARI OL RG 75 Active #> 66 2021 ARI OL LG 62 Active #> 67 2021 ARI OL <NA> 68 Active #> 68 2021 ARI OL LG 64 Active #> 69 2021 ARI OL RG 65 Active #> 70 2021 ARI OT RT 68 Active #> 71 2021 ARI OT LT 66 Active #> 72 2021 ARI OT RG 71 Active #> 73 2021 ARI OT <NA> 76 Active #> 74 2021 ARI OT LT 60 Active #> 75 2021 ARI OT LT 74 Active #> 76 2021 ARI P <NA> 16 Active #> 77 2021 ARI P <NA> 9 Active #> 78 2021 ARI P <NA> 16 Active #> 79 2021 ARI P <NA> 14 Active #> 80 2021 ARI QB QB 12 Active #> 81 2021 ARI QB QB 9 Active #> 82 2021 ARI QB QB 1 Active #> 83 2021 ARI QB QB 15 Active #> 84 2021 ARI RB RB 2 Active #> 85 2021 ARI RB <NA> 41 Active #> 86 2021 ARI RB RB 26 Active #> 87 2021 ARI RB RB 6 Active #> 88 2021 ARI RB RB 37 Active #> 89 2021 ARI RB RB 29 Active #> 90 2021 ARI SS <NA> 27 Inactive #> 91 2021 ARI SS FS 3 Active #> 92 2021 ARI TE TE 48 Active #> 93 2021 ARI TE TE 81 Active #> 94 2021 ARI TE <NA> 89 Active #> 95 2021 ARI TE <NA> 86 Active #> 96 2021 ARI TE <NA> 43 Active #> 97 2021 ARI TE <NA> 88 Active #> 98 2021 ARI TE TE 87 Active #> 99 2021 ARI TE <NA> 35 Active #> 100 2021 ARI TE TE 86 Active #> 101 2021 ARI WR SWR 18 Active #> 102 2021 ARI WR LWR 38 Active #> 103 2021 ARI WR RWR 33 Active #> 104 2021 ARI WR SWR 19 Active #> 105 2021 ARI WR RWR 84 Active #> 106 2021 ARI WR <NA> 82 Active #> 107 2021 ARI WR RWR 4 Active #> 108 2021 ARI WR <NA> 18 Active #> 109 2021 ARI WR RWR 17 Active #> 110 2021 ARI WR LWR 10 Active #> 111 2021 ARI WR <NA> 83 Active #> 112 2021 ARI WR <NA> 84 Active #> 113 2021 ARI WR LWR 13 Active #> 114 2021 ARI <NA> <NA> 0 Active #> 115 2021 ATL C C 67 Active #> 116 2021 ATL C LG 68 Active #> 117 2021 ATL C <NA> 62 Active #> 118 2021 ATL C C 61 Active #> 119 2021 ATL CB <NA> 34 Active #> 120 2021 ATL CB RCB 22 Active #> 121 2021 ATL CB LCB 29 Active #> 122 2021 ATL CB <NA> 38 Active #> 123 2021 ATL CB <NA> 35 Active #> 124 2021 ATL CB <NA> 24 Active #> 125 2021 ATL CB LCB 24 Active #> 126 2021 ATL CB RCB 26 Active #> 127 2021 ATL DB <NA> 37 Active #> 128 2021 ATL DB SS 41 Active #> 129 2021 ATL DB RCB 25 Active #> 130 2021 ATL DB FS 39 Active #> 131 2021 ATL DB SS 21 Active #> 132 2021 ATL DB <NA> 30 Active #> 133 2021 ATL DB <NA> 38 Active #> 134 2021 ATL DB LCB 20 Active #> 135 2021 ATL DB FS 23 Active #> 136 2021 ATL DB FS 27 Active #> 137 2021 ATL DE ROLB 55 Active #> 138 2021 ATL DE DL 99 Active #> 139 2021 ATL DE DL 50 Active #> 140 2021 ATL DE DL 90 Active #> 141 2021 ATL DE <NA> 0 Active #> 142 2021 ATL DE <NA> 92 Active #> 143 2021 ATL DT <NA> 94 Active #> 144 2021 ATL DT DL 69 Active #> 145 2021 ATL DT <NA> 98 Active #> 146 2021 ATL DT DL 79 Active #> 147 2021 ATL DT DL 98 Active #> 148 2021 ATL DT DL 93 Active #> 149 2021 ATL DT DL 97 Active #> 150 2021 ATL DT DL 96 Active #> 151 2021 ATL DT DL 95 Active #> 152 2021 ATL FB <NA> 89 Active #> 153 2021 ATL FB RB 40 Active #> 154 2021 ATL K K 7 Active #> 155 2021 ATL LB LB 43 Active #> 156 2021 ATL LB LB 48 Active #> 157 2021 ATL LB <NA> 42 Active #> 158 2021 ATL LB ROLB 56 Active #> 159 2021 ATL LB LB 45 Active #> 160 2021 ATL LB LOLB 91 Active #> 161 2021 ATL LB LB 53 Active #> 162 2021 ATL LB LOLB 42 Active #> 163 2021 ATL LB <NA> 59 Active #> 164 2021 ATL LB ROLB 36 Active #> 165 2021 ATL LB <NA> 59 Active #> 166 2021 ATL LB LB 52 Active #> 167 2021 ATL LB <NA> 52 Active #> 168 2021 ATL LB LB 54 Active #> 169 2021 ATL LB <NA> 49 Active #> 170 2021 ATL LB LOLB 51 Active #> 171 2021 ATL LS <NA> 47 Active #> 172 2021 ATL OG RT 72 Active #> 173 2021 ATL OG RG 63 Active #> 174 2021 ATL OL <NA> 62 Active #> 175 2021 ATL OL <NA> 0 Active #> 176 2021 ATL OL LT 69 Active #> 177 2021 ATL OL LT 74 Active #> 178 2021 ATL OL C 65 Active #> 179 2021 ATL OL LG 64 Active #> 180 2021 ATL OL LG 71 Active #> 181 2021 ATL OL RG 66 Active #> 182 2021 ATL OT LT 75 Active #> 183 2021 ATL OT RT 77 Active #> 184 2021 ATL OT <NA> 73 Active #> 185 2021 ATL OT LT 70 Active #> 186 2021 ATL OT RT 76 Active #> 187 2021 ATL P <NA> 6 Active #> 188 2021 ATL P <NA> 4 Inactive #> 189 2021 ATL P <NA> 9 Active #> 190 2021 ATL QB QB 2 Active #> 191 2021 ATL QB QB 15 Active #> 192 2021 ATL QB QB 5 Inactive #> 193 2021 ATL QB QB 0 Active #> 194 2021 ATL RB RB 42 Active #> 195 2021 ATL RB <NA> 25 Active #> 196 2021 ATL RB RB 38 Active #> 197 2021 ATL RB RB 28 Active #> 198 2021 ATL RB RB 84 Active #> 199 2021 ATL RB RB 30 Active #> 200 2021 ATL SS <NA> 29 Active #> 201 2021 ATL SS <NA> 22 Active #> 202 2021 ATL SS SS 32 Active #> 203 2021 ATL TE TE 8 Active #> 204 2021 ATL TE <NA> 46 Active #> 205 2021 ATL TE <NA> 80 Inactive #> 206 2021 ATL TE <NA> 48 Active #> 207 2021 ATL TE TE 81 Active #> 208 2021 ATL TE TE 87 Inactive #> 209 2021 ATL TE TE 85 Inactive #> 210 2021 ATL WR LWR 18 Active #> 211 2021 ATL WR SWR 17 Active #> 212 2021 ATL WR SWR 83 Active #> 213 2021 ATL WR <NA> 19 Active #> 214 2021 ATL WR <NA> 89 Active #> 215 2021 ATL WR LWR 12 Active #> 216 2021 ATL WR RWR 88 Active #> 217 2021 ATL WR <NA> 0 Inactive #> 218 2021 ATL WR LWR 13 Active #> 219 2021 ATL WR RWR 14 Active #> 220 2021 ATL WR <NA> 86 Active #> 221 2021 ATL WR RWR 16 Active #> 222 2021 ATL WR RWR 4 Active #> 223 2021 ATL WR <NA> 82 Active #> 224 2021 BAL C C 63 Active #> 225 2021 BAL CB LCB 24 Active #> 226 2021 BAL CB NB 25 Active #> 227 2021 BAL CB LCB 22 Active #> 228 2021 BAL CB <NA> 31 Inactive #> 229 2021 BAL CB <NA> 37 Inactive #> 230 2021 BAL CB RCB 44 Active #> 231 2021 BAL CB RCB 23 Active #> 232 2021 BAL CB RCB 30 Active #> 233 2021 BAL CB NB 29 Active #> 234 2021 BAL DB FS 39 Active #> 235 2021 BAL DB FS 47 Active #> 236 2021 BAL DB SS 21 Active #> 237 2021 BAL DB FS 28 Active #> 238 2021 BAL DB SS 41 Active #> 239 2021 BAL DB FS 32 Active #> 240 2021 BAL DB SS 36 Active #> 241 2021 BAL DB <NA> 26 Active #> 242 2021 BAL DE <NA> 4 Active #> 243 2021 BAL DE DE 94 Active #> 244 2021 BAL DE DT 93 Active #> 245 2021 BAL DE NT 64 Active #> 246 2021 BAL DE DE 95 Active #> 247 2021 BAL DT DT 92 Active #> 248 2021 BAL DT <NA> 97 Active #> 249 2021 BAL DT DT 96 Active #> 250 2021 BAL DT <NA> 91 Inactive #> 251 2021 BAL DT <NA> 91 Active #> 252 2021 BAL DT NT 71 Active #> 253 2021 BAL FB <NA> 48 Active #> 254 2021 BAL FB RB 42 Active #> 255 2021 BAL FS <NA> 40 Active #> 256 2021 BAL G <NA> 61 Active #> 257 2021 BAL G <NA> 0 Active #> 258 2021 BAL K K 9 Active #> 259 2021 BAL K <NA> 15 Active #> 260 2021 BAL LB SAM 99 Active #> 261 2021 BAL LB RUSH 59 Active #> 262 2021 BAL LB MLB 56 Active #> 263 2021 BAL LB WLB 57 Active #> 264 2021 BAL LB RUSH 90 Active #> 265 2021 BAL LB MLB 6 Active #> 266 2021 BAL LB SAM 50 Active #> 267 2021 BAL LB RUSH 45 Active #> 268 2021 BAL LB <NA> 50 Active #> 269 2021 BAL LB SAM 54 Active #> 270 2021 BAL LB WLB 40 Active #> 271 2021 BAL LB <NA> 57 Active #> 272 2021 BAL LB <NA> 3 Inactive #> 273 2021 BAL LB MLB 49 Active #> 274 2021 BAL LS <NA> 46 Active #> 275 2021 BAL NT NT 98 Active #> 276 2021 BAL OG <NA> 62 Active #> 277 2021 BAL OG RG 72 Active #> 278 2021 BAL OG LG 67 Active #> 279 2021 BAL OG RG 70 Active #> 280 2021 BAL OG LT 74 Active #> 281 2021 BAL OG LG 66 Active #> 282 2021 BAL OL C 65 Active #> 283 2021 BAL OL C 77 Active #> 284 2021 BAL OT RT 76 Active #> 285 2021 BAL OT RT 68 Active #> 286 2021 BAL OT LT 79 Active #> 287 2021 BAL OT LT 69 Active #> 288 2021 BAL OT RT 78 Active #> 289 2021 BAL OT RG 79 Active #> 290 2021 BAL OT RT 60 Active #> 291 2021 BAL P <NA> 18 Active #> 292 2021 BAL P <NA> 4 Active #> 293 2021 BAL QB <NA> 0 Active #> 294 2021 BAL QB QB 2 Active #> 295 2021 BAL QB QB 8 Active #> 296 2021 BAL QB <NA> 3 Active #> 297 2021 BAL QB QB 8 Active #> 298 2021 BAL QB QB 7 Active #> 299 2021 BAL RB RB 34 Active #> 300 2021 BAL RB RB 35 Active #> 301 2021 BAL RB RB 27 Active #> 302 2021 BAL RB RB 43 Active #> 303 2021 BAL RB <NA> 18 Active #> 304 2021 BAL TE TE 88 Active #> 305 2021 BAL TE TE 38 Active #> 306 2021 BAL TE TE 89 Active #> 307 2021 BAL TE TE 83 Active #> 308 2021 BAL TE TE 87 Active #> 309 2021 BAL TE TE 84 Active #> 310 2021 BAL TE TE 85 Active #> 311 2021 BAL TE TE 86 Active #> 312 2021 BAL TE TE 85 Active #> 313 2021 BAL TE <NA> 0 Active #> 314 2021 BAL WR RWR 80 Active #> 315 2021 BAL WR RWR 14 Active #> 316 2021 BAL WR LWR 11 Active #> 317 2021 BAL WR <NA> 18 Active #> 318 2021 BAL WR <NA> 82 Inactive #> 319 2021 BAL WR LWR 5 Active #> 320 2021 BAL WR RWR 17 Active #> 321 2021 BAL WR <NA> 82 Active #> 322 2021 BAL WR <NA> 87 Active #> 323 2021 BAL WR <NA> 10 Active #> 324 2021 BAL WR <NA> 16 Active #> 325 2021 BAL WR <NA> 46 Active #> 326 2021 BAL WR SWR 16 Active #> 327 2021 BAL WR <NA> 15 Active #> 328 2021 BAL WR SWR 81 Active #> 329 2021 BAL WR SWR 12 Active #> 330 2021 BAL WR LWR 13 Active #> 331 2021 BUF C C 60 Active #> 332 2021 BUF CB RCB 27 Active #> 333 2021 BUF CB <NA> 0 Active #> 334 2021 BUF CB <NA> 20 Active #> 335 2021 BUF CB LCB 30 Active #> 336 2021 BUF CB LCB 38 Active #> 337 2021 BUF CB RCB 38 Active #> 338 2021 BUF CB NB 47 Active #> 339 2021 BUF CB <NA> 28 Active #> 340 2021 BUF CB RCB 32 Active #> 341 2021 BUF CB LCB 39 Active #> 342 2021 BUF CB NB 33 Active #> 343 2021 BUF CB LCB 37 Active #> 344 2021 BUF CB NB 24 Active #> 345 2021 BUF DB SS 31 Active #> 346 2021 BUF DB FS 46 Active #> 347 2021 BUF DB FS 23 Active #> 348 2021 BUF DB SS 21 Active #> 349 2021 BUF DB <NA> 40 Active #> 350 2021 BUF DB SS 36 Active #> 351 2021 BUF DE RDE 96 Active #> 352 2021 BUF DE <NA> 92 Active #> 353 2021 BUF DE LDE 55 Active #> 354 2021 BUF DE LDE 50 Active #> 355 2021 BUF DE RDE 57 Active #> 356 2021 BUF DE <NA> 56 Active #> 357 2021 BUF DE RDE 97 Active #> 358 2021 BUF DE <NA> 51 Inactive #> 359 2021 BUF DE LDE 93 Active #> 360 2021 BUF DT LDT 98 Inactive #> 361 2021 BUF DT <NA> 0 Active #> 362 2021 BUF DT LDT 99 Active #> 363 2021 BUF DT RDT 90 Active #> 364 2021 BUF DT <NA> 63 Active #> 365 2021 BUF DT LDT 94 Inactive #> 366 2021 BUF DT RDT 61 Active #> 367 2021 BUF DT RDT 91 Active #> 368 2021 BUF DT DT 0 Active #> 369 2021 BUF DT <NA> 62 Active #> 370 2021 BUF ILB <NA> 49 Active #> 371 2021 BUF K K 2 Active #> 372 2021 BUF LB MLB 49 Active #> 373 2021 BUF LB WLB 59 Active #> 374 2021 BUF LB <NA> 42 Active #> 375 2021 BUF LB <NA> 43 Active #> 376 2021 BUF LB <NA> 48 Active #> 377 2021 BUF LB <NA> 52 Active #> 378 2021 BUF LB MLB 53 Active #> 379 2021 BUF LB WLB 54 Active #> 380 2021 BUF LB MLB 44 Active #> 381 2021 BUF LB <NA> 52 Active #> 382 2021 BUF LB WLB 58 Active #> 383 2021 BUF LS <NA> 69 Active #> 384 2021 BUF OG LG 76 Active #> 385 2021 BUF OG RG 66 Active #> 386 2021 BUF OG <NA> 67 Active #> 387 2021 BUF OG <NA> 63 Active #> 388 2021 BUF OG RG 65 Active #> 389 2021 BUF OG <NA> 70 Inactive #> 390 2021 BUF OL RG 74 Active #> 391 2021 BUF OL RT 75 Active #> 392 2021 BUF OL C 71 Active #> 393 2021 BUF OL LG 77 Active #> 394 2021 BUF OL LG 64 Active #> 395 2021 BUF OT LT 72 Active #> 396 2021 BUF OT LT 73 Active #> 397 2021 BUF OT LT 79 Active #> 398 2021 BUF OT RT 68 Active #> 399 2021 BUF OT LT 72 Active #> 400 2021 BUF OT C 51 Active #> 401 2021 BUF P <NA> 3 Active #> 402 2021 BUF QB QB 4 Active #> 403 2021 BUF QB QB 10 Active #> 404 2021 BUF QB QB 7 Active #> 405 2021 BUF QB QB 17 Active #> 406 2021 BUF RB RB 20 Active #> 407 2021 BUF RB RB 22 Active #> 408 2021 BUF RB <NA> 0 Active #> 409 2021 BUF RB RB 25 Active #> 410 2021 BUF RB RB 45 Active #> 411 2021 BUF RB RB 28 Active #> 412 2021 BUF RB RB 26 Active #> 413 2021 BUF T <NA> 62 Active #> 414 2021 BUF TE TE 88 Active #> 415 2021 BUF TE <NA> 84 Active #> 416 2021 BUF TE TE 85 Active #> 417 2021 BUF TE TE 41 Active #> 418 2021 BUF TE TE 89 Active #> 419 2021 BUF TE <NA> 81 Active #> 420 2021 BUF TE TE 80 Active #> 421 2021 BUF WR RWR 82 Active #> 422 2021 BUF WR RWR 19 Active #> 423 2021 BUF WR <NA> 0 Active #> 424 2021 BUF WR SWR 15 Active #> 425 2021 BUF WR LWR 14 Active #> 426 2021 BUF WR LWR 5 Active #> 427 2021 BUF WR <NA> 87 Active #> 428 2021 BUF WR <NA> 9 Active #> 429 2021 BUF WR LWR 11 Inactive #> 430 2021 BUF WR RWR 0 Active #> 431 2021 BUF WR RWR 1 Active #> 432 2021 BUF WR SWR 18 Active #> 433 2021 BUF WR SWR 13 Inactive #> 434 2021 BUF WR RWR 16 Active #> 435 2021 CAR C C 61 Active #> 436 2021 CAR C C 71 Active #> 437 2021 CAR CB RCB 8 Active #> 438 2021 CAR CB LCB 26 Active #> 439 2021 CAR CB LCB 29 Active #> 440 2021 CAR CB RCB 28 Active #> 441 2021 CAR CB <NA> 22 Active #> 442 2021 CAR CB <NA> 35 Active #> 443 2021 CAR CB <NA> 25 Inactive #> 444 2021 CAR CB LCB 23 Active #> 445 2021 CAR CB RCB 24 Inactive #> 446 2021 CAR DB SS 42 Active #> 447 2021 CAR DB FS 27 Active #> 448 2021 CAR DB <NA> 40 Active #> 449 2021 CAR DB SS 31 Active #> 450 2021 CAR DB <NA> 10 Active #> 451 2021 CAR DB <NA> 38 Active #> 452 2021 CAR DB SS 34 Active #> 453 2021 CAR DB <NA> 40 Active #> 454 2021 CAR DB FS 37 Active #> 455 2021 CAR DB <NA> 37 Active #> 456 2021 CAR DB <NA> 35 Active #> 457 2021 CAR DE RDE 91 Active #> 458 2021 CAR DE <NA> 57 Active #> 459 2021 CAR DE LDE 98 Active #> 460 2021 CAR DE <NA> 96 Inactive #> 461 2021 CAR DE <NA> 90 Active #> 462 2021 CAR DE RDE 97 Active #> 463 2021 CAR DE RDE 69 Active #> 464 2021 CAR DE LDE 53 Active #> 465 2021 CAR DE <NA> 76 Active #> 466 2021 CAR DE <NA> 69 Active #> 467 2021 CAR DT RDT 90 Active #> 468 2021 CAR DT LDT 71 Active #> 469 2021 CAR DT LDT 95 Active #> 470 2021 CAR DT RDT 92 Active #> 471 2021 CAR DT LDT 94 Active #> 472 2021 CAR DT <NA> 0 Inactive #> 473 2021 CAR DT <NA> 68 Active #> 474 2021 CAR DT RDT 93 Active #> 475 2021 CAR FB <NA> 40 Active #> 476 2021 CAR G RG 74 Active #> 477 2021 CAR G LG 66 Active #> 478 2021 CAR K <NA> 0 Active #> 479 2021 CAR K K 4 Active #> 480 2021 CAR LB MLB 47 Active #> 481 2021 CAR LB <NA> 59 Injured Reserve #> 482 2021 CAR LB <NA> 0 Inactive #> 483 2021 CAR LB ROB 43 Active #> 484 2021 CAR LB ROB 32 Active #> 485 2021 CAR LB ROB 49 Active #> 486 2021 CAR LB LDE 55 Active #> 487 2021 CAR LB LOB 50 Active #> 488 2021 CAR LB LOB 54 Active #> 489 2021 CAR LB MLB 52 Active #> 490 2021 CAR LB MLB 56 Active #> 491 2021 CAR LB MLB 57 Active #> 492 2021 CAR LB LOB 48 Active #> 493 2021 CAR LB <NA> 47 Active #> 494 2021 CAR LB MLB 49 Active #> 495 2021 CAR LB FS 21 Active #> 496 2021 CAR LS <NA> 44 Active #> 497 2021 CAR LS <NA> 46 Active #> 498 2021 CAR OG RG 77 Active #> 499 2021 CAR OG RG 67 Active #> 500 2021 CAR OG LG 65 Active #> 501 2021 CAR OL LT 75 Active #> 502 2021 CAR OL LG 60 Active #> 503 2021 CAR OT RT 62 Active #> 504 2021 CAR OT LT 78 Active #> 505 2021 CAR OT RT 72 Active #> 506 2021 CAR OT LT 73 Active #> 507 2021 CAR OT <NA> 0 Inactive #> 508 2021 CAR OT RT 70 Active #> 509 2021 CAR P <NA> 15 Active #> 510 2021 CAR P <NA> 3 Active #> 511 2021 CAR QB QB 6 Active #> 512 2021 CAR QB QB 7 Active #> 513 2021 CAR QB QB 14 Active #> 514 2021 CAR RB RB 30 Active #> 515 2021 CAR RB RB 39 Active #> 516 2021 CAR RB RB 33 Active #> 517 2021 CAR RB RB 36 Active #> 518 2021 CAR RB RB 20 Active #> 519 2021 CAR RB RB 22 Active #> 520 2021 CAR RB <NA> 40 Active #> 521 2021 CAR RB <NA> 32 Active #> 522 2021 CAR RB RB 41 Active #> 523 2021 CAR TE TE 80 Active #> 524 2021 CAR TE TE 86 Active #> 525 2021 CAR TE TE 84 Active #> 526 2021 CAR TE TE 87 Active #> 527 2021 CAR TE <NA> 0 Active #> 528 2021 CAR TE TE 85 Active #> 529 2021 CAR TE TE 82 Active #> 530 2021 CAR TE TE 85 Active #> 531 2021 CAR WR <NA> 15 Active #> 532 2021 CAR WR <NA> 84 Active #> 533 2021 CAR WR SWR 9 Active #> 534 2021 CAR WR SWR 88 Active #> 535 2021 CAR WR SWR 17 Active #> 536 2021 CAR WR LWR 16 Active #> 537 2021 CAR WR RWR 12 Active #> 538 2021 CAR WR SWR 13 Active #> 539 2021 CAR WR RWR 11 Active #> 540 2021 CAR WR RWR 10 Inactive #> 541 2021 CAR WR LWR 83 Active #> 542 2021 CAR WR LWR 2 Active #> 543 2021 CAR WR RWR 18 Active #> 544 2021 CAR WR <NA> 81 Active #> 545 2021 CHI C LG 65 Active #> 546 2021 CHI CB CB 20 Active #> 547 2021 CHI CB <NA> 31 Active #> 548 2021 CHI CB CB 33 Active #> 549 2021 CHI CB <NA> 39 Active #> 550 2021 CHI CB CB 21 Active #> 551 2021 CHI CB <NA> 0 Inactive #> 552 2021 CHI CB CB 22 Active #> 553 2021 CHI CB <NA> 31 Active #> 554 2021 CHI DB FS 4 Active #> 555 2021 CHI DB <NA> 47 Active #> 556 2021 CHI DB SS 38 Active #> 557 2021 CHI DB CB 25 Active #> 558 2021 CHI DB FS 26 Active #> 559 2021 CHI DB <NA> 23 Active #> 560 2021 CHI DB <NA> 39 Active #> 561 2021 CHI DB FS 43 Active #> 562 2021 CHI DB SS 36 Active #> 563 2021 CHI DB SS 37 Active #> 564 2021 CHI DB CB 27 Active #> 565 2021 CHI DE <NA> 69 Active #> 566 2021 CHI DE DT 90 Active #> 567 2021 CHI DE RDE 97 Active #> 568 2021 CHI DE <NA> 49 Active #> 569 2021 CHI DL <NA> 0 Active #> 570 2021 CHI DT RDE 98 Active #> 571 2021 CHI DT NT 91 Active #> 572 2021 CHI DT NT 79 Active #> 573 2021 CHI DT ROLB 78 Active #> 574 2021 CHI DT <NA> 73 Inactive #> 575 2021 CHI DT NT 95 Active #> 576 2021 CHI DT RDE 72 Active #> 577 2021 CHI DT DT 96 Active #> 578 2021 CHI DT DT 63 Active #> 579 2021 CHI G <NA> 63 Active #> 580 2021 CHI K K 2 Active #> 581 2021 CHI K <NA> 6 Active #> 582 2021 CHI LB <NA> 0 Inactive #> 583 2021 CHI LB RILB 44 Active #> 584 2021 CHI LB RILB 58 Active #> 585 2021 CHI LB LOLB 99 Active #> 586 2021 CHI LB RILB 45 Active #> 587 2021 CHI LB <NA> 92 Active #> 588 2021 CHI LB LOLB 93 Active #> 589 2021 CHI LB LILB 59 Active #> 590 2021 CHI LB LILB 55 Active #> 591 2021 CHI LB LOLB 52 Active #> 592 2021 CHI LB ROLB 50 Active #> 593 2021 CHI LB <NA> 60 Active #> 594 2021 CHI LB <NA> 57 Active #> 595 2021 CHI LB ROLB 94 Active #> 596 2021 CHI LB LILB 57 Active #> 597 2021 CHI LS <NA> 48 Active #> 598 2021 CHI OL <NA> 69 Active #> 599 2021 CHI OL RG 68 Active #> 600 2021 CHI OL C 60 Active #> 601 2021 CHI OL <NA> 75 Active #> 602 2021 CHI OL RG 74 Active #> 603 2021 CHI OL RT 73 Active #> 604 2021 CHI OL C 62 Active #> 605 2021 CHI OL <NA> 63 Inactive #> 606 2021 CHI OL LT 70 Active #> 607 2021 CHI OL RT 72 Active #> 608 2021 CHI OL RG 64 Active #> 609 2021 CHI OL C 67 Active #> 610 2021 CHI OL LG 53 Active #> 611 2021 CHI OL LT 76 Inactive #> 612 2021 CHI OT LT 71 Active #> 613 2021 CHI OT RT 79 Active #> 614 2021 CHI P <NA> 16 Active #> 615 2021 CHI QB QB 14 Active #> 616 2021 CHI QB QB 9 Active #> 617 2021 CHI QB QB 1 Active #> 618 2021 CHI RB RB 35 Active #> 619 2021 CHI RB RB 24 Active #> 620 2021 CHI RB RB 8 Active #> 621 2021 CHI RB <NA> 37 Active #> 622 2021 CHI RB RB 46 Active #> 623 2021 CHI RB RB 29 Active #> 624 2021 CHI RB RB 32 Active #> 625 2021 CHI RB <NA> 39 Active #> 626 2021 CHI TE <NA> 0 Active #> 627 2021 CHI TE <NA> 44 Active #> 628 2021 CHI TE TE 81 Active #> 629 2021 CHI TE TE 18 Active #> 630 2021 CHI TE TE 44 Active #> 631 2021 CHI TE <NA> 49 Active #> 632 2021 CHI TE TE 85 Active #> 633 2021 CHI TE TE 87 Active #> 634 2021 CHI TE TE 80 Active #> 635 2021 CHI WR SWR 17 Active #> 636 2021 CHI WR <NA> 6 Active #> 637 2021 CHI WR LWR 84 Active #> 638 2021 CHI WR LWR 82 Active #> 639 2021 CHI WR RWR 88 Active #> 640 2021 CHI WR SWR 10 Active #> 641 2021 CHI WR SWR 15 Active #> 642 2021 CHI WR SWR 18 Practice Squad #> 643 2021 CHI WR RWR 0 Active #> 644 2021 CHI WR <NA> 13 Active #> 645 2021 CHI WR RWR 11 Active #> 646 2021 CHI WR LWR 86 Active #> 647 2021 CHI WR <NA> 0 Inactive #> 648 2021 CHI WR LWR 83 Active #> 649 2021 CHI WR LWR 12 Active #> 650 2021 CHI WR RWR 6 Active #> 651 2021 CHI WR <NA> 14 Active #> 652 2021 CIN C C 66 Active #> 653 2021 CIN C <NA> 61 Active #> 654 2021 CIN C C 53 Active #> 655 2021 CIN C C 63 Active #> 656 2021 CIN CB CB 26 Active #> 657 2021 CIN CB CB 33 Active #> 658 2021 CIN CB CB 39 Active #> 659 2021 CIN CB <NA> 40 Active #> 660 2021 CIN CB CB 22 Active #> 661 2021 CIN CB CB 27 Active #> 662 2021 CIN CB NB 23 Active #> 663 2021 CIN CB <NA> 29 Active #> 664 2021 CIN CB NB 35 Active #> 665 2021 CIN CB CB 20 Active #> 666 2021 CIN DB FS 43 Active #> 667 2021 CIN DB FS 40 Active #> 668 2021 CIN DB NB 21 Active #> 669 2021 CIN DB SS 24 Active #> 670 2021 CIN DB SS 37 Active #> 671 2021 CIN DB SS 41 Active #> 672 2021 CIN DB <NA> 30 Active #> 673 2021 CIN DE LB 44 Active #> 674 2021 CIN DE RDE 58 Inactive #> 675 2021 CIN DE RDE 91 Active #> 676 2021 CIN DE LDE 94 Active #> 677 2021 CIN DE <NA> 52 Active #> 678 2021 CIN DE <NA> 56 Active #> 679 2021 CIN DE LDE 90 Active #> 680 2021 CIN DE LDE 96 Active #> 681 2021 CIN DE RDE 93 Active #> 682 2021 CIN DT NT 68 Active #> 683 2021 CIN DT NT 98 Active #> 684 2021 CIN DT RDT 76 Active #> 685 2021 CIN DT NT 99 Active #> 686 2021 CIN DT RDT 95 Active #> 687 2021 CIN DT <NA> 69 Active #> 688 2021 CIN DT RDT 65 Active #> 689 2021 CIN G <NA> 64 Active #> 690 2021 CIN K K 3 Active #> 691 2021 CIN K K 2 Active #> 692 2021 CIN LB LB 59 Active #> 693 2021 CIN LB LB 57 Active #> 694 2021 CIN LB LB 51 Active #> 695 2021 CIN LB LB 47 Active #> 696 2021 CIN LB LB 50 Active #> 697 2021 CIN LB <NA> 49 Active #> 698 2021 CIN LB LB 55 Active #> 699 2021 CIN LS <NA> 46 Active #> 700 2021 CIN LS <NA> 48 Injured Reserve #> 701 2021 CIN OG LG 67 Active #> 702 2021 CIN OG LT 77 Active #> 703 2021 CIN OG RG 79 Active #> 704 2021 CIN OG LG 64 Active #> 705 2021 CIN OG RG 60 Active #> 706 2021 CIN OG RG 72 Active #> 707 2021 CIN OT LT 75 Active #> 708 2021 CIN OT LT 73 Active #> 709 2021 CIN OT RT 71 Active #> 710 2021 CIN OT LG 70 Active #> 711 2021 CIN OT RT 74 Active #> 712 2021 CIN OT <NA> 62 Active #> 713 2021 CIN P <NA> 4 Active #> 714 2021 CIN P <NA> 10 Active #> 715 2021 CIN QB <NA> 6 Active #> 716 2021 CIN QB <NA> 5 Active #> 717 2021 CIN QB QB 9 Active #> 718 2021 CIN QB QB 8 Active #> 719 2021 CIN QB <NA> 0 Active #> 720 2021 CIN RB RB 36 Active #> 721 2021 CIN RB RB 32 Active #> 722 2021 CIN RB RB 31 Active #> 723 2021 CIN RB RB 34 Active #> 724 2021 CIN RB RB 28 Active #> 725 2021 CIN RB RB 25 Active #> 726 2021 CIN T <NA> 75 Active #> 727 2021 CIN T <NA> 70 Active #> 728 2021 CIN TE TE 86 Active #> 729 2021 CIN TE TE 81 Active #> 730 2021 CIN TE TE 87 Active #> 731 2021 CIN TE TE 89 Active #> 732 2021 CIN TE <NA> 82 Active #> 733 2021 CIN TE <NA> 88 Active #> 734 2021 CIN TE <NA> 84 Active #> 735 2021 CIN WR SWR 11 Active #> 736 2021 CIN WR <NA> 12 Active #> 737 2021 CIN WR <NA> 5 Active #> 738 2021 CIN WR LWR 17 Active #> 739 2021 CIN WR LWR 19 Active #> 740 2021 CIN WR <NA> 14 Active #> 741 2021 CIN WR LWR 85 Active #> 742 2021 CIN WR RWR 1 Active #> 743 2021 CIN WR SWR 83 Active #> 744 2021 CIN WR <NA> 80 Active #> 745 2021 CIN WR RWR 16 Active #> 746 2021 CIN WR <NA> 15 Active #> 747 2021 CIN WR <NA> 19 Active #> 748 2021 CLE C C 64 Active #> 749 2021 CLE C C 63 Active #> 750 2021 CLE C <NA> 58 Active #> 751 2021 CLE CB RCB 20 Active #> 752 2021 CLE CB <NA> 34 Active #> 753 2021 CLE CB RCB 26 Active #> 754 2021 CLE CB LCB 23 Active #> 755 2021 CLE CB <NA> 25 Active #> 756 2021 CLE CB LCB 21 Active #> 757 2021 CLE CB LCB 38 Active #> 758 2021 CLE CB <NA> 49 Active #> 759 2021 CLE CB RCB 36 Active #> 760 2021 CLE CB <NA> 37 Active #> 761 2021 CLE DB SS 22 Active #> 762 2021 CLE DB SS 35 Active #> 763 2021 CLE DB FS 43 Active #> 764 2021 CLE DB <NA> 48 Active #> 765 2021 CLE DB <NA> 0 Active #> 766 2021 CLE DB SS 33 Active #> 767 2021 CLE DB FS 39 Active #> 768 2021 CLE DB FS 29 Active #> 769 2021 CLE DE RDE 69 Active #> 770 2021 CLE DE RDE 94 Active #> 771 2021 CLE DE <NA> 91 Active #> 772 2021 CLE DE RDE 90 Active #> 773 2021 CLE DE LDE 59 Active #> 774 2021 CLE DE <NA> 59 Active #> 775 2021 CLE DE LDE 95 Active #> 776 2021 CLE DE <NA> 11 Active #> 777 2021 CLE DE LDE 55 Active #> 778 2021 CLE DE <NA> 57 Active #> 779 2021 CLE DT <NA> 77 Active #> 780 2021 CLE DT LDT 58 Active #> 781 2021 CLE DT RDT 99 Active #> 782 2021 CLE DT LDT 96 Active #> 783 2021 CLE DT <NA> 65 Active #> 784 2021 CLE DT LDT 98 Active #> 785 2021 CLE DT RDT 92 Active #> 786 2021 CLE DT LDT 97 Active #> 787 2021 CLE DT RDT 93 Active #> 788 2021 CLE FB <NA> 40 Active #> 789 2021 CLE FB RB 31 Active #> 790 2021 CLE G <NA> 72 Active #> 791 2021 CLE K <NA> 3 Active #> 792 2021 CLE K K 3 Active #> 793 2021 CLE K K 2 Inactive #> 794 2021 CLE LB SAM 42 Active #> 795 2021 CLE LB WLB 51 Active #> 796 2021 CLE LB WLB 56 Active #> 797 2021 CLE LB SAM 52 Active #> 798 2021 CLE LB <NA> 41 Inactive #> 799 2021 CLE LB MLB 50 Inactive #> 800 2021 CLE LB MLB 4 Active #> 801 2021 CLE LB MLB 0 Active #> 802 2021 CLE LB WLB 28 Active #> 803 2021 CLE LB SAM 59 Active #> 804 2021 CLE LB SAM 44 Active #> 805 2021 CLE LS <NA> 47 Active #> 806 2021 CLE OG LG 75 Active #> 807 2021 CLE OG RG 62 Active #> 808 2021 CLE OG RG 77 Active #> 809 2021 CLE OG RG 72 Active #> 810 2021 CLE OG LG 68 Active #> 811 2021 CLE OG <NA> 67 Active #> 812 2021 CLE OG LG 79 Active #> 813 2021 CLE OL C 53 Active #> 814 2021 CLE OT LT 66 Active #> 815 2021 CLE OT RT 70 Active #> 816 2021 CLE OT <NA> 67 Active #> 817 2021 CLE OT LT 71 Active #> 818 2021 CLE OT RT 74 Active #> 819 2021 CLE OT LT 60 Active #> 820 2021 CLE OT RT 78 Active #> 821 2021 CLE P <NA> 7 Active #> 822 2021 CLE P <NA> 17 Active #> 823 2021 CLE QB QB 17 Active #> 824 2021 CLE QB QB 5 Active #> 825 2021 CLE QB QB 6 Active #> 826 2021 CLE RB RB 25 Active #> 827 2021 CLE RB RB 49 Active #> 828 2021 CLE RB <NA> 22 Active #> 829 2021 CLE RB <NA> 37 Active #> 830 2021 CLE RB RB 24 Active #> 831 2021 CLE RB RB 30 Active #> 832 2021 CLE RB <NA> 37 Active #> 833 2021 CLE RB RB 27 Active #> 834 2021 CLE T <NA> 69 Active #> 835 2021 CLE T <NA> 68 Active #> 836 2021 CLE TE TE 88 Active #> 837 2021 CLE TE TE 81 Active #> 838 2021 CLE TE <NA> 86 Active #> 839 2021 CLE TE TE 89 Inactive #> 840 2021 CLE TE TE 85 Active #> 841 2021 CLE TE TE 87 Active #> 842 2021 CLE WR SWR 19 Active #> 843 2021 CLE WR SWR 16 Inactive #> 844 2021 CLE WR RWR 15 Inactive #> 845 2021 CLE WR LWR 13 Active #> 846 2021 CLE WR <NA> 16 Active #> 847 2021 CLE WR SWR 12 Active #> 848 2021 CLE WR RWR 80 Active #> 849 2021 CLE WR SWR 11 Active #> 850 2021 CLE WR <NA> 0 Active #> 851 2021 CLE WR LWR 82 Active #> 852 2021 CLE WR LWR 83 Active #> 853 2021 CLE WR RWR 10 Active #> 854 2021 CLE WR <NA> 18 Inactive #> 855 2021 CLE WR LWR 84 Active #> 856 2021 DAL C C 63 Active #> 857 2021 DAL C C 72 Injured Reserve #> 858 2021 DAL CB CB 31 Active #> 859 2021 DAL CB SS 38 Inactive #> 860 2021 DAL CB <NA> 36 Active #> 861 2021 DAL CB CB 27 Active #> 862 2021 DAL CB LCB 30 Active #> 863 2021 DAL CB LCB 24 Active #> 864 2021 DAL CB LCB 33 Active #> 865 2021 DAL CB CB 40 Active #> 866 2021 DAL CB CB 29 Active #> 867 2021 DAL CB CB 26 Active #> 868 2021 DAL CB <NA> 20 Active #> 869 2021 DAL CB <NA> 41 Inactive #> 870 2021 DAL DB FS 35 Active #> 871 2021 DAL DB SS 32 Active #> 872 2021 DAL DB <NA> 25 Active #> 873 2021 DAL DB <NA> 39 Active #> 874 2021 DAL DB FS 23 Active #> 875 2021 DAL DB SS 6 Active #> 876 2021 DAL DB FS 28 Inactive #> 877 2021 DAL DE <NA> 59 Active #> 878 2021 DAL DE LDE 93 Active #> 879 2021 DAL DE RDE 97 Active #> 880 2021 DAL DE LDE 90 Active #> 881 2021 DAL DE LDE 56 Active #> 882 2021 DAL DE LDT 91 Inactive #> 883 2021 DAL DE RDE 94 Active #> 884 2021 DAL DE LDT 95 Active #> 885 2021 DAL DE RDE 92 Active #> 886 2021 DAL DT <NA> 98 Active #> 887 2021 DAL DT LDT 72 Active #> 888 2021 DAL DT RDT 58 Active #> 889 2021 DAL DT RDT 75 Active #> 890 2021 DAL DT <NA> 99 Active #> 891 2021 DAL DT RDT 96 Inactive #> 892 2021 DAL FB <NA> 46 Active #> 893 2021 DAL FB RB 45 Inactive #> 894 2021 DAL FB <NA> 49 Voluntary Opt Out #> 895 2021 DAL G C 68 Active #> 896 2021 DAL K <NA> 0 Active #> 897 2021 DAL K K 2 Active #> 898 2021 DAL LB WLB 55 Active #> 899 2021 DAL LB MLB 9 Active #> 900 2021 DAL LB WLB 57 Active #> 901 2021 DAL LB SLB 53 Active #> 902 2021 DAL LB SLB 43 Active #> 903 2021 DAL LB <NA> 42 Active #> 904 2021 DAL LB SLB 11 Active #> 905 2021 DAL LB MLB 42 Active #> 906 2021 DAL LB <NA> 0 Inactive #> 907 2021 DAL LB MLB 48 Active #> 908 2021 DAL LS <NA> 44 Active #> 909 2021 DAL OG RG 70 Active #> 910 2021 DAL OG LG 66 Active #> 911 2021 DAL OG C 52 Active #> 912 2021 DAL OL <NA> 64 Active #> 913 2021 DAL OL <NA> 65 Inactive #> 914 2021 DAL OL <NA> 62 Active #> 915 2021 DAL OL RT 78 Active #> 916 2021 DAL OT RT 76 Active #> 917 2021 DAL OT RG 69 Active #> 918 2021 DAL OT LG 67 Active #> 919 2021 DAL OT RG 60 Active #> 920 2021 DAL OT LT 77 Active #> 921 2021 DAL OT <NA> 61 Active #> 922 2021 DAL OT RT 71 Active #> 923 2021 DAL OT LT 79 Active #> 924 2021 DAL P <NA> 0 Inactive #> 925 2021 DAL P <NA> 5 Active #> 926 2021 DAL QB QB 10 Active #> 927 2021 DAL QB <NA> 3 Active #> 928 2021 DAL QB QB 7 Active #> 929 2021 DAL QB QB 4 Active #> 930 2021 DAL QB QB 3 Active #> 931 2021 DAL RB RB 20 Active #> 932 2021 DAL RB <NA> 37 Active #> 933 2021 DAL RB RB 34 Active #> 934 2021 DAL RB RB 21 Active #> 935 2021 DAL RB RB 36 Active #> 936 2021 DAL TE <NA> 49 Active #> 937 2021 DAL TE TE 47 Active #> 938 2021 DAL TE TE 87 Active #> 939 2021 DAL TE TE 89 Active #> 940 2021 DAL TE TE 86 Active #> 941 2021 DAL TE TE 84 Active #> 942 2021 DAL WR LWR 17 Active #> 943 2021 DAL WR <NA> 83 Active #> 944 2021 DAL WR LWR 1 Active #> 945 2021 DAL WR RWR 85 Active #> 946 2021 DAL WR RWR 19 Active #> 947 2021 DAL WR SWR 81 Active #> 948 2021 DAL WR SWR 13 Active #> 949 2021 DAL WR <NA> 6 Active #> 950 2021 DAL WR <NA> 80 Active #> 951 2021 DAL WR LWR 88 Inactive #> 952 2021 DAL WR <NA> 14 Active #> 953 2021 DAL WR <NA> 16 Active #> 954 2021 DAL WR <NA> 14 Active #> 955 2021 DAL WR <NA> 19 Active #> 956 2021 DAL WR <NA> 15 Active #> 957 2021 DAL WR <NA> 18 Active #> 958 2021 DEN C C 79 Active #> 959 2021 DEN C RG 77 Active #> 960 2021 DEN C <NA> 65 Inactive #> 961 2021 DEN CB RCB 21 Active #> 962 2021 DEN CB RCB 29 Active #> 963 2021 DEN CB <NA> 35 Inactive #> 964 2021 DEN CB RCB 42 Active #> 965 2021 DEN CB <NA> 39 Active #> 966 2021 DEN CB LCB 23 Active #> 967 2021 DEN CB <NA> 34 Active #> 968 2021 DEN CB <NA> 49 Active #> 969 2021 DEN CB LCB 13 Active #> 970 2021 DEN CB <NA> 27 Active #> 971 2021 DEN CB LCB 2 Active #> 972 2021 DEN CB <NA> 20 Active #> 973 2021 DEN DB SS 37 Active #> 974 2021 DEN DB <NA> 43 Active #> 975 2021 DEN DB SS 22 Active #> 976 2021 DEN DB FS 31 Active #> 977 2021 DEN DB FS 30 Active #> 978 2021 DEN DB SS 41 Active #> 979 2021 DEN DE LDE 93 Active #> 980 2021 DEN DE RDE 96 Active #> 981 2021 DEN DE <NA> 51 Active #> 982 2021 DEN DE WLB 53 Active #> 983 2021 DEN DL <NA> 91 Active #> 984 2021 DEN DT <NA> 94 Inactive #> 985 2021 DEN DT NT 90 Active #> 986 2021 DEN DT <NA> 68 Active #> 987 2021 DEN DT LDE 92 Active #> 988 2021 DEN DT NT 97 Active #> 989 2021 DEN DT LDE 99 Active #> 990 2021 DEN DT RDE 95 Active #> 991 2021 DEN FB <NA> 43 Active #> 992 2021 DEN FB TE 83 Active #> 993 2021 DEN G LG 52 Active #> 994 2021 DEN G <NA> 62 Active #> 995 2021 DEN G LG 66 Active #> 996 2021 DEN G RG 61 Active #> 997 2021 DEN K K 8 Active #> 998 2021 DEN LB <NA> 56 Active #> 999 2021 DEN LB LILB 62 Active #> 1000 2021 DEN LB SLB 59 Active #> 1001 2021 DEN LB SLB 58 Active #> 1002 2021 DEN LB <NA> 67 Active #> 1003 2021 DEN LB RILB 40 Active #> 1004 2021 DEN LB <NA> 57 Inactive #> 1005 2021 DEN LB SLB 91 Active #> 1006 2021 DEN LB RILB 47 Active #> 1007 2021 DEN LB RILB 63 Active #> 1008 2021 DEN LB LILB 54 Active #> 1009 2021 DEN LB WLB 55 Active #> 1010 2021 DEN LB LILB 64 Active #> 1011 2021 DEN LB WLB 48 Active #> 1012 2021 DEN LB LILB 45 Active #> 1013 2021 DEN LS <NA> 46 Active #> 1014 2021 DEN NT NT 98 Active #> 1015 2021 DEN OG <NA> 69 Active #> 1016 2021 DEN OG RG 71 Active #> 1017 2021 DEN OL <NA> 77 Active #> 1018 2021 DEN OL <NA> 60 Active #> 1019 2021 DEN OLB SLB 47 Active #> 1020 2021 DEN OT RT 78 Active #> 1021 2021 DEN OT LT 75 Active #> 1022 2021 DEN OT LT 73 Active #> 1023 2021 DEN OT RT 70 Active #> 1024 2021 DEN OT RT 76 Active #> 1025 2021 DEN OT LT 72 Active #> 1026 2021 DEN P <NA> 6 Active #> 1027 2021 DEN P <NA> 15 Active #> 1028 2021 DEN QB QB 5 Active #> 1029 2021 DEN QB QB 3 Active #> 1030 2021 DEN QB QB 4 Active #> 1031 2021 DEN RB RB 39 Active #> 1032 2021 DEN RB RB 32 Inactive #> 1033 2021 DEN RB <NA> 0 Active #> 1034 2021 DEN RB RB 17 Inactive #> 1035 2021 DEN RB RB 25 Active #> 1036 2021 DEN RB RB 28 Active #> 1037 2021 DEN RB RB 33 Active #> 1038 2021 DEN RB RB 26 Active #> 1039 2021 DEN SS FS 36 Active #> 1040 2021 DEN TE TE 82 Active #> 1041 2021 DEN TE TE 88 Active #> 1042 2021 DEN TE TE 87 Active #> 1043 2021 DEN TE TE 85 Active #> 1044 2021 DEN TE <NA> 89 Active #> 1045 2021 DEN TE <NA> 0 Active #> 1046 2021 DEN TE <NA> 81 Active #> 1047 2021 DEN WR <NA> 15 Active #> 1048 2021 DEN WR <NA> 17 Active #> 1049 2021 DEN WR RWR 14 Active #> 1050 2021 DEN WR <NA> 84 Inactive #> 1051 2021 DEN WR <NA> 86 Active #> 1052 2021 DEN WR LWR 10 Active #> 1053 2021 DEN WR SWR 17 Active #> 1054 2021 DEN WR LWR 81 Active #> 1055 2021 DEN WR RWR 9 Active #> 1056 2021 DEN WR <NA> 12 Active #> 1057 2021 DEN WR SWR 16 Active #> 1058 2021 DEN WR SWR 1 Active #> 1059 2021 DEN WR RWR 19 Active #> 1060 2021 DEN WR LWR 11 Active #> 1061 2021 DET C C 63 Active #> 1062 2021 DET C <NA> 62 Inactive #> 1063 2021 DET C <NA> 60 Voluntary Opt Out #> 1064 2021 DET CB LCB 24 Active #> 1065 2021 DET CB RCB 23 Active #> 1066 2021 DET CB <NA> 29 Active #> 1067 2021 DET CB RCB 1 Active #> 1068 2021 DET CB RCB 27 Active #> 1069 2021 DET CB LCB 43 Active #> 1070 2021 DET CB LCB 2 Active #> 1071 2021 DET CB <NA> 41 Active #> 1072 2021 DET CB <NA> 29 Active #> 1073 2021 DET CB RCB 39 Active #> 1074 2021 DET DB <NA> 47 Active #> 1075 2021 DET DB <NA> 49 Active #> 1076 2021 DET DB FS 33 Active #> 1077 2021 DET DB <NA> 42 Active #> 1078 2021 DET DB <NA> 43 Active #> 1079 2021 DET DB FS 21 Active #> 1080 2021 DET DB SS 25 Active #> 1081 2021 DET DB <NA> 38 Inactive #> 1082 2021 DET DB SS 31 Active #> 1083 2021 DET DB RCB 26 Active #> 1084 2021 DET DB RB 40 Active #> 1085 2021 DET DE ROLB 99 Active #> 1086 2021 DET DE <NA> 79 Inactive #> 1087 2021 DET DE LOLB 53 Active #> 1088 2021 DET DE LOLB 94 Active #> 1089 2021 DET DE ROLB 95 Active #> 1090 2021 DET DE LOLB 90 Active #> 1091 2021 DET DE ROLB 52 Active #> 1092 2021 DET DE NT 76 Active #> 1093 2021 DET DT RDE 96 Inactive #> 1094 2021 DET DT NT 54 Active #> 1095 2021 DET DT LDE 91 Active #> 1096 2021 DET DT LDE 75 Active #> 1097 2021 DET DT NT 98 Active #> 1098 2021 DET DT <NA> 0 Active #> 1099 2021 DET DT LDE 93 Active #> 1100 2021 DET DT <NA> 69 Active #> 1101 2021 DET DT RDE 92 Active #> 1102 2021 DET DT RDE 97 Active #> 1103 2021 DET DT <NA> 74 Active #> 1104 2021 DET FB <NA> 45 Active #> 1105 2021 DET FB RB 46 Active #> 1106 2021 DET ILB <NA> 50 Active #> 1107 2021 DET K K 5 Active #> 1108 2021 DET K K 5 Active #> 1109 2021 DET K K 4 Active #> 1110 2021 DET LB RILB 57 Active #> 1111 2021 DET LB LILB 55 Active #> 1112 2021 DET LB LILB 44 Active #> 1113 2021 DET LB RILB 51 Active #> 1114 2021 DET LB <NA> 59 Active #> 1115 2021 DET LB <NA> 50 Inactive #> 1116 2021 DET LB <NA> 45 Active #> 1117 2021 DET LB RILB 8 Active #> 1118 2021 DET LB LILB 34 Active #> 1119 2021 DET LB <NA> 45 Active #> 1120 2021 DET LS <NA> 47 Active #> 1121 2021 DET LS <NA> 48 Active #> 1122 2021 DET NT <NA> 61 Active #> 1123 2021 DET OG RG 64 Active #> 1124 2021 DET OL C 77 Active #> 1125 2021 DET OL LG 73 Active #> 1126 2021 DET OL LG 78 Inactive #> 1127 2021 DET OL RG 71 Active #> 1128 2021 DET OL LT 65 Active #> 1129 2021 DET OT LT 70 Active #> 1130 2021 DET OT RT 58 Active #> 1131 2021 DET OT <NA> 51 Active #> 1132 2021 DET OT RG 72 Active #> 1133 2021 DET OT RT 67 Active #> 1134 2021 DET OT LT 68 Active #> 1135 2021 DET OT RT 66 Active #> 1136 2021 DET P <NA> 3 Active #> 1137 2021 DET QB QB 12 Active #> 1138 2021 DET QB QB 8 Active #> 1139 2021 DET QB QB 10 Active #> 1140 2021 DET QB QB 16 Active #> 1141 2021 DET RB RB 0 Inactive #> 1142 2021 DET RB RB 32 Active #> 1143 2021 DET RB <NA> 35 Active #> 1144 2021 DET RB RB 40 Active #> 1145 2021 DET RB RB 30 Active #> 1146 2021 DET RB <NA> 28 Active #> 1147 2021 DET RB <NA> 46 Active #> 1148 2021 DET RB RB 36 Active #> 1149 2021 DET RB RB 28 Active #> 1150 2021 DET TE <NA> 86 Active #> 1151 2021 DET TE <NA> 89 Active #> 1152 2021 DET TE TE 84 Active #> 1153 2021 DET TE TE 86 Active #> 1154 2021 DET TE <NA> 49 Active #> 1155 2021 DET TE TE 43 Active #> 1156 2021 DET TE TE 88 Active #> 1157 2021 DET TE TE 80 Active #> 1158 2021 DET WR <NA> 83 Active #> 1159 2021 DET WR <NA> 85 Active #> 1160 2021 DET WR SWR 14 Active #> 1161 2021 DET WR RWR 82 Active #> 1162 2021 DET WR SWR 17 Active #> 1163 2021 DET WR LWR 6 Active #> 1164 2021 DET WR LWR 87 Active #> 1165 2021 DET WR RWR 13 Active #> 1166 2021 DET WR LWR 11 Active #> 1167 2021 DET WR SWR 15 Active #> 1168 2021 DET WR RWR 19 Active #> 1169 2021 DET WR <NA> 82 Active #> 1170 2021 DET WR RWR 18 Active #> 1171 2021 DET WR <NA> 86 Active #> 1172 2021 GB C C 67 Active #> 1173 2021 GB CB CB 39 Active #> 1174 2021 GB CB RCB 21 Active #> 1175 2021 GB CB <NA> 30 Active #> 1176 2021 GB CB RCB 20 Active #> 1177 2021 GB CB CB 22 Active #> 1178 2021 GB CB LCB 23 Active #> 1179 2021 GB CB <NA> 34 Active #> 1180 2021 GB CB RCB 48 Active #> 1181 2021 GB DB SS 38 Active #> 1182 2021 GB DB SS 26 Active #> 1183 2021 GB DB FS 31 Active #> 1184 2021 GB DB LCB 24 Active #> 1185 2021 GB DB SS 41 Active #> 1186 2021 GB DB FS 36 Active #> 1187 2021 GB DB FS 25 Active #> 1188 2021 GB DB <NA> 40 Active #> 1189 2021 GB DE LDE 94 Active #> 1190 2021 GB DE ROLB 75 Active #> 1191 2021 GB DE <NA> 47 Active #> 1192 2021 GB DE NT 97 Active #> 1193 2021 GB DE RDE 96 Active #> 1194 2021 GB DT <NA> 62 Active #> 1195 2021 GB DT NT 93 Active #> 1196 2021 GB DT RDE 90 Active #> 1197 2021 GB DT LDE 99 Active #> 1198 2021 GB DT <NA> 74 Active #> 1199 2021 GB DT LDE 95 Active #> 1200 2021 GB DT NT 63 Active #> 1201 2021 GB G RG 64 Active #> 1202 2021 GB G LG 68 Active #> 1203 2021 GB G LG 76 Active #> 1204 2021 GB K K 2 Active #> 1205 2021 GB K <NA> 35 Active #> 1206 2021 GB LB RILB 46 Active #> 1207 2021 GB LB LOLB 91 Active #> 1208 2021 GB LB LOLB 52 Active #> 1209 2021 GB LB <NA> 57 Active #> 1210 2021 GB LB ROLB 53 Active #> 1211 2021 GB LB LILB 42 Active #> 1212 2021 GB LB RILB 44 Active #> 1213 2021 GB LB ROLB 55 Active #> 1214 2021 GB LB RILB 59 Active #> 1215 2021 GB LB LOLB 50 Active #> 1216 2021 GB LB LILB 51 Active #> 1217 2021 GB LB LILB 54 Active #> 1218 2021 GB LB <NA> 58 Active #> 1219 2021 GB LB <NA> 56 Inactive #> 1220 2021 GB LB RDE 98 Active #> 1221 2021 GB LS <NA> 43 Active #> 1222 2021 GB LS <NA> 47 Active #> 1223 2021 GB OG RT 77 Active #> 1224 2021 GB OG LG 74 Active #> 1225 2021 GB OG RG 62 Active #> 1226 2021 GB OG RG 72 Active #> 1227 2021 GB OL RT 78 Active #> 1228 2021 GB OL C 60 Active #> 1229 2021 GB OL RG 70 Active #> 1230 2021 GB OL C 71 Active #> 1231 2021 GB OL <NA> 61 Active #> 1232 2021 GB OL LT 65 Active #> 1233 2021 GB OT RT 79 Active #> 1234 2021 GB OT LT 73 Active #> 1235 2021 GB OT LT 69 Active #> 1236 2021 GB P <NA> 6 Active #> 1237 2021 GB QB QB 12 Active #> 1238 2021 GB QB QB 9 Active #> 1239 2021 GB QB QB 10 Active #> 1240 2021 GB QB QB 7 Active #> 1241 2021 GB QB QB 9 Active #> 1242 2021 GB RB RB 22 Active #> 1243 2021 GB RB RB 27 Active #> 1244 2021 GB RB RB 33 Active #> 1245 2021 GB RB RB 28 Active #> 1246 2021 GB RB RB 32 Active #> 1247 2021 GB TE TE 89 Active #> 1248 2021 GB TE TE 87 Inactive #> 1249 2021 GB TE TE 49 Active #> 1250 2021 GB TE TE 81 Active #> 1251 2021 GB TE TE 82 Inactive #> 1252 2021 GB TE <NA> 45 Active #> 1253 2021 GB TE TE 85 Active #> 1254 2021 GB TE <NA> 86 Active #> 1255 2021 GB TE <NA> 80 Active #> 1256 2021 GB WR RWR 18 Active #> 1257 2021 GB WR LWR 17 Active #> 1258 2021 GB WR <NA> 6 Inactive #> 1259 2021 GB WR RWR 86 Active #> 1260 2021 GB WR LWR 84 Active #> 1261 2021 GB WR <NA> 16 Active #> 1262 2021 GB WR LWR 19 Active #> 1263 2021 GB WR <NA> 80 Active #> 1264 2021 GB WR RWR 8 Active #> 1265 2021 GB WR LWR 13 Active #> 1266 2021 GB WR SWR 83 Active #> 1267 2021 GB WR SWR 88 Active #> 1268 2021 GB WR SWR 11 Active #> 1269 2021 GB WR <NA> 6 Active #> 1270 2021 HOU C <NA> 0 Active #> 1271 2021 HOU CB LCB 26 Active #> 1272 2021 HOU CB <NA> 34 Active #> 1273 2021 HOU CB SS 1 Active #> 1274 2021 HOU CB RCB 21 Inactive #> 1275 2021 HOU CB <NA> 0 Active #> 1276 2021 HOU CB LCB 22 Active #> 1277 2021 HOU DB SS 23 Active #> 1278 2021 HOU DB RCB 25 Active #> 1279 2021 HOU DB SS 36 Active #> 1280 2021 HOU DB <NA> 24 Active #> 1281 2021 HOU DB <NA> 38 Active #> 1282 2021 HOU DB LCB 39 Active #> 1283 2021 HOU DB FS 20 Active #> 1284 2021 HOU DB FS 29 Active #> 1285 2021 HOU DB FS 33 Active #> 1286 2021 HOU DB <NA> 3 Active #> 1287 2021 HOU DB RCB 37 Active #> 1288 2021 HOU DE <NA> 95 Active #> 1289 2021 HOU DE RDE 93 Active #> 1290 2021 HOU DE LDE 94 Active #> 1291 2021 HOU DE RDE 50 Active #> 1292 2021 HOU DE RDT 44 Active #> 1293 2021 HOU DE <NA> 60 Active #> 1294 2021 HOU DE <NA> 79 Active #> 1295 2021 HOU DT LDT 79 Active #> 1296 2021 HOU DT RDT 90 Active #> 1297 2021 HOU DT LDT 96 Active #> 1298 2021 HOU DT LDT 98 Active #> 1299 2021 HOU DT <NA> 91 Active #> 1300 2021 HOU DT RDT 97 Active #> 1301 2021 HOU K K 7 Active #> 1302 2021 HOU LB SLB 32 Active #> 1303 2021 HOU LB WILL 56 Active #> 1304 2021 HOU LB LDE 54 Active #> 1305 2021 HOU LB WILL 43 Active #> 1306 2021 HOU LB MIKE 51 Active #> 1307 2021 HOU LB WILL 41 Active #> 1308 2021 HOU LB LDE 59 Active #> 1309 2021 HOU LB SLB 48 Active #> 1310 2021 HOU LB RDE 52 Active #> 1311 2021 HOU LB RDE 53 Active #> 1312 2021 HOU LB SLB 57 Active #> 1313 2021 HOU LB MIKE 55 Active #> 1314 2021 HOU LB MIKE 58 Active #> 1315 2021 HOU LS <NA> 0 Active #> 1316 2021 HOU LS <NA> 45 Active #> 1317 2021 HOU LS <NA> 46 Active #> 1318 2021 HOU NT LDT 92 Active #> 1319 2021 HOU OG LG 77 Active #> 1320 2021 HOU OG LG 63 Active #> 1321 2021 HOU OL RG 65 Active #> 1322 2021 HOU OL LT 72 Active #> 1323 2021 HOU OL C 68 Active #> 1324 2021 HOU OL C 75 Active #> 1325 2021 HOU OL LG 74 Active #> 1326 2021 HOU OL RG 62 Active #> 1327 2021 HOU OL C 66 Active #> 1328 2021 HOU OL RT 61 Active #> 1329 2021 HOU OL RG 64 Active #> 1330 2021 HOU OL RT 70 Active #> 1331 2021 HOU OT RT 71 Active #> 1332 2021 HOU OT LT 63 Active #> 1333 2021 HOU OT LT 78 Inactive #> 1334 2021 HOU OT LT 67 Active #> 1335 2021 HOU P <NA> 11 Active #> 1336 2021 HOU QB QB 10 Active #> 1337 2021 HOU QB QB 4 Active #> 1338 2021 HOU QB QB 5 Active #> 1339 2021 HOU QB QB 6 Active #> 1340 2021 HOU RB RB 22 Active #> 1341 2021 HOU RB RB 2 Active #> 1342 2021 HOU RB RB 28 Active #> 1343 2021 HOU RB RB 30 Active #> 1344 2021 HOU RB RB 8 Inactive #> 1345 2021 HOU RB RB 31 Active #> 1346 2021 HOU RB RB 27 Active #> 1347 2021 HOU RB RB 40 Active #> 1348 2021 HOU T <NA> 0 Active #> 1349 2021 HOU TE TE 83 Active #> 1350 2021 HOU TE TE 88 Active #> 1351 2021 HOU TE TE 9 Active #> 1352 2021 HOU TE TE 81 Active #> 1353 2021 HOU TE TE 85 Active #> 1354 2021 HOU TE <NA> 45 Active #> 1355 2021 HOU WR SWR 37 Inactive #> 1356 2021 HOU WR SWR 15 Active #> 1357 2021 HOU WR SWR 16 Active #> 1358 2021 HOU WR <NA> 84 Active #> 1359 2021 HOU WR RWR 12 Active #> 1360 2021 HOU WR LWR 14 Active #> 1361 2021 HOU WR RWR 18 Active #> 1362 2021 HOU WR <NA> 14 Active #> 1363 2021 HOU WR LWR 13 Active #> 1364 2021 HOU WR RWR 12 Active #> 1365 2021 HOU WR LWR 18 Active #> 1366 2021 HOU WR RWR 19 Active #> 1367 2021 HOU WR <NA> 0 Active #> 1368 2021 IND C C 78 Active #> 1369 2021 IND C C 68 Active #> 1370 2021 IND CB NB 36 Active #> 1371 2021 IND CB NB 38 Active #> 1372 2021 IND CB CB 26 Active #> 1373 2021 IND CB CB 27 Active #> 1374 2021 IND CB CB 47 Active #> 1375 2021 IND CB <NA> 35 Active #> 1376 2021 IND CB CB 34 Active #> 1377 2021 IND CB NB 23 Active #> 1378 2021 IND CB CB 39 Active #> 1379 2021 IND DB SS 37 Active #> 1380 2021 IND DB FS 33 Active #> 1381 2021 IND DB <NA> 0 Inactive #> 1382 2021 IND DB FS 32 Active #> 1383 2021 IND DB SS 30 Active #> 1384 2021 IND DB <NA> 42 Active #> 1385 2021 IND DB <NA> 31 Active #> 1386 2021 IND DB SS 29 Active #> 1387 2021 IND DB <NA> 33 Active #> 1388 2021 IND DE LDE 51 Active #> 1389 2021 IND DE LDE 57 Active #> 1390 2021 IND DE <NA> 91 Active #> 1391 2021 IND DE RDE 97 Active #> 1392 2021 IND DE <NA> 54 Active #> 1393 2021 IND DE LDE 52 Active #> 1394 2021 IND DE <NA> 76 Active #> 1395 2021 IND DT NT 66 Active #> 1396 2021 IND DT RDE 94 Active #> 1397 2021 IND DT NT 96 Active #> 1398 2021 IND DT RDE 92 Active #> 1399 2021 IND DT DT 95 Active #> 1400 2021 IND DT NT 90 Active #> 1401 2021 IND DT <NA> 93 Inactive #> 1402 2021 IND DT DT 65 Active #> 1403 2021 IND DT DT 99 Active #> 1404 2021 IND G C 63 Active #> 1405 2021 IND K K 3 Active #> 1406 2021 IND K K 5 Active #> 1407 2021 IND LB <NA> 42 Active #> 1408 2021 IND LB WLB 43 Active #> 1409 2021 IND LB WLB 53 Active #> 1410 2021 IND LB SLB 41 Active #> 1411 2021 IND LB SLB 49 Active #> 1412 2021 IND LB <NA> 52 Active #> 1413 2021 IND LB MLB 55 Active #> 1414 2021 IND LB MLB 58 Active #> 1415 2021 IND LB <NA> 0 Active #> 1416 2021 IND LB <NA> 59 Active #> 1417 2021 IND LB <NA> 59 Active #> 1418 2021 IND LB WLB 45 Active #> 1419 2021 IND LB SLB 44 Active #> 1420 2021 IND LS <NA> 46 Active #> 1421 2021 IND OG RG 64 Active #> 1422 2021 IND OG RG 75 Active #> 1423 2021 IND OG RT 72 Active #> 1424 2021 IND OG LG 62 Active #> 1425 2021 IND OG RG 60 Active #> 1426 2021 IND OL LG 56 Active #> 1427 2021 IND OT LT 71 Active #> 1428 2021 IND OT RT 73 Active #> 1429 2021 IND OT LT 79 Active #> 1430 2021 IND OT LG 69 Active #> 1431 2021 IND P <NA> 3 Active #> 1432 2021 IND P <NA> 8 Active #> 1433 2021 IND QB QB 4 Active #> 1434 2021 IND QB <NA> 6 Active #> 1435 2021 IND QB QB 3 Active #> 1436 2021 IND QB <NA> 6 Active #> 1437 2021 IND QB QB 2 Active #> 1438 2021 IND QB QB 9 Active #> 1439 2021 IND RB RB 35 Active #> 1440 2021 IND RB RB 21 Active #> 1441 2021 IND RB RB 20 Active #> 1442 2021 IND RB RB 40 Active #> 1443 2021 IND RB RB 28 Active #> 1444 2021 IND RB <NA> 35 Active #> 1445 2021 IND RB RB 25 Active #> 1446 2021 IND RB <NA> 39 Active #> 1447 2021 IND RB RB 42 Active #> 1448 2021 IND T RT 61 Active #> 1449 2021 IND TE TE 83 Active #> 1450 2021 IND TE <NA> 43 Active #> 1451 2021 IND TE TE 47 Active #> 1452 2021 IND TE <NA> 48 Active #> 1453 2021 IND TE TE 84 Active #> 1454 2021 IND TE TE 81 Active #> 1455 2021 IND TE TE 86 Active #> 1456 2021 IND TE <NA> 41 Active #> 1457 2021 IND WR LWR 10 Active #> 1458 2021 IND WR SWR 1 Active #> 1459 2021 IND WR SWR 12 Active #> 1460 2021 IND WR <NA> 0 Inactive #> 1461 2021 IND WR RWR 17 Active #> 1462 2021 IND WR SWR 15 Inactive #> 1463 2021 IND WR <NA> 3 Active #> 1464 2021 IND WR RWR 16 Active #> 1465 2021 IND WR RWR 80 Inactive #> 1466 2021 IND WR LWR 14 Active #> 1467 2021 IND WR LWR 13 Active #> 1468 2021 IND WR <NA> 7 Active #> 1469 2021 IND WR <NA> 85 Active #> 1470 2021 IND WR RWR 11 Active #> 1471 2021 JAX CB LCB 26 Active #> 1472 2021 JAX CB CB 0 Active #> 1473 2021 JAX CB <NA> 40 Active #> 1474 2021 JAX CB RCB 43 Active #> 1475 2021 JAX CB LCB 21 Active #> 1476 2021 JAX CB LCB 23 Active #> 1477 2021 JAX CB CB 34 Active #> 1478 2021 JAX CB <NA> 31 Active #> 1479 2021 JAX CB CB 27 Active #> 1480 2021 JAX CB RCB 32 Active #> 1481 2021 JAX CB RCB 37 Active #> 1482 2021 JAX DB SS 25 Active #> 1483 2021 JAX DB FS 20 Active #> 1484 2021 JAX DB SS 5 Active #> 1485 2021 JAX DB FS 42 Active #> 1486 2021 JAX DB <NA> 38 Active #> 1487 2021 JAX DB SS 29 Active #> 1488 2021 JAX DB FS 2 Active #> 1489 2021 JAX DE OLB 94 Active #> 1490 2021 JAX DE DE 59 Active #> 1491 2021 JAX DE <NA> 90 Active #> 1492 2021 JAX DE <NA> 96 Active #> 1493 2021 JAX DE SLB 92 Active #> 1494 2021 JAX DE OLB 41 Inactive #> 1495 2021 JAX DE DE 95 Active #> 1496 2021 JAX DE DE 91 Active #> 1497 2021 JAX DE DT 99 Inactive #> 1498 2021 JAX DE OLB 55 Active #> 1499 2021 JAX DT DT 99 Active #> 1500 2021 JAX DT NT 58 Active #> 1501 2021 JAX DT <NA> 79 Active #> 1502 2021 JAX DT DT 98 Active #> 1503 2021 JAX DT <NA> 93 Active #> 1504 2021 JAX DT NT 52 Active #> 1505 2021 JAX DT DT 97 Active #> 1506 2021 JAX K K 4 Active #> 1507 2021 JAX LB <NA> 53 Active #> 1508 2021 JAX LB MLB 50 Active #> 1509 2021 JAX LB WLB 56 Active #> 1510 2021 JAX LB WLB 53 Active #> 1511 2021 JAX LB MLB 54 Active #> 1512 2021 JAX LB MLB 57 Active #> 1513 2021 JAX LB SLB 45 Active #> 1514 2021 JAX LB SLB 48 Active #> 1515 2021 JAX LB WLB 44 Active #> 1516 2021 JAX LS <NA> 46 Active #> 1517 2021 JAX NT RDE 98 Active #> 1518 2021 JAX OG RG 60 Active #> 1519 2021 JAX OG LG 68 Active #> 1520 2021 JAX OL C 69 Active #> 1521 2021 JAX OL LG 78 Active #> 1522 2021 JAX OL C 65 Active #> 1523 2021 JAX OL RG 62 Active #> 1524 2021 JAX OL RG 77 Active #> 1525 2021 JAX OL RT 64 Active #> 1526 2021 JAX OT LG 66 Active #> 1527 2021 JAX OT LT 72 Active #> 1528 2021 JAX OT LT 76 Active #> 1529 2021 JAX OT RT 70 Active #> 1530 2021 JAX OT LT 74 Active #> 1531 2021 JAX OT RT 75 Active #> 1532 2021 JAX P PK 9 Active #> 1533 2021 JAX QB QB 6 Active #> 1534 2021 JAX QB QB 16 Active #> 1535 2021 JAX QB QB 15 Active #> 1536 2021 JAX QB QB 3 Active #> 1537 2021 JAX RB RB 22 Active #> 1538 2021 JAX RB RB 31 Active #> 1539 2021 JAX RB RB 24 Active #> 1540 2021 JAX RB RB 1 Inactive #> 1541 2021 JAX RB RB 30 Active #> 1542 2021 JAX RB RB 33 Active #> 1543 2021 JAX T <NA> 79 Active #> 1544 2021 JAX TE TE 80 Active #> 1545 2021 JAX TE TE 41 Active #> 1546 2021 JAX TE TE 89 Active #> 1547 2021 JAX TE TE 84 Active #> 1548 2021 JAX TE TE 86 Active #> 1549 2021 JAX TE TE 87 Active #> 1550 2021 JAX TE TE 85 Active #> 1551 2021 JAX WR LWR 39 Active #> 1552 2021 JAX WR RWR 14 Inactive #> 1553 2021 JAX WR <NA> 83 Active #> 1554 2021 JAX WR RWR 11 Active #> 1555 2021 JAX WR <NA> 35 Active #> 1556 2021 JAX WR LWR 14 Active #> 1557 2021 JAX WR <NA> 45 Active #> 1558 2021 JAX WR <NA> 88 Inactive #> 1559 2021 JAX WR <NA> 81 Active #> 1560 2021 JAX WR RWR 13 Active #> 1561 2021 JAX WR SWR 18 Active #> 1562 2021 JAX WR RWR 34 Active #> 1563 2021 JAX WR SWR 10 Active #> 1564 2021 JAX WR LWR 17 Active #> 1565 2021 JAX WR <NA> 83 Inactive #> 1566 2021 JAX WR SWR 12 Active #> 1567 2021 JAX WR LWR 19 Active #> 1568 2021 JAX WR <NA> 81 Active #> 1569 2021 KC C C 66 Active #> 1570 2021 KC C <NA> 63 Active #> 1571 2021 KC C C 64 Active #> 1572 2021 KC CB CB 29 Active #> 1573 2021 KC CB RCB 27 Active #> 1574 2021 KC CB LCB 26 Active #> 1575 2021 KC CB LCB 35 Active #> 1576 2021 KC CB RCB 30 Active #> 1577 2021 KC DB SS 24 Active #> 1578 2021 KC DB <NA> 0 Active #> 1579 2021 KC DB FS 20 Active #> 1580 2021 KC DB FS 22 Active #> 1581 2021 KC DB CB 21 Active #> 1582 2021 KC DB LCB 42 Active #> 1583 2021 KC DB SS 23 Active #> 1584 2021 KC DB FS 49 Active #> 1585 2021 KC DB RCB 38 Active #> 1586 2021 KC DB <NA> 6 Active #> 1587 2021 KC DB LCB 2 Active #> 1588 2021 KC DB <NA> 40 Active #> 1589 2021 KC DB FS 39 Active #> 1590 2021 KC DB SS 32 Active #> 1591 2021 KC DE LDE 97 Active #> 1592 2021 KC DE RDE 92 Active #> 1593 2021 KC DE LDE 59 Active #> 1594 2021 KC DE RDE 94 Active #> 1595 2021 KC DE RDE 55 Active #> 1596 2021 KC DE <NA> 96 Active #> 1597 2021 KC DE RDE 51 Active #> 1598 2021 KC DE <NA> 97 Active #> 1599 2021 KC DE <NA> 60 Active #> 1600 2021 KC DT RDT 99 Active #> 1601 2021 KC DT LDT 93 Active #> 1602 2021 KC DT LDT 98 Active #> 1603 2021 KC DT LDT 90 Active #> 1604 2021 KC DT RDT 91 Active #> 1605 2021 KC DT LDE 95 Active #> 1606 2021 KC FB RB 45 Active #> 1607 2021 KC G LG 68 Active #> 1608 2021 KC K K 7 Active #> 1609 2021 KC LB LB 44 Active #> 1610 2021 KC LB <NA> 46 Active #> 1611 2021 KC LB LB 50 Active #> 1612 2021 KC LB LB 53 Active #> 1613 2021 KC LB LB 56 Active #> 1614 2021 KC LB <NA> 43 Active #> 1615 2021 KC LB LB 47 Active #> 1616 2021 KC LB LB 54 Active #> 1617 2021 KC LB <NA> 48 Active #> 1618 2021 KC LS <NA> 41 Active #> 1619 2021 KC LS <NA> 0 Active #> 1620 2021 KC OG RT 77 Active #> 1621 2021 KC OG <NA> 69 Active #> 1622 2021 KC OG RG 76 Active #> 1623 2021 KC OG LG 62 Active #> 1624 2021 KC OG LG 73 Active #> 1625 2021 KC OL C 52 Active #> 1626 2021 KC OL RG 65 Active #> 1627 2021 KC OT LT 75 Active #> 1628 2021 KC OT RT 67 Active #> 1629 2021 KC OT LT 57 Active #> 1630 2021 KC OT <NA> 73 Active #> 1631 2021 KC OT RT 72 Active #> 1632 2021 KC P PK 5 Active #> 1633 2021 KC QB QB 8 Active #> 1634 2021 KC QB QB 15 Active #> 1635 2021 KC QB QB 4 Active #> 1636 2021 KC QB QB 6 Active #> 1637 2021 KC QB <NA> 9 Active #> 1638 2021 KC RB RB 1 Active #> 1639 2021 KC RB RB 34 Active #> 1640 2021 KC RB RB 24 Inactive #> 1641 2021 KC RB <NA> 40 Active #> 1642 2021 KC RB RB 31 Active #> 1643 2021 KC RB RB 25 Active #> 1644 2021 KC T RG 79 Active #> 1645 2021 KC T LT 70 Active #> 1646 2021 KC TE TE 83 Active #> 1647 2021 KC TE TE 87 Active #> 1648 2021 KC TE TE 81 Active #> 1649 2021 KC TE TE 0 Inactive #> 1650 2021 KC TE TE 48 Active #> 1651 2021 KC WR LWR 11 Active #> 1652 2021 KC WR SWR 14 Active #> 1653 2021 KC WR <NA> 89 Active #> 1654 2021 KC WR <NA> 85 Active #> 1655 2021 KC WR <NA> 2 Active #> 1656 2021 KC WR SWR 84 Active #> 1657 2021 KC WR SWR 88 Active #> 1658 2021 KC WR RWR 0 Inactive #> 1659 2021 KC WR RWR 17 Active #> 1660 2021 KC WR <NA> 82 Active #> 1661 2021 KC WR SWR 1 Practice Squad #> 1662 2021 KC WR LWR 9 Active #> 1663 2021 KC WR <NA> 9 Active #> 1664 2021 KC WR <NA> 1 Active #> 1665 2021 KC WR RWR 12 Active #> 1666 2021 KC WR <NA> 7 Active #> 1667 2021 KC WR SWR 13 Active #> 1668 2021 KC WR LWR 10 Active #> 1669 2021 KC WR <NA> 0 Active #> 1670 2021 KC WR RWR 85 Active #> 1671 2021 LA C C 55 Active #> 1672 2021 LA CB RCB 22 Active #> 1673 2021 LA CB LCB 21 Active #> 1674 2021 LA CB RCB 5 Active #> 1675 2021 LA CB LCB 11 Active #> 1676 2021 LA CB <NA> 49 Active #> 1677 2021 LA DB FS 23 Active #> 1678 2021 LA DB <NA> 49 Active #> 1679 2021 LA DB <NA> 39 Active #> 1680 2021 LA DB <NA> 35 Active #> 1681 2021 LA DB <NA> 38 Active #> 1682 2021 LA DB LCB 31 Active #> 1683 2021 LA DB <NA> 43 Active #> 1684 2021 LA DB <NA> 37 Active #> 1685 2021 LA DB SS 33 Active #> 1686 2021 LA DB SS 4 Active #> 1687 2021 LA DB FS 24 Active #> 1688 2021 LA DB <NA> 39 Active #> 1689 2021 LA DB <NA> 37 Active #> 1690 2021 LA DB SS 36 Active #> 1691 2021 LA DB RCB 37 Inactive #> 1692 2021 LA DB FS 26 Active #> 1693 2021 LA DB RCB 46 Active #> 1694 2021 LA DE DT 97 Active #> 1695 2021 LA DE <NA> 92 Active #> 1696 2021 LA DE LDE 90 Active #> 1697 2021 LA DE <NA> 98 Active #> 1698 2021 LA DE LDE 98 Active #> 1699 2021 LA DT NT 91 Active #> 1700 2021 LA DT NT 69 Active #> 1701 2021 LA DT DT 99 Active #> 1702 2021 LA DT LDE 94 Active #> 1703 2021 LA DT NT 95 Active #> 1704 2021 LA DT <NA> 95 Active #> 1705 2021 LA DT <NA> 96 Active #> 1706 2021 LA DT DT 93 Active #> 1707 2021 LA DT <NA> 97 Active #> 1708 2021 LA G RG 63 Active #> 1709 2021 LA G RG 0 Active #> 1710 2021 LA K K 18 Active #> 1711 2021 LA K K 8 Active #> 1712 2021 LA LB LILB 41 Active #> 1713 2021 LA LB <NA> 57 Active #> 1714 2021 LA LB <NA> 47 Active #> 1715 2021 LA LB SLB 48 Active #> 1716 2021 LA LB RILB 51 Active #> 1717 2021 LA LB RILB 50 Active #> 1718 2021 LA LB WILL 45 Active #> 1719 2021 LA LB SLB 54 Active #> 1720 2021 LA LB LILB 59 Active #> 1721 2021 LA LB SLB 53 Active #> 1722 2021 LA LB WILL 58 Active #> 1723 2021 LA LB LILB 56 Active #> 1724 2021 LA LB WILL 52 Active #> 1725 2021 LA LB RILB 32 Active #> 1726 2021 LA LS <NA> 44 Active #> 1727 2021 LA LS <NA> 42 Active #> 1728 2021 LA OL <NA> 64 Active #> 1729 2021 LA OL LG 61 Active #> 1730 2021 LA OL LT 70 Active #> 1731 2021 LA OL RT 79 Active #> 1732 2021 LA OL RT 67 Active #> 1733 2021 LA OL LG 73 Active #> 1734 2021 LA OL <NA> 66 Active #> 1735 2021 LA OL RG 61 Active #> 1736 2021 LA OL LT 72 Active #> 1737 2021 LA OL C 65 Active #> 1738 2021 LA OL RG 71 Active #> 1739 2021 LA OL RT 68 Active #> 1740 2021 LA OT <NA> 64 Active #> 1741 2021 LA OT LT 77 Active #> 1742 2021 LA P <NA> 13 Active #> 1743 2021 LA P <NA> 16 Active #> 1744 2021 LA P <NA> 6 Inactive #> 1745 2021 LA QB QB 13 Active #> 1746 2021 LA QB QB 19 Active #> 1747 2021 LA QB QB 9 Active #> 1748 2021 LA QB QB 16 Active #> 1749 2021 LA RB <NA> 32 Active #> 1750 2021 LA RB RB 23 Active #> 1751 2021 LA RB RB 30 Inactive #> 1752 2021 LA RB RB 25 Active #> 1753 2021 LA RB RB 27 Active #> 1754 2021 LA RB RB 34 Active #> 1755 2021 LA TE TE 88 Active #> 1756 2021 LA TE TE 87 Active #> 1757 2021 LA TE TE 89 Active #> 1758 2021 LA TE <NA> 45 Active #> 1759 2021 LA TE <NA> 86 Active #> 1760 2021 LA TE TE 82 Active #> 1761 2021 LA WR LWR 2 Active #> 1762 2021 LA WR <NA> 84 Active #> 1763 2021 LA WR <NA> 0 Active #> 1764 2021 LA WR <NA> 18 Active #> 1765 2021 LA WR LWR 81 Inactive #> 1766 2021 LA WR <NA> 11 Active #> 1767 2021 LA WR SWR 12 Active #> 1768 2021 LA WR SWR 83 Active #> 1769 2021 LA WR <NA> 17 Active #> 1770 2021 LA WR LWR 1 Active #> 1771 2021 LA WR RWR 10 Active #> 1772 2021 LA WR <NA> 13 Active #> 1773 2021 LA WR <NA> 28 Active #> 1774 2021 LA WR RWR 15 Active #> 1775 2021 LAC C C 63 Active #> 1776 2021 LAC C <NA> 60 Active #> 1777 2021 LAC CB RCB 20 Active #> 1778 2021 LAC CB RCB 28 Active #> 1779 2021 LAC CB LCB 26 Active #> 1780 2021 LAC CB <NA> 23 Inactive #> 1781 2021 LAC CB RCB 43 Active #> 1782 2021 LAC CB <NA> 38 Active #> 1783 2021 LAC CB <NA> 39 Active #> 1784 2021 LAC CB LCB 25 Active #> 1785 2021 LAC DB <NA> 37 Active #> 1786 2021 LAC DB FS 24 Inactive #> 1787 2021 LAC DB SS 46 Active #> 1788 2021 LAC DB SS 32 Active #> 1789 2021 LAC DB FS 29 Active #> 1790 2021 LAC DB <NA> 8 Active #> 1791 2021 LAC DB SS 33 Active #> 1792 2021 LAC DE EDGE 58 Active #> 1793 2021 LAC DE EDGE 94 Active #> 1794 2021 LAC DE EDGE 97 Active #> 1795 2021 LAC DE DL 92 Active #> 1796 2021 LAC DL <NA> 78 Active #> 1797 2021 LAC DT DL 99 Active #> 1798 2021 LAC DT DL 98 Active #> 1799 2021 LAC DT DL 95 Active #> 1800 2021 LAC DT <NA> 90 Active #> 1801 2021 LAC DT DL 66 Active #> 1802 2021 LAC DT DL 77 Active #> 1803 2021 LAC DT DL 93 Active #> 1804 2021 LAC DT DL 91 Active #> 1805 2021 LAC DT <NA> 78 Active #> 1806 2021 LAC DT <NA> 72 Active #> 1807 2021 LAC FB RB 40 Active #> 1808 2021 LAC K K 4 Active #> 1809 2021 LAC K K 16 Active #> 1810 2021 LAC K <NA> 6 Active #> 1811 2021 LAC LB LB 49 Active #> 1812 2021 LAC LB LB 57 Active #> 1813 2021 LAC LB LB 44 Active #> 1814 2021 LAC LB LB 9 Active #> 1815 2021 LAC LB <NA> 0 Active #> 1816 2021 LAC LB <NA> 53 Active #> 1817 2021 LAC LB EDGE 42 Active #> 1818 2021 LAC LB LB 50 Active #> 1819 2021 LAC LB EDGE 51 Active #> 1820 2021 LAC LB LB 31 Active #> 1821 2021 LAC LB EDGE 52 Active #> 1822 2021 LAC LS <NA> 45 Active #> 1823 2021 LAC LS <NA> 59 Active #> 1824 2021 LAC LS <NA> 54 Active #> 1825 2021 LAC NT DL 96 Active #> 1826 2021 LAC OG C 65 Active #> 1827 2021 LAC OG RG 76 Active #> 1828 2021 LAC OG LG 71 Active #> 1829 2021 LAC OL C 61 Active #> 1830 2021 LAC OL <NA> 60 Active #> 1831 2021 LAC OL LT 69 Active #> 1832 2021 LAC OL LG 67 Active #> 1833 2021 LAC OT LT 70 Active #> 1834 2021 LAC OT RG 64 Active #> 1835 2021 LAC OT LT 79 Active #> 1836 2021 LAC OT RT 74 Active #> 1837 2021 LAC OT RT 75 Active #> 1838 2021 LAC OT RG 73 Active #> 1839 2021 LAC P <NA> 8 Active #> 1840 2021 LAC P <NA> 1 Active #> 1841 2021 LAC QB <NA> 3 Active #> 1842 2021 LAC QB <NA> 5 Active #> 1843 2021 LAC QB QB 7 Active #> 1844 2021 LAC QB QB 2 Active #> 1845 2021 LAC QB QB 10 Active #> 1846 2021 LAC RB RB 27 Active #> 1847 2021 LAC RB RB 30 Active #> 1848 2021 LAC RB RB 34 Active #> 1849 2021 LAC RB RB 35 Active #> 1850 2021 LAC RB RB 22 Active #> 1851 2021 LAC TE <NA> 41 Active #> 1852 2021 LAC TE <NA> 47 Active #> 1853 2021 LAC TE TE 88 Active #> 1854 2021 LAC TE TE 89 Active #> 1855 2021 LAC TE TE 48 Active #> 1856 2021 LAC TE TE 87 Active #> 1857 2021 LAC TE TE 82 Active #> 1858 2021 LAC WR <NA> 0 Active #> 1859 2021 LAC WR <NA> 80 Active #> 1860 2021 LAC WR RWR 83 Active #> 1861 2021 LAC WR RWR 11 Active #> 1862 2021 LAC WR LWR 13 Active #> 1863 2021 LAC WR LWR 84 Active #> 1864 2021 LAC WR LWR 5 Active #> 1865 2021 LAC WR <NA> 36 Active #> 1866 2021 LAC WR <NA> 86 Active #> 1867 2021 LAC WR <NA> 0 Active #> 1868 2021 LAC WR SWR 12 Active #> 1869 2021 LAC WR SWR 15 Active #> 1870 2021 LAC WR RWR 81 Active #> 1871 2021 LV C C 65 Active #> 1872 2021 LV C C 66 Active #> 1873 2021 LV CB LCB 22 Active #> 1874 2021 LV CB NB 39 Active #> 1875 2021 LV CB NB 21 Active #> 1876 2021 LV CB <NA> 41 Active #> 1877 2021 LV CB <NA> 39 Inactive #> 1878 2021 LV CB RCB 20 Active #> 1879 2021 LV CB <NA> 34 Voluntary Opt Out #> 1880 2021 LV CB LCB 27 Active #> 1881 2021 LV CB RCB 29 Active #> 1882 2021 LV CB LCB 31 Active #> 1883 2021 LV CB <NA> 38 Active #> 1884 2021 LV CB NB 26 Inactive #> 1885 2021 LV CB <NA> 40 Active #> 1886 2021 LV CB RCB 34 Active #> 1887 2021 LV CB <NA> 41 Active #> 1888 2021 LV DB FS 33 Active #> 1889 2021 LV DB <NA> 34 Active #> 1890 2021 LV DB FS 25 Active #> 1891 2021 LV DB SS 37 Active #> 1892 2021 LV DB FS 32 Active #> 1893 2021 LV DB SS 24 Active #> 1894 2021 LV DB SS 43 Active #> 1895 2021 LV DB <NA> 49 Active #> 1896 2021 LV DE RDE 94 Active #> 1897 2021 LV DE DT 96 Active #> 1898 2021 LV DE LDE 99 Active #> 1899 2021 LV DE RDE 51 Active #> 1900 2021 LV DE RDE 91 Active #> 1901 2021 LV DE <NA> 93 Active #> 1902 2021 LV DE LDE 98 Active #> 1903 2021 LV DE LDE 52 Active #> 1904 2021 LV DT <NA> 56 Active #> 1905 2021 LV DT DT 97 Active #> 1906 2021 LV DT <NA> 63 Active #> 1907 2021 LV DT <NA> 69 Active #> 1908 2021 LV DT NT 90 Active #> 1909 2021 LV DT DT 92 Active #> 1910 2021 LV DT NT 95 Active #> 1911 2021 LV DT NT 78 Active #> 1912 2021 LV DT <NA> 61 Active #> 1913 2021 LV FB RB 45 Active #> 1914 2021 LV FB <NA> 4 Active #> 1915 2021 LV G <NA> 0 Active #> 1916 2021 LV G LG 76 Active #> 1917 2021 LV K K 2 Active #> 1918 2021 LV LB SLB 57 Active #> 1919 2021 LV LB MLB 50 Active #> 1920 2021 LV LB WLB 53 Active #> 1921 2021 LV LB MLB 44 Active #> 1922 2021 LV LB MLB 54 Active #> 1923 2021 LV LB SLB 55 Active #> 1924 2021 LV LB WLB 58 Inactive #> 1925 2021 LV LB WLB 42 Active #> 1926 2021 LV LB SLB 0 Active #> 1927 2021 LV LB <NA> 54 Active #> 1928 2021 LV LB SLB 59 Active #> 1929 2021 LV LS <NA> 48 Active #> 1930 2021 LV LS <NA> 47 Active #> 1931 2021 LV LS <NA> 0 Active #> 1932 2021 LV OG LG 64 Active #> 1933 2021 LV OG RG 62 Active #> 1934 2021 LV OG LG 67 Active #> 1935 2021 LV OL RG 71 Active #> 1936 2021 LV OL RG 79 Active #> 1937 2021 LV OL RG 77 Active #> 1938 2021 LV OL RT 72 Active #> 1939 2021 LV OT LT 75 Active #> 1940 2021 LV OT <NA> 63 Inactive #> 1941 2021 LV OT C 68 Active #> 1942 2021 LV OT <NA> 72 Active #> 1943 2021 LV OT RT 70 Active #> 1944 2021 LV OT LT 74 Active #> 1945 2021 LV OT RT 79 Active #> 1946 2021 LV OT LT 0 Active #> 1947 2021 LV P <NA> 6 Active #> 1948 2021 LV P <NA> 9 Active #> 1949 2021 LV QB QB 4 Active #> 1950 2021 LV QB <NA> 14 Active #> 1951 2021 LV QB <NA> 1 Active #> 1952 2021 LV QB QB 3 Active #> 1953 2021 LV QB QB 8 Active #> 1954 2021 LV RB <NA> 40 Active #> 1955 2021 LV RB RB 28 Active #> 1956 2021 LV RB RB 23 Active #> 1957 2021 LV RB RB 35 Active #> 1958 2021 LV RB RB 30 Active #> 1959 2021 LV RB RB 35 Inactive #> 1960 2021 LV RB RB 36 Active #> 1961 2021 LV RB <NA> 46 Active #> 1962 2021 LV TE TE 84 Active #> 1963 2021 LV TE <NA> 82 Active #> 1964 2021 LV TE <NA> 86 Active #> 1965 2021 LV TE <NA> 84 Active #> 1966 2021 LV TE TE 83 Active #> 1967 2021 LV TE TE 85 Active #> 1968 2021 LV TE <NA> 81 Active #> 1969 2021 LV TE TE 87 Active #> 1970 2021 LV WR <NA> 14 Active #> 1971 2021 LV WR LWR 11 Active #> 1972 2021 LV WR <NA> 10 Active #> 1973 2021 LV WR LWR 0 Inactive #> 1974 2021 LV WR <NA> 19 Active #> 1975 2021 LV WR SWR 15 Active #> 1976 2021 LV WR SWR 7 Active #> 1977 2021 LV WR <NA> 89 Active #> 1978 2021 LV WR LWR 13 Active #> 1979 2021 LV WR RWR 88 Active #> 1980 2021 LV WR RWR 89 Active #> 1981 2021 LV WR SWR 16 Active #> 1982 2021 LV WR RWR 18 Active #> 1983 2021 LV WR RWR 17 Active #> 1984 2021 MIA C C 64 Active #> 1985 2021 MIA C C 62 Active #> 1986 2021 MIA CB CB 33 Active #> 1987 2021 MIA CB FS 51 Active #> 1988 2021 MIA CB CB 24 Active #> 1989 2021 MIA CB <NA> 36 Active #> 1990 2021 MIA CB <NA> 0 Inactive #> 1991 2021 MIA CB CB 35 Active #> 1992 2021 MIA CB CB 38 Active #> 1993 2021 MIA CB SS 21 Active #> 1994 2021 MIA CB FS 30 Active #> 1995 2021 MIA CB CB 40 Active #> 1996 2021 MIA CB CB 41 Active #> 1997 2021 MIA CB CB 25 Active #> 1998 2021 MIA CB CB 27 Active #> 1999 2021 MIA CB CB 46 Active #> 2000 2021 MIA DB FS 22 Active #> 2001 2021 MIA DB SS 29 Active #> 2002 2021 MIA DB CB 9 Active #> 2003 2021 MIA DB <NA> 36 Active #> 2004 2021 MIA DE <NA> 97 Active #> 2005 2021 MIA DE <NA> 96 Active #> 2006 2021 MIA DE DE 91 Active #> 2007 2021 MIA DE DE 58 Active #> 2008 2021 MIA DE LDE 93 Active #> 2009 2021 MIA DT LG 69 Active #> 2010 2021 MIA DT LDE 92 Active #> 2011 2021 MIA DT NT 95 Active #> 2012 2021 MIA DT NT 90 Active #> 2013 2021 MIA DT LDE 94 Active #> 2014 2021 MIA DT DE 77 Inactive #> 2015 2021 MIA DT DE 70 Active #> 2016 2021 MIA DT <NA> 67 Active #> 2017 2021 MIA DT NT 98 Active #> 2018 2021 MIA FB <NA> 31 Active #> 2019 2021 MIA G <NA> 75 Active #> 2020 2021 MIA G RG 65 Active #> 2021 2021 MIA K K 7 Active #> 2022 2021 MIA LB LB 50 Active #> 2023 2021 MIA LB LB 43 Active #> 2024 2021 MIA LB <NA> 56 Active #> 2025 2021 MIA LB LB 47 Active #> 2026 2021 MIA LB LB 45 Active #> 2027 2021 MIA LB LB 48 Active #> 2028 2021 MIA LB <NA> 53 Active #> 2029 2021 MIA LB LB 49 Active #> 2030 2021 MIA LB <NA> 59 Inactive #> 2031 2021 MIA LB LB 55 Active #> 2032 2021 MIA LB <NA> 52 Active #> 2033 2021 MIA LB LB 15 Active #> 2034 2021 MIA LB LB 57 Active #> 2035 2021 MIA LS <NA> 60 Active #> 2036 2021 MIA LS <NA> 44 Active #> 2037 2021 MIA OG RT 77 Active #> 2038 2021 MIA OG <NA> 76 Inactive #> 2039 2021 MIA OL RG 68 Active #> 2040 2021 MIA OL RG 72 Active #> 2041 2021 MIA OL LG 66 Active #> 2042 2021 MIA OL C 63 Active #> 2043 2021 MIA OT LT 75 Active #> 2044 2021 MIA OT RT 78 Active #> 2045 2021 MIA OT RT 79 Active #> 2046 2021 MIA OT LT 73 Active #> 2047 2021 MIA OT LG 74 Active #> 2048 2021 MIA OT RT 61 Active #> 2049 2021 MIA P <NA> 5 Active #> 2050 2021 MIA QB QB 14 Active #> 2051 2021 MIA QB QB 1 Active #> 2052 2021 MIA QB <NA> 4 Active #> 2053 2021 MIA RB RB 32 Active #> 2054 2021 MIA RB RB 26 Active #> 2055 2021 MIA RB RB 37 Active #> 2056 2021 MIA RB RB 23 Active #> 2057 2021 MIA RB RB 28 Active #> 2058 2021 MIA RB RB 34 Active #> 2059 2021 MIA SS SS 42 Active #> 2060 2021 MIA TE TE 82 Active #> 2061 2021 MIA TE <NA> 60 Active #> 2062 2021 MIA TE <NA> 48 Active #> 2063 2021 MIA TE TE 81 Active #> 2064 2021 MIA TE TE 80 Active #> 2065 2021 MIA TE <NA> 89 Active #> 2066 2021 MIA TE <NA> 85 Active #> 2067 2021 MIA TE <NA> 89 Active #> 2068 2021 MIA TE TE 88 Active #> 2069 2021 MIA TE TE 84 Active #> 2070 2021 MIA WR SWR 2 Active #> 2071 2021 MIA WR <NA> 83 Active #> 2072 2021 MIA WR SWR 17 Active #> 2073 2021 MIA WR <NA> 89 Active #> 2074 2021 MIA WR LWR 10 Active #> 2075 2021 MIA WR SWR 86 Active #> 2076 2021 MIA WR LWR 19 Active #> 2077 2021 MIA WR RWR 11 Active #> 2078 2021 MIA WR RWR 8 Inactive #> 2079 2021 MIA WR RWR 6 Inactive #> 2080 2021 MIA WR SWR 16 Active #> 2081 2021 MIA WR LWR 3 Inactive #> 2082 2021 MIA WR <NA> 87 Active #> 2083 2021 MIA WR SWR 20 Active #> 2084 2021 MIA WR LWR 18 Active #> 2085 2021 MIN C C 63 Active #> 2086 2021 MIN C C 56 Active #> 2087 2021 MIN CB RCB 27 Active #> 2088 2021 MIN CB FS 43 Active #> 2089 2021 MIN CB <NA> 39 Active #> 2090 2021 MIN CB <NA> 36 Active #> 2091 2021 MIN CB LCB 38 Active #> 2092 2021 MIN CB RCB 20 Active #> 2093 2021 MIN CB RCB 21 Active #> 2094 2021 MIN CB LCB 24 Active #> 2095 2021 MIN CB <NA> 37 Active #> 2096 2021 MIN CB <NA> 5 Active #> 2097 2021 MIN CB <NA> 36 Active #> 2098 2021 MIN CB LCB 7 Active #> 2099 2021 MIN CB RCB 29 Active #> 2100 2021 MIN DB FS 23 Active #> 2101 2021 MIN DB SS 46 Active #> 2102 2021 MIN DB SS 44 Active #> 2103 2021 MIN DB SS 22 Active #> 2104 2021 MIN DB FS 35 Active #> 2105 2021 MIN DE LDE 99 Active #> 2106 2021 MIN DE LDE 50 Active #> 2107 2021 MIN DE <NA> 95 Inactive #> 2108 2021 MIN DE RDE 91 Active #> 2109 2021 MIN DE <NA> 93 Active #> 2110 2021 MIN DE LDE 90 Active #> 2111 2021 MIN DE RDE 79 Active #> 2112 2021 MIN DE <NA> 58 Active #> 2113 2021 MIN DE RDE 98 Active #> 2114 2021 MIN DE <NA> 58 Active #> 2115 2021 MIN DT NT 92 Active #> 2116 2021 MIN DT <NA> 76 Active #> 2117 2021 MIN DT DT 62 Active #> 2118 2021 MIN DT DT 94 Active #> 2119 2021 MIN DT DT 9 Active #> 2120 2021 MIN DT NT 97 Active #> 2121 2021 MIN DT <NA> 66 Active #> 2122 2021 MIN DT NT 96 Active #> 2123 2021 MIN FB <NA> 34 Active #> 2124 2021 MIN FB RB 30 Active #> 2125 2021 MIN G LG 68 Active #> 2126 2021 MIN K K 6 Active #> 2127 2021 MIN K <NA> 1 Active #> 2128 2021 MIN K K 1 Active #> 2129 2021 MIN LB WLB 41 Active #> 2130 2021 MIN LB WLB 32 Active #> 2131 2021 MIN LB MLB 54 Active #> 2132 2021 MIN LB <NA> 49 Active #> 2133 2021 MIN LB MLB 47 Active #> 2134 2021 MIN LB SLB 48 Active #> 2135 2021 MIN LB <NA> 42 Active #> 2136 2021 MIN LB WLB 59 Active #> 2137 2021 MIN LB SLB 57 Active #> 2138 2021 MIN LB SLB 55 Active #> 2139 2021 MIN LB MLB 45 Active #> 2140 2021 MIN LS <NA> 0 Active #> 2141 2021 MIN LS <NA> 60 Active #> 2142 2021 MIN LS <NA> 42 Active #> 2143 2021 MIN OG LG 73 Active #> 2144 2021 MIN OG RG 51 Active #> 2145 2021 MIN OG RG 78 Active #> 2146 2021 MIN OL C 52 Active #> 2147 2021 MIN OL RT 65 Active #> 2148 2021 MIN OL LG 72 Active #> 2149 2021 MIN OT LT 69 Active #> 2150 2021 MIN OT RT 75 Active #> 2151 2021 MIN OT LT 71 Active #> 2152 2021 MIN OT RG 74 Active #> 2153 2021 MIN OT LT 61 Active #> 2154 2021 MIN P <NA> 2 Active #> 2155 2021 MIN P <NA> 9 Active #> 2156 2021 MIN QB QB 3 Active #> 2157 2021 MIN QB QB 8 Active #> 2158 2021 MIN QB <NA> 3 Active #> 2159 2021 MIN QB QB 6 Active #> 2160 2021 MIN QB QB 14 Active #> 2161 2021 MIN QB QB 11 Active #> 2162 2021 MIN RB <NA> 36 Active #> 2163 2021 MIN RB RB 31 Active #> 2164 2021 MIN RB RB 20 Active #> 2165 2021 MIN RB RB 36 Active #> 2166 2021 MIN RB RB 33 Active #> 2167 2021 MIN RB RB 25 Active #> 2168 2021 MIN RB RB 26 Active #> 2169 2021 MIN T RT 64 Active #> 2170 2021 MIN TE TE 86 Active #> 2171 2021 MIN TE TE 84 Active #> 2172 2021 MIN TE <NA> 82 Active #> 2173 2021 MIN TE TE 83 Active #> 2174 2021 MIN TE TE 40 Active #> 2175 2021 MIN WR RWR 15 Active #> 2176 2021 MIN WR LWR 12 Active #> 2177 2021 MIN WR <NA> 16 Active #> 2178 2021 MIN WR <NA> 3 Active #> 2179 2021 MIN WR <NA> 20 Active #> 2180 2021 MIN WR SWR 17 Active #> 2181 2021 MIN WR RWR 19 Active #> 2182 2021 MIN WR <NA> 87 Active #> 2183 2021 MIN WR SWR 81 Inactive #> 2184 2021 MIN WR LWR 13 Active #> 2185 2021 MIN WR SWR 89 Active #> 2186 2021 MIN WR RWR 85 Active #> 2187 2021 MIN WR LWR 18 Active #> 2188 2021 NE C C 60 Active #> 2189 2021 NE C LG 66 Inactive #> 2190 2021 NE CB RCB 24 Active #> 2191 2021 NE CB <NA> 35 Active #> 2192 2021 NE CB <NA> 33 Active #> 2193 2021 NE CB RCB 2 Active #> 2194 2021 NE DB FS 29 Active #> 2195 2021 NE DB FS 23 Active #> 2196 2021 NE DB LCB 41 Active #> 2197 2021 NE DB SS 30 Active #> 2198 2021 NE DB <NA> 39 Active #> 2199 2021 NE DB SS 22 Active #> 2200 2021 NE DB <NA> 19 Active #> 2201 2021 NE DB LCB 31 Active #> 2202 2021 NE DB SS 32 Active #> 2203 2021 NE DB FS 21 Active #> 2204 2021 NE DB <NA> 34 Active #> 2205 2021 NE DB LCB 27 Active #> 2206 2021 NE DB RCB 38 Active #> 2207 2021 NE DE LDE 91 Active #> 2208 2021 NE DE RDE 50 Active #> 2209 2021 NE DE RDE 94 Active #> 2210 2021 NE DE LDE 96 Active #> 2211 2021 NE DT DL 95 Active #> 2212 2021 NE DT <NA> 70 Active #> 2213 2021 NE DT DL 98 Active #> 2214 2021 NE DT DL 90 Active #> 2215 2021 NE DT <NA> 97 Active #> 2216 2021 NE DT DL 93 Active #> 2217 2021 NE DT DL 52 Active #> 2218 2021 NE DT DL 92 Active #> 2219 2021 NE DT <NA> 99 Active #> 2220 2021 NE FB RB 0 Active #> 2221 2021 NE FB RB 47 Active #> 2222 2021 NE K K 6 Active #> 2223 2021 NE K <NA> 5 Active #> 2224 2021 NE K K 9 Active #> 2225 2021 NE K K 3 Active #> 2226 2021 NE LB <NA> 59 Active #> 2227 2021 NE LB LB 58 Active #> 2228 2021 NE LB <NA> 0 Active #> 2229 2021 NE LB <NA> 36 Active #> 2230 2021 NE LB LB 44 Active #> 2231 2021 NE LB LB 55 Active #> 2232 2021 NE LB LB 53 Active #> 2233 2021 NE LB <NA> 45 Active #> 2234 2021 NE LB <NA> 46 Inactive #> 2235 2021 NE LB LB 48 Active #> 2236 2021 NE LB LB 8 Active #> 2237 2021 NE LB LB 54 Active #> 2238 2021 NE LB LB 51 Active #> 2239 2021 NE LB LB 9 Active #> 2240 2021 NE LS <NA> 49 Active #> 2241 2021 NE LS <NA> 46 Active #> 2242 2021 NE LS <NA> 46 Active #> 2243 2021 NE NT NT 94 Active #> 2244 2021 NE OG RT 61 Active #> 2245 2021 NE OG LG 64 Active #> 2246 2021 NE OL <NA> 0 Active #> 2247 2021 NE OL LT 75 Active #> 2248 2021 NE OL RG 65 Active #> 2249 2021 NE OL RG 69 Active #> 2250 2021 NE OL <NA> 72 Active #> 2251 2021 NE OL RT 74 Active #> 2252 2021 NE OL LG 71 Active #> 2253 2021 NE OL C 67 Active #> 2254 2021 NE OL LT 76 Active #> 2255 2021 NE OT LT 63 Inactive #> 2256 2021 NE OT RT 77 Active #> 2257 2021 NE OT LT 68 Active #> 2258 2021 NE P <NA> 7 Active #> 2259 2021 NE QB QB 1 Active #> 2260 2021 NE QB QB 5 Active #> 2261 2021 NE QB QB 10 Active #> 2262 2021 NE QB QB 4 Active #> 2263 2021 NE RB RB 28 Active #> 2264 2021 NE RB RB 26 Active #> 2265 2021 NE RB <NA> 34 Active #> 2266 2021 NE RB RB 37 Active #> 2267 2021 NE RB RB 38 Active #> 2268 2021 NE RB RB 25 Active #> 2269 2021 NE RB RB 42 Active #> 2270 2021 NE SS <NA> 23 Active #> 2271 2021 NE TE TE 85 Active #> 2272 2021 NE TE TE 88 Inactive #> 2273 2021 NE TE TE 44 Inactive #> 2274 2021 NE TE TE 81 Active #> 2275 2021 NE TE TE 83 Active #> 2276 2021 NE TE TE 86 Active #> 2277 2021 NE TE TE 0 Active #> 2278 2021 NE TE <NA> 82 Active #> 2279 2021 NE WR <NA> 19 Active #> 2280 2021 NE WR SWR 84 Active #> 2281 2021 NE WR LWR 87 Active #> 2282 2021 NE WR RWR 16 Active #> 2283 2021 NE WR RWR 19 Active #> 2284 2021 NE WR SWR 14 Active #> 2285 2021 NE WR LWR 82 Active #> 2286 2021 NE WR <NA> 8 Active #> 2287 2021 NE WR RWR 80 Active #> 2288 2021 NE WR SWR 17 Active #> 2289 2021 NE WR LWR 13 Active #> 2290 2021 NE WR LWR 18 Active #> 2291 2021 NE WR LWR 15 Active #> 2292 2021 NO C C 64 Active #> 2293 2021 NO CB LCB 21 Active #> 2294 2021 NO CB RCB 29 Active #> 2295 2021 NO CB <NA> 39 Active #> 2296 2021 NO CB <NA> 35 Active #> 2297 2021 NO CB RCB 30 Active #> 2298 2021 NO CB LCB 33 Active #> 2299 2021 NO CB FS 31 Active #> 2300 2021 NO CB RCB 23 Active #> 2301 2021 NO CB LCB 25 Active #> 2302 2021 NO CB <NA> 29 Active #> 2303 2021 NO DB FS 26 Active #> 2304 2021 NO DB SS 48 Active #> 2305 2021 NO DB <NA> 32 Active #> 2306 2021 NO DB <NA> 38 Active #> 2307 2021 NO DB RCB 6 Active #> 2308 2021 NO DB <NA> 36 Active #> 2309 2021 NO DB FS 43 Active #> 2310 2021 NO DB <NA> 38 Inactive #> 2311 2021 NO DB LCB 35 Inactive #> 2312 2021 NO DB SS 22 Active #> 2313 2021 NO DB <NA> 44 Inactive #> 2314 2021 NO DB <NA> 21 Active #> 2315 2021 NO DE <NA> 57 Injured Reserve #> 2316 2021 NO DE <NA> 95 Active #> 2317 2021 NO DE RDE 98 Active #> 2318 2021 NO DE LDE 94 Active #> 2319 2021 NO DE <NA> 0 Active #> 2320 2021 NO DE NT 70 Active #> 2321 2021 NO DE RDE 92 Active #> 2322 2021 NO DE RDE 96 Active #> 2323 2021 NO DE LDE 90 Active #> 2324 2021 NO DT NT 97 Active #> 2325 2021 NO DT NT 99 Active #> 2326 2021 NO DT LDT 77 Active #> 2327 2021 NO DT LDT 95 Active #> 2328 2021 NO DT <NA> 90 Active #> 2329 2021 NO DT LDT 60 Active #> 2330 2021 NO DT <NA> 91 Active #> 2331 2021 NO DT LDT 93 Inactive #> 2332 2021 NO FB RB 47 Active #> 2333 2021 NO FB RB 40 Active #> 2334 2021 NO G C 61 Active #> 2335 2021 NO K K 6 Active #> 2336 2021 NO K <NA> 16 Active #> 2337 2021 NO K K 3 Inactive #> 2338 2021 NO K K 6 Active #> 2339 2021 NO LB MLB 54 Active #> 2340 2021 NO LB SLB 58 Active #> 2341 2021 NO LB MLB 42 Active #> 2342 2021 NO LB MLB 56 Active #> 2343 2021 NO LB WLB 53 Active #> 2344 2021 NO LB LDE 59 Active #> 2345 2021 NO LB WLB 20 Active #> 2346 2021 NO LB SLB 55 Active #> 2347 2021 NO LB WLB 58 Active #> 2348 2021 NO LB <NA> 50 Active #> 2349 2021 NO LB <NA> 52 Inactive #> 2350 2021 NO LS <NA> 92 Active #> 2351 2021 NO LS <NA> 49 Active #> 2352 2021 NO LS <NA> 49 Active #> 2353 2021 NO OG LG 63 Active #> 2354 2021 NO OL <NA> 0 Active #> 2355 2021 NO OL RT 73 Active #> 2356 2021 NO OL LG 76 Active #> 2357 2021 NO OL <NA> 0 Inactive #> 2358 2021 NO OL LG 75 Active #> 2359 2021 NO OL RG 68 Active #> 2360 2021 NO OL RG 51 Active #> 2361 2021 NO OL C 78 Active #> 2362 2021 NO OL <NA> 65 Active #> 2363 2021 NO OL <NA> 0 Active #> 2364 2021 NO OT LT 66 Active #> 2365 2021 NO OT RT 67 Active #> 2366 2021 NO OT <NA> 79 Active #> 2367 2021 NO OT <NA> 79 Active #> 2368 2021 NO OT LT 74 Active #> 2369 2021 NO OT RT 71 Active #> 2370 2021 NO OT LT 72 Active #> 2371 2021 NO P <NA> 4 Active #> 2372 2021 NO P <NA> 5 Active #> 2373 2021 NO QB QB 2 Active #> 2374 2021 NO QB QB 16 Active #> 2375 2021 NO QB QB 7 Active #> 2376 2021 NO QB QB 15 Active #> 2377 2021 NO RB SWR 88 Active #> 2378 2021 NO RB RB 37 Active #> 2379 2021 NO RB RB 34 Active #> 2380 2021 NO RB RB 41 Active #> 2381 2021 NO RB <NA> 0 Active #> 2382 2021 NO RB RB 28 Active #> 2383 2021 NO RB RB 24 Active #> 2384 2021 NO SS SS 27 Active #> 2385 2021 NO TE <NA> 85 Active #> 2386 2021 NO TE TE 82 Active #> 2387 2021 NO TE TE 81 Active #> 2388 2021 NO TE <NA> 89 Inactive #> 2389 2021 NO TE <NA> 86 Active #> 2390 2021 NO TE <NA> 85 Active #> 2391 2021 NO TE TE 45 Active #> 2392 2021 NO TE <NA> 86 Active #> 2393 2021 NO WR LWR 13 Active #> 2394 2021 NO WR <NA> 18 Active #> 2395 2021 NO WR <NA> 10 Active #> 2396 2021 NO WR <NA> 87 Active #> 2397 2021 NO WR RWR 10 Active #> 2398 2021 NO WR <NA> 17 Active #> 2399 2021 NO WR LWR 11 Active #> 2400 2021 NO WR <NA> 86 Active #> 2401 2021 NO WR <NA> 7 Active #> 2402 2021 NO WR SWR 17 Active #> 2403 2021 NO WR RWR 84 Active #> 2404 2021 NO WR LWR 80 Active #> 2405 2021 NO WR LWR 12 Inactive #> 2406 2021 NO WR TE 83 Active #> 2407 2021 NO WR SWR 1 Active #> 2408 2021 NO WR RWR 14 Active #> 2409 2021 NO WR <NA> 19 Active #> 2410 2021 NO WR <NA> 0 Active #> 2411 2021 NO <NA> <NA> 0 Active #> 2412 2021 NYG C C 65 Active #> 2413 2021 NYG CB LCB 28 Inactive #> 2414 2021 NYG CB RCB 25 Active #> 2415 2021 NYG CB <NA> 38 Inactive #> 2416 2021 NYG CB <NA> 34 Active #> 2417 2021 NYG CB SS 28 Active #> 2418 2021 NYG CB <NA> 33 Active #> 2419 2021 NYG CB RCB 30 Active #> 2420 2021 NYG CB LCB 27 Active #> 2421 2021 NYG CB LCB 24 Active #> 2422 2021 NYG DB <NA> 39 Inactive #> 2423 2021 NYG DB <NA> 43 Active #> 2424 2021 NYG DB <NA> 37 Active #> 2425 2021 NYG DB SS 21 Active #> 2426 2021 NYG DB <NA> 19 Active #> 2427 2021 NYG DB SS 20 Active #> 2428 2021 NYG DB <NA> 43 Active #> 2429 2021 NYG DB FS 31 Active #> 2430 2021 NYG DB LCB 45 Active #> 2431 2021 NYG DB <NA> 36 Active #> 2432 2021 NYG DB FS 23 Active #> 2433 2021 NYG DB <NA> 37 Active #> 2434 2021 NYG DB RCB 22 Active #> 2435 2021 NYG DB FS 29 Active #> 2436 2021 NYG DE DT 57 Active #> 2437 2021 NYG DE DT 99 Active #> 2438 2021 NYG DE SAM 44 Active #> 2439 2021 NYG DE DT 91 Active #> 2440 2021 NYG DE OLB 57 Active #> 2441 2021 NYG DE <NA> 90 Active #> 2442 2021 NYG DE OLB 51 Active #> 2443 2021 NYG DT DE 95 Active #> 2444 2021 NYG DT NT 98 Active #> 2445 2021 NYG DT DE 96 Active #> 2446 2021 NYG DT DE 97 Active #> 2447 2021 NYG DT NT 75 Active #> 2448 2021 NYG DT <NA> 94 Active #> 2449 2021 NYG DT DT 90 Active #> 2450 2021 NYG FB RB 36 Active #> 2451 2021 NYG FS <NA> 31 Active #> 2452 2021 NYG K K 5 Active #> 2453 2021 NYG LB WLB 46 Active #> 2454 2021 NYG LB <NA> 58 Active #> 2455 2021 NYG LB <NA> 47 Active #> 2456 2021 NYG LB SAM 59 Active #> 2457 2021 NYG LB SAM 93 Active #> 2458 2021 NYG LB WLB 48 Active #> 2459 2021 NYG LB RILB 55 Active #> 2460 2021 NYG LB RILB 49 Active #> 2461 2021 NYG LB OLB 53 Active #> 2462 2021 NYG LB WLB 52 Active #> 2463 2021 NYG LB <NA> 41 Active #> 2464 2021 NYG LB RILB 54 Active #> 2465 2021 NYG LB <NA> 48 Active #> 2466 2021 NYG LB RILB 0 Active #> 2467 2021 NYG LB <NA> 35 Inactive #> 2468 2021 NYG LS <NA> 46 Active #> 2469 2021 NYG LS <NA> 58 Active #> 2470 2021 NYG OG RG 62 Active #> 2471 2021 NYG OG <NA> 0 Active #> 2472 2021 NYG OG RG 71 Active #> 2473 2021 NYG OG LG 79 Active #> 2474 2021 NYG OG RG 69 Active #> 2475 2021 NYG OL <NA> 70 Active #> 2476 2021 NYG OL LG 66 Active #> 2477 2021 NYG OL <NA> 60 Inactive #> 2478 2021 NYG OL C 61 Active #> 2479 2021 NYG OL RG 73 Active #> 2480 2021 NYG OL C 64 Active #> 2481 2021 NYG OT RT 74 Active #> 2482 2021 NYG OT <NA> 64 Active #> 2483 2021 NYG OT LT 72 Active #> 2484 2021 NYG OT LT 78 Active #> 2485 2021 NYG OT RT 76 Active #> 2486 2021 NYG P PK 2 Active #> 2487 2021 NYG P <NA> 9 Active #> 2488 2021 NYG QB QB 8 Active #> 2489 2021 NYG QB <NA> 6 Active #> 2490 2021 NYG QB QB 2 Active #> 2491 2021 NYG QB QB 17 Active #> 2492 2021 NYG QB <NA> 3 Injured Reserve #> 2493 2021 NYG RB RB 28 Active #> 2494 2021 NYG RB RB 27 Active #> 2495 2021 NYG RB <NA> 27 Inactive #> 2496 2021 NYG RB RB 39 Active #> 2497 2021 NYG RB <NA> 34 Active #> 2498 2021 NYG RB RB 25 Inactive #> 2499 2021 NYG RB RB 38 Active #> 2500 2021 NYG RB RB 37 Active #> 2501 2021 NYG RB RB 26 Active #> 2502 2021 NYG RB RB 41 Active #> 2503 2021 NYG RB <NA> 35 Active #> 2504 2021 NYG RB RB 30 Active #> 2505 2021 NYG T <NA> 68 Inactive #> 2506 2021 NYG T <NA> 61 Active #> 2507 2021 NYG TE TE 80 Active #> 2508 2021 NYG TE TE 88 Active #> 2509 2021 NYG TE <NA> 47 Active #> 2510 2021 NYG TE <NA> 49 Active #> 2511 2021 NYG TE TE 82 Active #> 2512 2021 NYG TE <NA> 87 Active #> 2513 2021 NYG TE <NA> 44 Active #> 2514 2021 NYG TE TE 85 Inactive #> 2515 2021 NYG TE TE 0 Active #> 2516 2021 NYG TE TE 48 Active #> 2517 2021 NYG WR <NA> 6 Active #> 2518 2021 NYG WR SWR 83 Active #> 2519 2021 NYG WR <NA> 18 Active #> 2520 2021 NYG WR LWR 89 Active #> 2521 2021 NYG WR <NA> 87 Active #> 2522 2021 NYG WR RWR 18 Active #> 2523 2021 NYG WR LWR 81 Active #> 2524 2021 NYG WR <NA> 0 Active #> 2525 2021 NYG WR SWR 86 Active #> 2526 2021 NYG WR <NA> 15 Active #> 2527 2021 NYG WR LWR 84 Active #> 2528 2021 NYG WR SWR 13 Active #> 2529 2021 NYG WR <NA> 17 Active #> 2530 2021 NYG WR <NA> 0 Active #> 2531 2021 NYG WR RWR 3 Active #> 2532 2021 NYG WR RWR 12 Active #> 2533 2021 NYG WR LWR 19 Active #> 2534 2021 NYG WR <NA> 19 Active #> 2535 2021 NYG WR <NA> 85 Active #> 2536 2021 NYJ C <NA> 63 Active #> 2537 2021 NYJ CB <NA> 33 Inactive #> 2538 2021 NYJ CB CB 37 Active #> 2539 2021 NYJ CB <NA> 6 Active #> 2540 2021 NYJ CB CB 41 Active #> 2541 2021 NYJ CB NB 30 Active #> 2542 2021 NYJ CB CB 25 Active #> 2543 2021 NYJ CB NB 40 Active #> 2544 2021 NYJ CB CB 38 Active #> 2545 2021 NYJ CB <NA> 27 Active #> 2546 2021 NYJ CB <NA> 34 Active #> 2547 2021 NYJ CB CB 31 Active #> 2548 2021 NYJ DB SS 29 Active #> 2549 2021 NYJ DB FS 49 Active #> 2550 2021 NYJ DB SS 35 Active #> 2551 2021 NYJ DB FS 20 Active #> 2552 2021 NYJ DB FS 39 Active #> 2553 2021 NYJ DB SS 21 Active #> 2554 2021 NYJ DB <NA> 29 Active #> 2555 2021 NYJ DB NB 26 Active #> 2556 2021 NYJ DB CB 36 Active #> 2557 2021 NYJ DE <NA> 58 Inactive #> 2558 2021 NYJ DE DL 92 Active #> 2559 2021 NYJ DE DL 47 Active #> 2560 2021 NYJ DE <NA> 68 Active #> 2561 2021 NYJ DE <NA> 55 Active #> 2562 2021 NYJ DE <NA> 67 Active #> 2563 2021 NYJ DE DL 99 Active #> 2564 2021 NYJ DE DL 54 Active #> 2565 2021 NYJ DT DL 94 Active #> 2566 2021 NYJ DT DL 93 Active #> 2567 2021 NYJ DT <NA> 50 Inactive #> 2568 2021 NYJ DT DL 91 Active #> 2569 2021 NYJ DT DL 79 Active #> 2570 2021 NYJ DT DL 95 Active #> 2571 2021 NYJ DT <NA> 96 Active #> 2572 2021 NYJ DT DL 98 Active #> 2573 2021 NYJ DT DL 97 Active #> 2574 2021 NYJ K K 6 Active #> 2575 2021 NYJ K <NA> 1 Active #> 2576 2021 NYJ LB <NA> 40 Active #> 2577 2021 NYJ LB LB 45 Active #> 2578 2021 NYJ LB LB 57 Active #> 2579 2021 NYJ LB LB 43 Active #> 2580 2021 NYJ LB LB 53 Active #> 2581 2021 NYJ LB LB 56 Active #> 2582 2021 NYJ LB LB 52 Inactive #> 2583 2021 NYJ LB <NA> 0 Active #> 2584 2021 NYJ LB LB 46 Active #> 2585 2021 NYJ LB <NA> 51 Active #> 2586 2021 NYJ LB LB 44 Active #> 2587 2021 NYJ LB LB 51 Active #> 2588 2021 NYJ LS <NA> 42 Active #> 2589 2021 NYJ LS <NA> 0 Active #> 2590 2021 NYJ OG LG 75 Active #> 2591 2021 NYJ OG RG 62 Active #> 2592 2021 NYJ OL RG 65 Active #> 2593 2021 NYJ OL <NA> 68 Inactive #> 2594 2021 NYJ OL <NA> 63 Active #> 2595 2021 NYJ OL LG 67 Active #> 2596 2021 NYJ OL C 60 Active #> 2597 2021 NYJ OL <NA> 71 Active #> 2598 2021 NYJ OL LT 69 Active #> 2599 2021 NYJ OL C 63 Active #> 2600 2021 NYJ OL <NA> 66 Active #> 2601 2021 NYJ OL C 61 Active #> 2602 2021 NYJ OL RT 78 Active #> 2603 2021 NYJ OL RG 66 Active #> 2604 2021 NYJ OL <NA> 0 Active #> 2605 2021 NYJ OL <NA> 64 Active #> 2606 2021 NYJ OT <NA> 72 Active #> 2607 2021 NYJ OT RT 76 Active #> 2608 2021 NYJ OT LT 77 Active #> 2609 2021 NYJ OT RT 70 Active #> 2610 2021 NYJ P <NA> 0 Active #> 2611 2021 NYJ P <NA> 7 Active #> 2612 2021 NYJ QB <NA> 2 Active #> 2613 2021 NYJ QB <NA> 3 Active #> 2614 2021 NYJ QB <NA> 9 Active #> 2615 2021 NYJ QB QB 5 Active #> 2616 2021 NYJ QB QB 4 Active #> 2617 2021 NYJ QB QB 2 Active #> 2618 2021 NYJ RB RB 25 Active #> 2619 2021 NYJ RB RB 32 Active #> 2620 2021 NYJ RB RB 22 Active #> 2621 2021 NYJ RB RB 30 Inactive #> 2622 2021 NYJ RB RB 35 Inactive #> 2623 2021 NYJ RB RB 23 Active #> 2624 2021 NYJ RB RB 36 Active #> 2625 2021 NYJ TE TE 89 Active #> 2626 2021 NYJ TE TE 81 Active #> 2627 2021 NYJ TE TE 85 Active #> 2628 2021 NYJ TE TE 87 Active #> 2629 2021 NYJ TE TE 86 Active #> 2630 2021 NYJ TE TE 48 Active #> 2631 2021 NYJ WR LWR 84 Active #> 2632 2021 NYJ WR SWR 82 Active #> 2633 2021 NYJ WR LWR 88 Active #> 2634 2021 NYJ WR LWR 10 Active #> 2635 2021 NYJ WR LWR 83 Active #> 2636 2021 NYJ WR <NA> 14 Active #> 2637 2021 NYJ WR SWR 18 Active #> 2638 2021 NYJ WR SWR 16 Active #> 2639 2021 NYJ WR RWR 11 Active #> 2640 2021 NYJ WR RWR 8 Active #> 2641 2021 NYJ WR <NA> 3 Active #> 2642 2021 NYJ WR SWR 15 Active #> 2643 2021 NYJ WR RWR 17 Active #> 2644 2021 NYJ WR SWR 16 Active #> 2645 2021 PHI C LG 51 Active #> 2646 2021 PHI C <NA> 0 Inactive #> 2647 2021 PHI C C 62 Active #> 2648 2021 PHI C <NA> 73 Active #> 2649 2021 PHI CB RCB 38 Active #> 2650 2021 PHI CB <NA> 47 Active #> 2651 2021 PHI CB <NA> 48 Active #> 2652 2021 PHI CB LCB 2 Active #> 2653 2021 PHI CB <NA> 36 Active #> 2654 2021 PHI CB NB 46 Active #> 2655 2021 PHI CB LCB 27 Active #> 2656 2021 PHI CB RCB 41 Active #> 2657 2021 PHI CB RCB 3 Active #> 2658 2021 PHI CB LCB 31 Active #> 2659 2021 PHI CB NB 29 Active #> 2660 2021 PHI DB FS 22 Active #> 2661 2021 PHI DB FS 28 Active #> 2662 2021 PHI DB <NA> 23 Active #> 2663 2021 PHI DB <NA> 32 Active #> 2664 2021 PHI DB <NA> 33 Active #> 2665 2021 PHI DB FS 39 Active #> 2666 2021 PHI DB SS 42 Active #> 2667 2021 PHI DB SS 37 Active #> 2668 2021 PHI DB WILL 30 Active #> 2669 2021 PHI DB SS 21 Active #> 2670 2021 PHI DB <NA> 36 Active #> 2671 2021 PHI DE SAM 58 Active #> 2672 2021 PHI DE RDE 94 Active #> 2673 2021 PHI DE LDE 55 Active #> 2674 2021 PHI DE LDE 75 Active #> 2675 2021 PHI DE RDE 66 Active #> 2676 2021 PHI DE <NA> 64 Active #> 2677 2021 PHI DE LDE 90 Active #> 2678 2021 PHI DE SAM 48 Active #> 2679 2021 PHI DE SAM 95 Active #> 2680 2021 PHI DE RDE 96 Active #> 2681 2021 PHI DT LDT 61 Active #> 2682 2021 PHI DT RDT 91 Active #> 2683 2021 PHI DT LDT 97 Active #> 2684 2021 PHI DT <NA> 0 Active #> 2685 2021 PHI DT <NA> 72 Active #> 2686 2021 PHI DT LDT 98 Active #> 2687 2021 PHI DT RDT 76 Active #> 2688 2021 PHI DT RDT 93 Active #> 2689 2021 PHI K K 4 Active #> 2690 2021 PHI LB MIKE 57 Active #> 2691 2021 PHI LB MIKE 54 Active #> 2692 2021 PHI LB LOLB 53 Injured Reserve #> 2693 2021 PHI LB <NA> 0 Active #> 2694 2021 PHI LB <NA> 53 Active #> 2695 2021 PHI LB WILL 49 Active #> 2696 2021 PHI LB WILL 52 Active #> 2697 2021 PHI LB MIKE 50 Active #> 2698 2021 PHI LS <NA> 45 Active #> 2699 2021 PHI OG RG 79 Active #> 2700 2021 PHI OG C 67 Active #> 2701 2021 PHI OG RG 72 Active #> 2702 2021 PHI OG LG 78 Active #> 2703 2021 PHI OL LG 56 Active #> 2704 2021 PHI OL RG 69 Active #> 2705 2021 PHI OL <NA> 66 Active #> 2706 2021 PHI OT RT 65 Active #> 2707 2021 PHI OT RT 61 Active #> 2708 2021 PHI OT LT 68 Active #> 2709 2021 PHI OT <NA> 0 Inactive #> 2710 2021 PHI OT LT 64 Active #> 2711 2021 PHI OT RT 63 Active #> 2712 2021 PHI OT LT 77 Active #> 2713 2021 PHI P <NA> 8 Active #> 2714 2021 PHI QB <NA> 10 Active #> 2715 2021 PHI QB QB 7 Active #> 2716 2021 PHI QB QB 10 Active #> 2717 2021 PHI QB QB 1 Active #> 2718 2021 PHI RB <NA> 41 Active #> 2719 2021 PHI RB RB 0 Inactive #> 2720 2021 PHI RB RB 24 Active #> 2721 2021 PHI RB RB 33 Active #> 2722 2021 PHI RB RB 14 Active #> 2723 2021 PHI RB RB 26 Active #> 2724 2021 PHI RB RB 35 Active #> 2725 2021 PHI RB RB 32 Active #> 2726 2021 PHI TE TE 86 Active #> 2727 2021 PHI TE <NA> 0 Active #> 2728 2021 PHI TE <NA> 47 Active #> 2729 2021 PHI TE TE 80 Inactive #> 2730 2021 PHI TE TE 81 Inactive #> 2731 2021 PHI TE TE 88 Active #> 2732 2021 PHI TE SWR 89 Active #> 2733 2021 PHI TE TE 85 Active #> 2734 2021 PHI WR <NA> 17 Inactive #> 2735 2021 PHI WR LWR 84 Active #> 2736 2021 PHI WR <NA> 17 Active #> 2737 2021 PHI WR RWR 13 Active #> 2738 2021 PHI WR RWR 18 Active #> 2739 2021 PHI WR RWR 89 Active #> 2740 2021 PHI WR SWR 16 Active #> 2741 2021 PHI WR <NA> 48 Active #> 2742 2021 PHI WR LWR 19 Active #> 2743 2021 PHI WR SWR 82 Active #> 2744 2021 PHI WR <NA> 41 Active #> 2745 2021 PHI WR LWR 6 Active #> 2746 2021 PHI WR <NA> 47 Active #> 2747 2021 PHI WR <NA> 17 Active #> 2748 2021 PIT C C 53 Active #> 2749 2021 PIT C C 60 Active #> 2750 2021 PIT CB <NA> 30 Inactive #> 2751 2021 PIT CB LCB 31 Active #> 2752 2021 PIT CB RCB 20 Active #> 2753 2021 PIT CB LCB 23 Active #> 2754 2021 PIT CB <NA> 29 Active #> 2755 2021 PIT CB RCB 17 Active #> 2756 2021 PIT CB <NA> 35 Active #> 2757 2021 PIT DB FS 21 Active #> 2758 2021 PIT DB SS 34 Active #> 2759 2021 PIT DB LCB 30 Active #> 2760 2021 PIT DB SS 24 Active #> 2761 2021 PIT DB FS 26 Active #> 2762 2021 PIT DB SS 21 Active #> 2763 2021 PIT DB NB 25 Active #> 2764 2021 PIT DB FS 39 Active #> 2765 2021 PIT DB NB 35 Active #> 2766 2021 PIT DB RCB 42 Active #> 2767 2021 PIT DB LCB 38 Active #> 2768 2021 PIT DE LOLB 49 Active #> 2769 2021 PIT DE <NA> 61 Active #> 2770 2021 PIT DE DT 99 Active #> 2771 2021 PIT DE <NA> 7 Active #> 2772 2021 PIT DE NT 96 Active #> 2773 2021 PIT DE <NA> 40 Active #> 2774 2021 PIT DE DT 92 Active #> 2775 2021 PIT DE NT 94 Active #> 2776 2021 PIT DE DE 65 Active #> 2777 2021 PIT DE DE 91 Active #> 2778 2021 PIT DE <NA> 67 Active #> 2779 2021 PIT DT DT 97 Active #> 2780 2021 PIT DT NT 73 Active #> 2781 2021 PIT DT <NA> 93 Inactive #> 2782 2021 PIT FB RB 44 Active #> 2783 2021 PIT K K 9 Active #> 2784 2021 PIT K K 16 Active #> 2785 2021 PIT LB <NA> 33 Active #> 2786 2021 PIT LB SS 28 Active #> 2787 2021 PIT LB RILB 45 Active #> 2788 2021 PIT LB ROLB 8 Active #> 2789 2021 PIT LB LILB 51 Active #> 2790 2021 PIT LB RILB 41 Active #> 2791 2021 PIT LB <NA> 50 Active #> 2792 2021 PIT LB LOLB 48 Active #> 2793 2021 PIT LB <NA> 45 Active #> 2794 2021 PIT LB <NA> 40 Active #> 2795 2021 PIT LB LILB 55 Active #> 2796 2021 PIT LB LOLB 90 Active #> 2797 2021 PIT LB ROLB 44 Active #> 2798 2021 PIT LB ROLB 56 Active #> 2799 2021 PIT LB RILB 27 Active #> 2800 2021 PIT LB LILB 54 Active #> 2801 2021 PIT LS <NA> 46 Active #> 2802 2021 PIT LS <NA> 57 Active #> 2803 2021 PIT NT DE 95 Active #> 2804 2021 PIT OG RG 51 Active #> 2805 2021 PIT OG RG 64 Active #> 2806 2021 PIT OL LG 69 Active #> 2807 2021 PIT OL C 67 Active #> 2808 2021 PIT OL <NA> 64 Active #> 2809 2021 PIT OL LT 74 Active #> 2810 2021 PIT OL LT 76 Active #> 2811 2021 PIT OT <NA> 61 Active #> 2812 2021 PIT OT RG 79 Active #> 2813 2021 PIT OT RT 72 Active #> 2814 2021 PIT OT <NA> 68 Active #> 2815 2021 PIT OT LT 65 Active #> 2816 2021 PIT OT LT 74 Active #> 2817 2021 PIT OT RT 77 Active #> 2818 2021 PIT P <NA> 0 Active #> 2819 2021 PIT P <NA> 6 Active #> 2820 2021 PIT P <NA> 4 Active #> 2821 2021 PIT QB QB 5 Active #> 2822 2021 PIT QB QB 7 Active #> 2823 2021 PIT QB <NA> 0 Active #> 2824 2021 PIT QB QB 2 Active #> 2825 2021 PIT QB QB 3 Active #> 2826 2021 PIT QB <NA> 0 Active #> 2827 2021 PIT RB RB 38 Active #> 2828 2021 PIT RB <NA> 7 Active #> 2829 2021 PIT RB <NA> 30 Active #> 2830 2021 PIT RB RB 40 Active #> 2831 2021 PIT RB RB 26 Active #> 2832 2021 PIT RB <NA> 24 Active #> 2833 2021 PIT RB RB 33 Active #> 2834 2021 PIT RB RB 29 Active #> 2835 2021 PIT RB RB 22 Active #> 2836 2021 PIT T RT 71 Active #> 2837 2021 PIT TE TE 85 Active #> 2838 2021 PIT TE TE 89 Active #> 2839 2021 PIT TE TE 88 Active #> 2840 2021 PIT TE TE 87 Active #> 2841 2021 PIT TE TE 81 Active #> 2842 2021 PIT TE TE 49 Active #> 2843 2021 PIT TE TE 85 Active #> 2844 2021 PIT WR <NA> 80 Active #> 2845 2021 PIT WR RWR 11 Active #> 2846 2021 PIT WR LWR 18 Active #> 2847 2021 PIT WR SWR 83 Active #> 2848 2021 PIT WR <NA> 84 Active #> 2849 2021 PIT WR <NA> 17 Active #> 2850 2021 PIT WR LWR 13 Active #> 2851 2021 PIT WR <NA> 15 Active #> 2852 2021 PIT WR <NA> 82 Active #> 2853 2021 PIT WR RWR 14 Active #> 2854 2021 PIT WR SWR 19 Active #> 2855 2021 SEA C C 64 Active #> 2856 2021 SEA CB SS 26 Active #> 2857 2021 SEA CB LCB 2 Active #> 2858 2021 SEA CB RCB 35 Active #> 2859 2021 SEA CB <NA> 42 Active #> 2860 2021 SEA CB LCB 38 Active #> 2861 2021 SEA CB RCB 29 Active #> 2862 2021 SEA CB FS 23 Active #> 2863 2021 SEA CB RCB 21 Active #> 2864 2021 SEA CB LCB 22 Active #> 2865 2021 SEA DB FS 27 Active #> 2866 2021 SEA DB <NA> 47 Active #> 2867 2021 SEA DB SS 28 Active #> 2868 2021 SEA DB <NA> 39 Active #> 2869 2021 SEA DE <NA> 99 Active #> 2870 2021 SEA DE <NA> 48 Inactive #> 2871 2021 SEA DE LEO 52 Active #> 2872 2021 SEA DE LEO 98 Active #> 2873 2021 SEA DE DT 0 Active #> 2874 2021 SEA DE <NA> 43 Active #> 2875 2021 SEA DE NT 94 Active #> 2876 2021 SEA DE LDE 8 Active #> 2877 2021 SEA DE LDE 91 Active #> 2878 2021 SEA DE LEO 95 Active #> 2879 2021 SEA DE LDE 51 Active #> 2880 2021 SEA DT DT 93 Active #> 2881 2021 SEA DT DT 67 Active #> 2882 2021 SEA DT NT 90 Active #> 2883 2021 SEA DT <NA> 75 Active #> 2884 2021 SEA DT <NA> 62 Active #> 2885 2021 SEA DT DT 92 Active #> 2886 2021 SEA DT NT 97 Active #> 2887 2021 SEA FB RB 44 Active #> 2888 2021 SEA G LG 68 Active #> 2889 2021 SEA G <NA> 65 Voluntary Opt Out #> 2890 2021 SEA G <NA> 63 Active #> 2891 2021 SEA G C 61 Active #> 2892 2021 SEA K K 5 Active #> 2893 2021 SEA LB <NA> 55 Inactive #> 2894 2021 SEA LB SLB 56 Active #> 2895 2021 SEA LB MLB 57 Active #> 2896 2021 SEA LB SLB 48 Active #> 2897 2021 SEA LB ROLB 43 Active #> 2898 2021 SEA LB MLB 54 Active #> 2899 2021 SEA LB ROLB 59 Active #> 2900 2021 SEA LB <NA> 46 Active #> 2901 2021 SEA LB <NA> 47 Active #> 2902 2021 SEA LB <NA> 58 Active #> 2903 2021 SEA LB MLB 58 Active #> 2904 2021 SEA LB <NA> 0 Active #> 2905 2021 SEA LS <NA> 69 Active #> 2906 2021 SEA OG RG 66 Active #> 2907 2021 SEA OG RG 60 Active #> 2908 2021 SEA OG C 77 Active #> 2909 2021 SEA OG LG 65 Active #> 2910 2021 SEA OG RG 62 Active #> 2911 2021 SEA OT LT 73 Active #> 2912 2021 SEA OT LT 78 Active #> 2913 2021 SEA OT LG 75 Active #> 2914 2021 SEA OT RT 70 Active #> 2915 2021 SEA OT LT 76 Active #> 2916 2021 SEA OT RT 72 Active #> 2917 2021 SEA OT <NA> 67 Inactive #> 2918 2021 SEA OT <NA> 74 Active #> 2919 2021 SEA P <NA> 4 Active #> 2920 2021 SEA QB QB 10 Active #> 2921 2021 SEA QB <NA> 0 Active #> 2922 2021 SEA QB QB 7 Active #> 2923 2021 SEA QB QB 9 Active #> 2924 2021 SEA QB QB 3 Active #> 2925 2021 SEA RB <NA> 38 Active #> 2926 2021 SEA RB RB 20 Active #> 2927 2021 SEA RB RB 41 Active #> 2928 2021 SEA RB <NA> 0 Active #> 2929 2021 SEA RB <NA> 40 Active #> 2930 2021 SEA RB RB 31 Active #> 2931 2021 SEA RB RB 34 Active #> 2932 2021 SEA RB RB 25 Active #> 2933 2021 SEA RB RB 32 Active #> 2934 2021 SEA SS SS 33 Active #> 2935 2021 SEA SS <NA> 37 Active #> 2936 2021 SEA SS FS 6 Active #> 2937 2021 SEA T RT 79 Active #> 2938 2021 SEA TE TE 81 Active #> 2939 2021 SEA TE <NA> 85 Active #> 2940 2021 SEA TE <NA> 49 Active #> 2941 2021 SEA TE TE 84 Active #> 2942 2021 SEA TE <NA> 48 Active #> 2943 2021 SEA TE <NA> 46 Active #> 2944 2021 SEA TE TE 89 Active #> 2945 2021 SEA WR <NA> 86 Active #> 2946 2021 SEA WR <NA> 87 Active #> 2947 2021 SEA WR <NA> 83 Active #> 2948 2021 SEA WR <NA> 83 Active #> 2949 2021 SEA WR RWR 16 Active #> 2950 2021 SEA WR SWR 15 Inactive #> 2951 2021 SEA WR RWR 17 Active #> 2952 2021 SEA WR LWR 18 Active #> 2953 2021 SEA WR <NA> 0 Active #> 2954 2021 SEA WR RWR 19 Active #> 2955 2021 SEA WR LWR 13 Active #> 2956 2021 SEA WR LWR 14 Active #> 2957 2021 SEA WR LWR 11 Active #> 2958 2021 SEA WR <NA> 0 Active #> 2959 2021 SEA WR SWR 1 Active #> 2960 2021 SEA WR <NA> 10 Inactive #> 2961 2021 SEA WR <NA> 88 Active #> 2962 2021 SF C C 58 Inactive #> 2963 2021 SF C C 50 Active #> 2964 2021 SF C C 64 Active #> 2965 2021 SF C C 61 Injured Reserve #> 2966 2021 SF CB <NA> 31 Injured Reserve #> 2967 2021 SF CB <NA> 41 Active #> 2968 2021 SF CB LCB 4 Active #> 2969 2021 SF CB RCB 40 Active #> 2970 2021 SF CB NB 35 Active #> 2971 2021 SF CB NB 24 Active #> 2972 2021 SF CB LCB 2 Active #> 2973 2021 SF CB <NA> 25 Active #> 2974 2021 SF CB RCB 0 Active #> 2975 2021 SF CB RCB 41 Active #> 2976 2021 SF CB RCB 27 Active #> 2977 2021 SF DB <NA> 41 Inactive #> 2978 2021 SF DB <NA> 49 Active #> 2979 2021 SF DB SS 32 Active #> 2980 2021 SF DB <NA> 7 Active #> 2981 2021 SF DB SS 36 Active #> 2982 2021 SF DB FS 33 Active #> 2983 2021 SF DB SS 26 Active #> 2984 2021 SF DB LCB 38 Active #> 2985 2021 SF DB <NA> 29 Active #> 2986 2021 SF DB FS 1 Active #> 2987 2021 SF DB FS 43 Active #> 2988 2021 SF DE <NA> 67 Active #> 2989 2021 SF DE LDE 94 Inactive #> 2990 2021 SF DE LDT 92 Active #> 2991 2021 SF DE LDE 91 Active #> 2992 2021 SF DE RDT 67 Active #> 2993 2021 SF DE <NA> 94 Active #> 2994 2021 SF DE RDE 98 Active #> 2995 2021 SF DE RDE 97 Active #> 2996 2021 SF DE WILL 56 Active #> 2997 2021 SF DE <NA> 77 Active #> 2998 2021 SF DE <NA> 68 Active #> 2999 2021 SF DE LDE 55 Active #> 3000 2021 SF DE <NA> 77 Active #> 3001 2021 SF DT RDT 99 Active #> 3002 2021 SF DT RDE 95 Active #> 3003 2021 SF DT LDT 96 Active #> 3004 2021 SF DT <NA> 65 Active #> 3005 2021 SF DT RDT 93 Active #> 3006 2021 SF DT RDT 63 Active #> 3007 2021 SF DT LDT 90 Active #> 3008 2021 SF FB <NA> 40 Active #> 3009 2021 SF FB RB 44 Active #> 3010 2021 SF K K 9 Active #> 3011 2021 SF LB <NA> 54 Active #> 3012 2021 SF LB WILL 45 Active #> 3013 2021 SF LB MIKE 54 Active #> 3014 2021 SF LB SAM 58 Active #> 3015 2021 SF LB <NA> 53 Active #> 3016 2021 SF LB MIKE 51 Active #> 3017 2021 SF LB MIKE 48 Active #> 3018 2021 SF LB WILL 59 Active #> 3019 2021 SF LB MIKE 48 Active #> 3020 2021 SF LB SAM 57 Active #> 3021 2021 SF LB <NA> 47 Active #> 3022 2021 SF LS <NA> 46 Active #> 3023 2021 SF OG LG 75 Active #> 3024 2021 SF OG LG 62 Active #> 3025 2021 SF OG RT 61 Active #> 3026 2021 SF OL <NA> 62 Active #> 3027 2021 SF OL LT 76 Active #> 3028 2021 SF OL RG 58 Active #> 3029 2021 SF OL LG 66 Active #> 3030 2021 SF OL RT 68 Active #> 3031 2021 SF OL <NA> 77 Active #> 3032 2021 SF OL RG 60 Active #> 3033 2021 SF OT LT 71 Active #> 3034 2021 SF OT <NA> 67 Inactive #> 3035 2021 SF OT RT 69 Active #> 3036 2021 SF OT LT 78 Active #> 3037 2021 SF P <NA> 6 Active #> 3038 2021 SF QB QB 7 Active #> 3039 2021 SF QB QB 10 Active #> 3040 2021 SF QB QB 5 Active #> 3041 2021 SF RB <NA> 29 Active #> 3042 2021 SF RB RB 49 Active #> 3043 2021 SF RB RB 30 Active #> 3044 2021 SF RB RB 22 Active #> 3045 2021 SF RB RB 31 Active #> 3046 2021 SF RB RB 28 Active #> 3047 2021 SF RB RB 23 Active #> 3048 2021 SF S <NA> 46 Active #> 3049 2021 SF TE TE 88 Active #> 3050 2021 SF TE TE 82 Active #> 3051 2021 SF TE <NA> 83 Active #> 3052 2021 SF TE <NA> 47 Active #> 3053 2021 SF TE TE 88 Active #> 3054 2021 SF TE TE 89 Active #> 3055 2021 SF TE TE 85 Active #> 3056 2021 SF WR RWR 14 Active #> 3057 2021 SF WR LWR 4 Active #> 3058 2021 SF WR <NA> 1 Active #> 3059 2021 SF WR SWR 18 Active #> 3060 2021 SF WR RWR 19 Active #> 3061 2021 SF WR SWR 15 Active #> 3062 2021 SF WR LWR 17 Active #> 3063 2021 SF WR LWR 13 Active #> 3064 2021 SF WR <NA> 7 Inactive #> 3065 2021 SF WR LWR 86 Active #> 3066 2021 SF WR LWR 11 Active #> 3067 2021 SF WR RWR 6 Active #> 3068 2021 SF WR SWR 13 Active #> 3069 2021 SF WR <NA> 2 Active #> 3070 2021 SF WR SWR 81 Active #> 3071 2021 TB C <NA> 59 Active #> 3072 2021 TB C <NA> 0 Inactive #> 3073 2021 TB C C 66 Active #> 3074 2021 TB CB CB 22 Active #> 3075 2021 TB CB <NA> 38 Active #> 3076 2021 TB CB RCB 23 Active #> 3077 2021 TB CB <NA> 30 Active #> 3078 2021 TB CB <NA> 29 Active #> 3079 2021 TB CB RCB 36 Active #> 3080 2021 TB CB <NA> 26 Active #> 3081 2021 TB CB RCB 35 Active #> 3082 2021 TB CB CB 24 Active #> 3083 2021 TB CB CB 43 Active #> 3084 2021 TB DB <NA> 28 Active #> 3085 2021 TB DB FS 33 Active #> 3086 2021 TB DB <NA> 37 Active #> 3087 2021 TB DB FS 34 Active #> 3088 2021 TB DB <NA> 0 Inactive #> 3089 2021 TB DB FS 39 Active #> 3090 2021 TB DB <NA> 0 Inactive #> 3091 2021 TB DB <NA> 32 Active #> 3092 2021 TB DB SS 31 Active #> 3093 2021 TB DE <NA> 0 Active #> 3094 2021 TB DE LDE 79 Active #> 3095 2021 TB DE ROLB 9 Active #> 3096 2021 TB DE RDE 92 Active #> 3097 2021 TB DT RDE 95 Active #> 3098 2021 TB DT <NA> 0 Inactive #> 3099 2021 TB DT LOLB 44 Active #> 3100 2021 TB DT <NA> 91 Active #> 3101 2021 TB DT RDE 96 Active #> 3102 2021 TB DT LDE 93 Active #> 3103 2021 TB DT NT 71 Active #> 3104 2021 TB DT NT 50 Active #> 3105 2021 TB DT LDE 94 Active #> 3106 2021 TB DT NT 56 Active #> 3107 2021 TB FS <NA> 34 Active #> 3108 2021 TB FS <NA> 38 Active #> 3109 2021 TB G LG 75 Active #> 3110 2021 TB G LG 60 Active #> 3111 2021 TB K K 19 Active #> 3112 2021 TB K K 3 Active #> 3113 2021 TB LB RILB 48 Active #> 3114 2021 TB LB RILB 52 Active #> 3115 2021 TB LB LILB 51 Active #> 3116 2021 TB LB <NA> 41 Active #> 3117 2021 TB LB LOLB 98 Active #> 3118 2021 TB LB ROLB 58 Active #> 3119 2021 TB LB ROLB 49 Active #> 3120 2021 TB LB LILB 45 Active #> 3121 2021 TB LB RILB 54 Active #> 3122 2021 TB LB <NA> 0 Active #> 3123 2021 TB LB LILB 53 Active #> 3124 2021 TB LB LOLB 90 Active #> 3125 2021 TB LB LOLB 57 Active #> 3126 2021 TB LB <NA> 59 Active #> 3127 2021 TB LS <NA> 89 Active #> 3128 2021 TB LS <NA> 97 Active #> 3129 2021 TB LS <NA> 49 Active #> 3130 2021 TB OG <NA> 61 Inactive #> 3131 2021 TB OG RG 64 Active #> 3132 2021 TB OG LG 74 Active #> 3133 2021 TB OG RG 65 Active #> 3134 2021 TB OL <NA> 72 Active #> 3135 2021 TB OL <NA> 67 Active #> 3136 2021 TB OT RT 77 Active #> 3137 2021 TB OT LT 76 Active #> 3138 2021 TB OT <NA> 0 Active #> 3139 2021 TB OT RT 72 Active #> 3140 2021 TB OT LT 62 Active #> 3141 2021 TB OT RT 78 Active #> 3142 2021 TB OT LT 68 Active #> 3143 2021 TB OT <NA> 73 Active #> 3144 2021 TB OT <NA> 68 Active #> 3145 2021 TB OT C 70 Active #> 3146 2021 TB P <NA> 8 Active #> 3147 2021 TB P <NA> 1 Active #> 3148 2021 TB P <NA> 4 Active #> 3149 2021 TB QB QB 4 Active #> 3150 2021 TB QB <NA> 6 Active #> 3151 2021 TB QB QB 11 Active #> 3152 2021 TB QB QB 12 Active #> 3153 2021 TB QB QB 2 Active #> 3154 2021 TB RB RB 27 Active #> 3155 2021 TB RB RB 21 Active #> 3156 2021 TB RB <NA> 33 Active #> 3157 2021 TB RB RB 25 Active #> 3158 2021 TB RB <NA> 46 Active #> 3159 2021 TB RB RB 7 Active #> 3160 2021 TB RB RB 30 Active #> 3161 2021 TB RB <NA> 22 Active #> 3162 2021 TB SS <NA> 28 Active #> 3163 2021 TB SS <NA> 21 Active #> 3164 2021 TB TE <NA> 6 Active #> 3165 2021 TB TE <NA> 82 Active #> 3166 2021 TB TE TE 80 Active #> 3167 2021 TB TE TE 88 Active #> 3168 2021 TB TE TE 84 Active #> 3169 2021 TB TE TE 87 Active #> 3170 2021 TB TE TE 86 Active #> 3171 2021 TB WR SWR 85 Active #> 3172 2021 TB WR RWR 15 Active #> 3173 2021 TB WR RWR 14 Active #> 3174 2021 TB WR <NA> 89 Active #> 3175 2021 TB WR SWR 81 Active #> 3176 2021 TB WR <NA> 83 Active #> 3177 2021 TB WR <NA> 83 Active #> 3178 2021 TB WR <NA> 0 Active #> 3179 2021 TB WR <NA> 16 Active #> 3180 2021 TB WR RWR 18 Active #> 3181 2021 TB WR LWR 13 Active #> 3182 2021 TB WR SWR 1 Active #> 3183 2021 TB WR LWR 10 Active #> 3184 2021 TB WR LWR 17 Active #> 3185 2021 TB <NA> <NA> 0 Active #> 3186 2021 TEN C <NA> 53 Inactive #> 3187 2021 TEN C <NA> 57 Active #> 3188 2021 TEN C C 60 Active #> 3189 2021 TEN C C 52 Active #> 3190 2021 TEN C LG 62 Active #> 3191 2021 TEN CB CB 39 Active #> 3192 2021 TEN CB <NA> 32 Inactive #> 3193 2021 TEN CB CB 26 Active #> 3194 2021 TEN CB <NA> 28 Inactive #> 3195 2021 TEN CB CB 20 Active #> 3196 2021 TEN CB <NA> 2 Active #> 3197 2021 TEN CB <NA> 40 Active #> 3198 2021 TEN CB CB 36 Active #> 3199 2021 TEN CB CB 3 Active #> 3200 2021 TEN CB <NA> 24 Active #> 3201 2021 TEN DB SS 21 Active #> 3202 2021 TEN DB SS 37 Active #> 3203 2021 TEN DB <NA> 32 Active #> 3204 2021 TEN DB CB 35 Active #> 3205 2021 TEN DB <NA> 40 Inactive #> 3206 2021 TEN DB <NA> 36 Active #> 3207 2021 TEN DB <NA> 38 Active #> 3208 2021 TEN DB <NA> 30 Active #> 3209 2021 TEN DB FS 29 Active #> 3210 2021 TEN DB FS 33 Active #> 3211 2021 TEN DB <NA> 25 Active #> 3212 2021 TEN DB FS 31 Active #> 3213 2021 TEN DB SS 30 Active #> 3214 2021 TEN DE DE 0 Active #> 3215 2021 TEN DE DE 96 Active #> 3216 2021 TEN DE LOLB 57 Active #> 3217 2021 TEN DT DE 78 Active #> 3218 2021 TEN DT NT 95 Inactive #> 3219 2021 TEN DT <NA> 97 Inactive #> 3220 2021 TEN DT <NA> 76 Active #> 3221 2021 TEN DT DT 69 Active #> 3222 2021 TEN DT DT 98 Active #> 3223 2021 TEN DT NT 93 Active #> 3224 2021 TEN DT NT 94 Active #> 3225 2021 TEN DT ROLB 97 Active #> 3226 2021 TEN DT NT 94 Active #> 3227 2021 TEN DT DT 91 Active #> 3228 2021 TEN FB <NA> 44 Active #> 3229 2021 TEN FS <NA> 19 Active #> 3230 2021 TEN G <NA> 78 Inactive #> 3231 2021 TEN G C 67 Active #> 3232 2021 TEN ILB <NA> 49 Active #> 3233 2021 TEN K <NA> 4 Active #> 3234 2021 TEN K K 7 Active #> 3235 2021 TEN K <NA> 4 Active #> 3236 2021 TEN K K 4 Active #> 3237 2021 TEN LB LOLB 50 Active #> 3238 2021 TEN LB <NA> 49 Active #> 3239 2021 TEN LB ROLB 92 Active #> 3240 2021 TEN LB LILB 45 Active #> 3241 2021 TEN LB <NA> 99 Active #> 3242 2021 TEN LB RILB 56 Active #> 3243 2021 TEN LB ROLB 59 Active #> 3244 2021 TEN LB LOLB 48 Active #> 3245 2021 TEN LB ROLB 58 Active #> 3246 2021 TEN LB RILB 47 Active #> 3247 2021 TEN LB RILB 54 Active #> 3248 2021 TEN LB LILB 55 Active #> 3249 2021 TEN LB LILB 51 Active #> 3250 2021 TEN LB <NA> 53 Inactive #> 3251 2021 TEN LS <NA> 46 Active #> 3252 2021 TEN OG LG 76 Active #> 3253 2021 TEN OG <NA> 53 Active #> 3254 2021 TEN OG LG 57 Active #> 3255 2021 TEN OL RG 68 Active #> 3256 2021 TEN OL LT 72 Active #> 3257 2021 TEN OL RG 64 Active #> 3258 2021 TEN OT <NA> 79 Inactive #> 3259 2021 TEN OT LT 77 Active #> 3260 2021 TEN OT RG 75 Active #> 3261 2021 TEN OT LT 69 Active #> 3262 2021 TEN OT RT 73 Active #> 3263 2021 TEN OT RT 70 Active #> 3264 2021 TEN OT RT 71 Active #> 3265 2021 TEN OT <NA> 79 Active #> 3266 2021 TEN OT <NA> 0 Inactive #> 3267 2021 TEN P <NA> 8 Active #> 3268 2021 TEN P <NA> 6 Active #> 3269 2021 TEN QB QB 14 Active #> 3270 2021 TEN QB QB 17 Active #> 3271 2021 TEN QB QB 14 Active #> 3272 2021 TEN QB QB 5 Active #> 3273 2021 TEN RB RB 32 Active #> 3274 2021 TEN RB RB 28 Active #> 3275 2021 TEN RB RB 41 Active #> 3276 2021 TEN RB RB 22 Active #> 3277 2021 TEN RB RB 25 Active #> 3278 2021 TEN RB <NA> 38 Active #> 3279 2021 TEN T <NA> 66 Inactive #> 3280 2021 TEN TE TE 0 Active #> 3281 2021 TEN TE TE 85 Active #> 3282 2021 TEN TE TE 87 Active #> 3283 2021 TEN TE <NA> 49 Inactive #> 3284 2021 TEN TE TE 86 Active #> 3285 2021 TEN TE <NA> 83 Active #> 3286 2021 TEN TE TE 84 Active #> 3287 2021 TEN TE <NA> 83 Inactive #> 3288 2021 TEN TE <NA> 89 Active #> 3289 2021 TEN TE <NA> 42 Active #> 3290 2021 TEN WR RWR 13 Active #> 3291 2021 TEN WR LWR 82 Active #> 3292 2021 TEN WR LWR 12 Active #> 3293 2021 TEN WR RWR 2 Active #> 3294 2021 TEN WR SWR 80 Active #> 3295 2021 TEN WR LWR 11 Active #> 3296 2021 TEN WR <NA> 19 Active #> 3297 2021 TEN WR LWR 88 Active #> 3298 2021 TEN WR SWR 15 Active #> 3299 2021 TEN WR RWR 81 Active #> 3300 2021 TEN WR SWR 18 Active #> 3301 2021 TEN WR LWR 16 Inactive #> 3302 2021 TEN WR LWR 10 Active #> 3303 2021 TEN WR <NA> 12 Active #> 3304 2021 WAS C <NA> 61 Active #> 3305 2021 WAS C C 73 Active #> 3306 2021 WAS C C 60 Active #> 3307 2021 WAS C <NA> 0 Active #> 3308 2021 WAS C C 69 Active #> 3309 2021 WAS CB FS 38 Active #> 3310 2021 WAS CB <NA> 34 Active #> 3311 2021 WAS CB <NA> 34 Active #> 3312 2021 WAS CB <NA> 37 Active #> 3313 2021 WAS CB <NA> 38 Active #> 3314 2021 WAS CB <NA> 35 Active #> 3315 2021 WAS CB RCB 23 Active #> 3316 2021 WAS CB LCB 32 Active #> 3317 2021 WAS CB <NA> 36 Active #> 3318 2021 WAS CB <NA> 46 Active #> 3319 2021 WAS CB RCB 20 Active #> 3320 2021 WAS CB LCB 29 Active #> 3321 2021 WAS DB <NA> 24 Active #> 3322 2021 WAS DB SS 26 Active #> 3323 2021 WAS DB SS 48 Active #> 3324 2021 WAS DB SS 22 Active #> 3325 2021 WAS DB FS 31 Active #> 3326 2021 WAS DB LCB 25 Active #> 3327 2021 WAS DB <NA> 41 Active #> 3328 2021 WAS DB FS 39 Inactive #> 3329 2021 WAS DB RCB 30 Active #> 3330 2021 WAS DE <NA> 57 Active #> 3331 2021 WAS DE LDE 96 Active #> 3332 2021 WAS DE RDE 90 Active #> 3333 2021 WAS DE RDE 95 Active #> 3334 2021 WAS DE RDE 56 Active #> 3335 2021 WAS DE <NA> 79 Active #> 3336 2021 WAS DE LDE 99 Active #> 3337 2021 WAS DE <NA> 96 Active #> 3338 2021 WAS DE <NA> 57 Active #> 3339 2021 WAS DE LDE 58 Active #> 3340 2021 WAS DT RDT 98 Active #> 3341 2021 WAS DT RDT 64 Active #> 3342 2021 WAS DT LDT 94 Active #> 3343 2021 WAS DT <NA> 63 Active #> 3344 2021 WAS DT LDT 97 Active #> 3345 2021 WAS DT LDT 92 Active #> 3346 2021 WAS DT <NA> 62 Active #> 3347 2021 WAS DT RDT 93 Active #> 3348 2021 WAS G <NA> 69 Inactive #> 3349 2021 WAS G <NA> 55 Active #> 3350 2021 WAS G <NA> 61 Active #> 3351 2021 WAS K K 3 Active #> 3352 2021 WAS K <NA> 8 Active #> 3353 2021 WAS LB ROLB 53 Active #> 3354 2021 WAS LB MLB 51 Active #> 3355 2021 WAS LB MLB 52 Active #> 3356 2021 WAS LB LOLB 50 Active #> 3357 2021 WAS LB MLB 56 Active #> 3358 2021 WAS LB ROLB 59 Active #> 3359 2021 WAS LB MLB 47 Active #> 3360 2021 WAS LB ROLB 45 Active #> 3361 2021 WAS LB LOLB 40 Active #> 3362 2021 WAS LB LOLB 55 Active #> 3363 2021 WAS LS <NA> 54 Active #> 3364 2021 WAS OG LG 71 Active #> 3365 2021 WAS OG LG 67 Active #> 3366 2021 WAS OG RG 63 Active #> 3367 2021 WAS OG RG 75 Active #> 3368 2021 WAS OL RT 76 Active #> 3369 2021 WAS OT <NA> 68 Active #> 3370 2021 WAS OT <NA> 0 Inactive #> 3371 2021 WAS OT LT 72 Active #> 3372 2021 WAS OT RT 77 Active #> 3373 2021 WAS OT LG 79 Active #> 3374 2021 WAS OT LT 66 Active #> 3375 2021 WAS OT RT 74 Active #> 3376 2021 WAS OT LT 78 Active #> 3377 2021 WAS P <NA> 5 Active #> 3378 2021 WAS QB QB 4 Active #> 3379 2021 WAS QB QB 8 Active #> 3380 2021 WAS QB QB 6 Active #> 3381 2021 WAS QB QB 14 Active #> 3382 2021 WAS RB RB 36 Active #> 3383 2021 WAS RB RB 41 Active #> 3384 2021 WAS RB RB 38 Active #> 3385 2021 WAS RB RB 25 Active #> 3386 2021 WAS RB RB 24 Active #> 3387 2021 WAS RB RB 35 Active #> 3388 2021 WAS TE TE 80 Active #> 3389 2021 WAS TE <NA> 85 Active #> 3390 2021 WAS TE TE 83 Active #> 3391 2021 WAS TE <NA> 0 Active #> 3392 2021 WAS TE TE 82 Active #> 3393 2021 WAS TE TE 0 Inactive #> 3394 2021 WAS TE TE 86 Active #> 3395 2021 WAS TE TE 87 Active #> 3396 2021 WAS TE TE 88 Active #> 3397 2021 WAS TE TE 86 Active #> 3398 2021 WAS WR LWR 11 Active #> 3399 2021 WAS WR SWR 16 Active #> 3400 2021 WAS WR SWR 84 Active #> 3401 2021 WAS WR <NA> 84 Active #> 3402 2021 WAS WR RWR 10 Active #> 3403 2021 WAS WR LWR 17 Active #> 3404 2021 WAS WR RWR 89 Active #> 3405 2021 WAS WR <NA> 12 Active #> 3406 2021 WAS WR SWR 13 Active #> 3407 2021 WAS WR LWR 19 Active #> 3408 2021 WAS WR LWR 80 Active #> 3409 2021 WAS WR RWR 18 Active #> 3410 2021 WAS WR SWR 15 Active #> 3411 2021 WAS WR SWR 2 Active #> 3412 2021 <NA> C C 53 Injured Reserve #> 3413 2021 <NA> C <NA> 59 Active #> 3414 2021 <NA> C <NA> 62 Inactive #> 3415 2021 <NA> C <NA> 62 Active #> 3416 2021 <NA> C <NA> 79 Inactive #> 3417 2021 <NA> C <NA> 55 Active #> 3418 2021 <NA> C <NA> 67 Inactive #> 3419 2021 <NA> C LG 62 Inactive #> 3420 2021 <NA> C C 62 Inactive #> 3421 2021 <NA> C <NA> NA Inactive #> 3422 2021 <NA> C <NA> 60 Inactive #> 3423 2021 <NA> C <NA> 64 Inactive #> 3424 2021 <NA> C C 53 Injured Reserve #> 3425 2021 <NA> C <NA> 60 Inactive #> 3426 2021 <NA> C C 63 Inactive #> 3427 2021 <NA> C <NA> 75 Active #> 3428 2021 <NA> C <NA> NA Inactive #> 3429 2021 <NA> C <NA> 74 Inactive #> 3430 2021 <NA> C C NA Inactive #> 3431 2021 <NA> C <NA> 60 Inactive #> 3432 2021 <NA> C <NA> NA Inactive #> 3433 2021 <NA> C <NA> 55 Inactive #> 3434 2021 <NA> C C 67 Inactive #> 3435 2021 <NA> C <NA> 61 Inactive #> 3436 2021 <NA> C <NA> 65 Active #> 3437 2021 <NA> C C 61 Active #> 3438 2021 <NA> C <NA> 49 Inactive #> 3439 2021 <NA> C <NA> 66 Active #> 3440 2021 <NA> C <NA> 68 Inactive #> 3441 2021 <NA> C <NA> 76 Inactive #> 3442 2021 <NA> C <NA> 77 Inactive #> 3443 2021 <NA> C <NA> 72 Inactive #> 3444 2021 <NA> C <NA> 69 Inactive #> 3445 2021 <NA> C C NA Inactive #> 3446 2021 <NA> C C NA Inactive #> 3447 2021 <NA> C C 50 Inactive #> 3448 2021 <NA> C <NA> 62 Inactive #> 3449 2021 <NA> C C NA Inactive #> 3450 2021 <NA> C <NA> 63 Active #> 3451 2021 <NA> C <NA> 59 Inactive #> 3452 2021 <NA> C C 76 Inactive #> 3453 2021 <NA> C <NA> 78 Inactive #> 3454 2021 <NA> C <NA> 63 Inactive #> 3455 2021 <NA> C LG 72 Active #> 3456 2021 <NA> C C 62 Inactive #> 3457 2021 <NA> C <NA> 60 Inactive #> 3458 2021 <NA> C <NA> 60 Inactive #> 3459 2021 <NA> C <NA> 60 Active #> 3460 2021 <NA> CB <NA> 39 Inactive #> 3461 2021 <NA> CB <NA> 31 Active #> 3462 2021 <NA> CB <NA> NA Inactive #> 3463 2021 <NA> CB <NA> 31 Active #> 3464 2021 <NA> CB <NA> 39 Inactive #> 3465 2021 <NA> CB <NA> NA Inactive #> 3466 2021 <NA> CB NB 24 Active #> 3467 2021 <NA> CB <NA> 39 Active #> 3468 2021 <NA> CB <NA> 29 Active #> 3469 2021 <NA> CB <NA> 38 Active #> 3470 2021 <NA> CB <NA> 31 Inactive #> 3471 2021 <NA> CB <NA> 35 Active #> 3472 2021 <NA> CB <NA> 37 Inactive #> 3473 2021 <NA> CB <NA> 38 Inactive #> 3474 2021 <NA> CB <NA> 37 Active #> 3475 2021 <NA> CB <NA> 29 Inactive #> 3476 2021 <NA> CB <NA> 22 Active #> 3477 2021 <NA> CB <NA> 47 Inactive #> 3478 2021 <NA> CB <NA> 38 Inactive #> 3479 2021 <NA> CB RCB 25 Inactive #> 3480 2021 <NA> CB CB 25 Inactive #> 3481 2021 <NA> CB <NA> 35 Inactive #> 3482 2021 <NA> CB <NA> 45 Inactive #> 3483 2021 <NA> CB <NA> 23 Inactive #> 3484 2021 <NA> CB LCB 29 Inactive #> 3485 2021 <NA> CB <NA> 43 Inactive #> 3486 2021 <NA> CB <NA> 39 Inactive #> 3487 2021 <NA> CB <NA> 44 Inactive #> 3488 2021 <NA> CB <NA> 39 Inactive #> 3489 2021 <NA> CB <NA> 32 Inactive #> 3490 2021 <NA> CB <NA> 35 Active #> 3491 2021 <NA> CB <NA> 34 Inactive #> 3492 2021 <NA> CB <NA> 36 Inactive #> 3493 2021 <NA> CB <NA> 40 Inactive #> 3494 2021 <NA> CB <NA> 24 Active #> 3495 2021 <NA> CB <NA> 31 Inactive #> 3496 2021 <NA> CB <NA> 27 Inactive #> 3497 2021 <NA> CB <NA> 39 Active #> 3498 2021 <NA> CB <NA> 44 Inactive #> 3499 2021 <NA> CB RCB 38 Inactive #> 3500 2021 <NA> CB LCB 39 Active #> 3501 2021 <NA> CB <NA> 35 Inactive #> 3502 2021 <NA> CB <NA> 20 Inactive #> 3503 2021 <NA> CB RCB 41 Inactive #> 3504 2021 <NA> CB <NA> 42 Inactive #> 3505 2021 <NA> CB <NA> NA Inactive #> 3506 2021 <NA> CB <NA> 41 Inactive #> 3507 2021 <NA> CB <NA> 36 Inactive #> 3508 2021 <NA> CB <NA> 38 Inactive #> 3509 2021 <NA> CB <NA> 29 Inactive #> 3510 2021 <NA> CB <NA> 33 Injured Reserve #> 3511 2021 <NA> CB <NA> 31 Active #> 3512 2021 <NA> CB <NA> 43 Inactive #> 3513 2021 <NA> CB <NA> 20 Active #> 3514 2021 <NA> CB <NA> 30 Inactive #> 3515 2021 <NA> CB <NA> 31 Active #> 3516 2021 <NA> CB <NA> NA Inactive #> 3517 2021 <NA> CB <NA> 7 Inactive #> 3518 2021 <NA> CB <NA> 41 Injured Reserve #> 3519 2021 <NA> CB <NA> 38 Inactive #> 3520 2021 <NA> CB <NA> 44 Inactive #> 3521 2021 <NA> CB <NA> 37 Inactive #> 3522 2021 <NA> CB <NA> 41 Inactive #> 3523 2021 <NA> CB <NA> NA Inactive #> 3524 2021 <NA> CB <NA> 23 Inactive #> 3525 2021 <NA> CB <NA> 28 Inactive #> 3526 2021 <NA> CB <NA> 43 Inactive #> 3527 2021 <NA> CB LCB 47 Inactive #> 3528 2021 <NA> CB <NA> 34 Inactive #> 3529 2021 <NA> CB <NA> 22 Inactive #> 3530 2021 <NA> CB <NA> 46 Inactive #> 3531 2021 <NA> CB <NA> 30 Inactive #> 3532 2021 <NA> CB <NA> 35 Inactive #> 3533 2021 <NA> CB <NA> 39 Inactive #> 3534 2021 <NA> CB <NA> 41 Inactive #> 3535 2021 <NA> CB <NA> 66 Inactive #> 3536 2021 <NA> CB LCB NA Inactive #> 3537 2021 <NA> CB <NA> 30 Inactive #> 3538 2021 <NA> CB <NA> NA Inactive #> 3539 2021 <NA> CB <NA> NA Inactive #> 3540 2021 <NA> CB <NA> NA Inactive #> 3541 2021 <NA> CB <NA> NA Inactive #> 3542 2021 <NA> CB <NA> NA Inactive #> 3543 2021 <NA> CB <NA> 36 Inactive #> 3544 2021 <NA> CB <NA> NA Inactive #> 3545 2021 <NA> CB <NA> 37 Active #> 3546 2021 <NA> CB <NA> 29 Inactive #> 3547 2021 <NA> CB <NA> 9 Inactive #> 3548 2021 <NA> CB LCB 23 Active #> 3549 2021 <NA> CB <NA> 36 Inactive #> 3550 2021 <NA> CB <NA> 39 Active #> 3551 2021 <NA> CB <NA> 26 Inactive #> 3552 2021 <NA> CB <NA> 35 Inactive #> 3553 2021 <NA> CB <NA> 28 Inactive #> 3554 2021 <NA> CB <NA> 38 Active #> 3555 2021 <NA> CB <NA> 25 Inactive #> 3556 2021 <NA> CB <NA> 23 Inactive #> 3557 2021 <NA> CB <NA> 35 Inactive #> 3558 2021 <NA> CB <NA> 34 Active #> 3559 2021 <NA> CB RCB NA Inactive #> 3560 2021 <NA> CB <NA> 27 Active #> 3561 2021 <NA> CB <NA> 25 Inactive #> 3562 2021 <NA> CB <NA> 25 Injured Reserve #> 3563 2021 <NA> CB <NA> 37 Inactive #> 3564 2021 <NA> CB <NA> 32 Inactive #> 3565 2021 <NA> CB <NA> 43 Active #> 3566 2021 <NA> CB <NA> 37 Active #> 3567 2021 <NA> CB <NA> 39 Inactive #> 3568 2021 <NA> CB RCB 34 Inactive #> 3569 2021 <NA> CB <NA> 27 Inactive #> 3570 2021 <NA> CB <NA> 21 Active #> 3571 2021 <NA> CB <NA> 31 Inactive #> 3572 2021 <NA> CB <NA> 24 Active #> 3573 2021 <NA> CB <NA> 32 Active #> 3574 2021 <NA> CB <NA> NA Inactive #> 3575 2021 <NA> CB <NA> 20 Inactive #> 3576 2021 <NA> CB <NA> 8 Active #> 3577 2021 <NA> CB NB 32 Active #> 3578 2021 <NA> CB <NA> 49 Active #> 3579 2021 <NA> CB <NA> 42 Inactive #> 3580 2021 <NA> CB <NA> 26 Active #> 3581 2021 <NA> CB <NA> 29 Inactive #> 3582 2021 <NA> CB <NA> 38 Inactive #> 3583 2021 <NA> CB <NA> 34 Inactive #> 3584 2021 <NA> CB <NA> 22 Inactive #> 3585 2021 <NA> CB <NA> 29 Inactive #> 3586 2021 <NA> CB LCB NA Inactive #> 3587 2021 <NA> CB <NA> 46 Inactive #> 3588 2021 <NA> CB <NA> 48 Inactive #> 3589 2021 <NA> CB <NA> 20 Inactive #> 3590 2021 <NA> CB <NA> NA Inactive #> 3591 2021 <NA> CB <NA> 46 Active #> 3592 2021 <NA> CB <NA> 36 Inactive #> 3593 2021 <NA> CB <NA> 47 Inactive #> 3594 2021 <NA> CB <NA> 38 Active #> 3595 2021 <NA> CB <NA> 29 Active #> 3596 2021 <NA> CB <NA> 33 Inactive #> 3597 2021 <NA> CB RCB NA Inactive #> 3598 2021 <NA> CB <NA> 38 Inactive #> 3599 2021 <NA> CB <NA> 45 Active #> 3600 2021 <NA> CB RCB 29 Active #> 3601 2021 <NA> CB <NA> 34 Inactive #> 3602 2021 <NA> CB LCB 30 Inactive #> 3603 2021 <NA> CB RCB 30 Active #> 3604 2021 <NA> CB <NA> 49 Inactive #> 3605 2021 <NA> CB <NA> NA Inactive #> 3606 2021 <NA> CB <NA> 31 Active #> 3607 2021 <NA> CB <NA> 39 Inactive #> 3608 2021 <NA> CB <NA> NA Inactive #> 3609 2021 <NA> CB <NA> NA Inactive #> 3610 2021 <NA> CB <NA> 40 Inactive #> 3611 2021 <NA> CB <NA> 33 Inactive #> 3612 2021 <NA> CB <NA> 35 Inactive #> 3613 2021 <NA> CB <NA> 23 Inactive #> 3614 2021 <NA> CB <NA> 38 Inactive #> 3615 2021 <NA> CB <NA> 37 Active #> 3616 2021 <NA> CB <NA> 23 Inactive #> 3617 2021 <NA> CB <NA> 28 Inactive #> 3618 2021 <NA> CB CB 38 Inactive #> 3619 2021 <NA> CB <NA> NA Inactive #> 3620 2021 <NA> CB <NA> 39 Inactive #> 3621 2021 <NA> CB <NA> 20 Inactive #> 3622 2021 <NA> CB <NA> 44 Inactive #> 3623 2021 <NA> CB <NA> 42 Inactive #> 3624 2021 <NA> CB <NA> 40 Inactive #> 3625 2021 <NA> CB <NA> 41 Inactive #> 3626 2021 <NA> DB FS 43 Inactive #> 3627 2021 <NA> DB <NA> 33 Active #> 3628 2021 <NA> DB SS 36 Inactive #> 3629 2021 <NA> DB <NA> NA Inactive #> 3630 2021 <NA> DB <NA> NA Inactive #> 3631 2021 <NA> DB <NA> 33 Inactive #> 3632 2021 <NA> DB <NA> 47 Inactive #> 3633 2021 <NA> DB FS 33 Active #> 3634 2021 <NA> DB FS 27 Inactive #> 3635 2021 <NA> DB <NA> 43 Inactive #> 3636 2021 <NA> DB <NA> 39 Inactive #> 3637 2021 <NA> DB FS 38 Inactive #> 3638 2021 <NA> DB <NA> NA Inactive #> 3639 2021 <NA> DB LCB 28 Inactive #> 3640 2021 <NA> DB <NA> 40 Inactive #> 3641 2021 <NA> DB <NA> 41 Inactive #> 3642 2021 <NA> DB FS 23 Inactive #> 3643 2021 <NA> DB FS 36 Inactive #> 3644 2021 <NA> DB <NA> 46 Inactive #> 3645 2021 <NA> DB <NA> 46 Inactive #> 3646 2021 <NA> DE <NA> 94 Active #> 3647 2021 <NA> DE <NA> 75 Inactive #> 3648 2021 <NA> DE SLB 51 Inactive #> 3649 2021 <NA> DE <NA> 98 Inactive #> 3650 2021 <NA> DE <NA> 95 Inactive #> 3651 2021 <NA> DE <NA> 61 Inactive #> 3652 2021 <NA> DE DT 99 Active #> 3653 2021 <NA> DE <NA> 50 Inactive #> 3654 2021 <NA> DE <NA> 56 Active #> 3655 2021 <NA> DE <NA> 52 Inactive #> 3656 2021 <NA> DE <NA> 68 Inactive #> 3657 2021 <NA> DE <NA> 98 Inactive #> 3658 2021 <NA> DE <NA> 90 Active #> 3659 2021 <NA> DE <NA> 66 Inactive #> 3660 2021 <NA> DE <NA> 98 Active #> 3661 2021 <NA> DE <NA> 71 Inactive #> 3662 2021 <NA> DE <NA> 96 Inactive #> 3663 2021 <NA> DE <NA> 75 Inactive #> 3664 2021 <NA> DE <NA> 76 Inactive #> 3665 2021 <NA> DE <NA> 91 Inactive #> 3666 2021 <NA> DE <NA> 95 Active #> 3667 2021 <NA> DE <NA> NA Inactive #> 3668 2021 <NA> DE <NA> 76 Active #> 3669 2021 <NA> DE <NA> 92 Active #> 3670 2021 <NA> DE <NA> 90 Inactive #> 3671 2021 <NA> DE <NA> NA Inactive #> 3672 2021 <NA> DE <NA> 59 Inactive #> 3673 2021 <NA> DE <NA> 56 Active #> 3674 2021 <NA> DE <NA> 56 Active #> 3675 2021 <NA> DE <NA> 66 Inactive #> 3676 2021 <NA> DE <NA> 61 Inactive #> 3677 2021 <NA> DE <NA> 59 Inactive #> 3678 2021 <NA> DE <NA> 62 Inactive #> 3679 2021 <NA> DE <NA> 95 Inactive #> 3680 2021 <NA> DE <NA> 95 Active #> 3681 2021 <NA> DE <NA> 73 Inactive #> 3682 2021 <NA> DE <NA> 92 Inactive #> 3683 2021 <NA> DE <NA> 46 Active #> 3684 2021 <NA> DE <NA> 99 Active #> 3685 2021 <NA> DE <NA> 96 Active #> 3686 2021 <NA> DE <NA> 93 Inactive #> 3687 2021 <NA> DE <NA> 90 Inactive #> 3688 2021 <NA> DE <NA> 76 Inactive #> 3689 2021 <NA> DE <NA> 79 Inactive #> 3690 2021 <NA> DE <NA> 90 Active #> 3691 2021 <NA> DE <NA> 96 Inactive #> 3692 2021 <NA> DE <NA> 74 Inactive #> 3693 2021 <NA> DE <NA> NA Inactive #> 3694 2021 <NA> DE <NA> 44 Inactive #> 3695 2021 <NA> DE <NA> 75 Inactive #> 3696 2021 <NA> DE <NA> NA Inactive #> 3697 2021 <NA> DE <NA> 90 Active #> 3698 2021 <NA> DE <NA> 63 Inactive #> 3699 2021 <NA> DE RDE NA Inactive #> 3700 2021 <NA> DE <NA> 66 Inactive #> 3701 2021 <NA> DE <NA> 71 Inactive #> 3702 2021 <NA> DE <NA> 47 Inactive #> 3703 2021 <NA> DE RDE 95 Inactive #> 3704 2021 <NA> DE <NA> 76 Injured Reserve #> 3705 2021 <NA> DE <NA> 94 Inactive #> 3706 2021 <NA> DE <NA> 49 Inactive #> 3707 2021 <NA> DE <NA> 93 Active #> 3708 2021 <NA> DE LOLB 91 Active #> 3709 2021 <NA> DE <NA> 64 Inactive #> 3710 2021 <NA> DE OLB 91 Inactive #> 3711 2021 <NA> DE <NA> 98 Injured Reserve #> 3712 2021 <NA> DE LDE NA Inactive #> 3713 2021 <NA> DE <NA> 40 Inactive #> 3714 2021 <NA> DE <NA> 62 Inactive #> 3715 2021 <NA> DE RDE 96 Active #> 3716 2021 <NA> DE RDE 54 Active #> 3717 2021 <NA> DE <NA> 43 Inactive #> 3718 2021 <NA> DE <NA> 90 Inactive #> 3719 2021 <NA> DE <NA> 48 Inactive #> 3720 2021 <NA> DE RDT NA Inactive #> 3721 2021 <NA> DE <NA> 79 Inactive #> 3722 2021 <NA> DE <NA> 63 Inactive #> 3723 2021 <NA> DE <NA> 92 Inactive #> 3724 2021 <NA> DE <NA> NA Inactive #> 3725 2021 <NA> DE <NA> 91 Inactive #> 3726 2021 <NA> DE <NA> 97 Inactive #> 3727 2021 <NA> DE LDE 93 Inactive #> 3728 2021 <NA> DE <NA> 96 Inactive #> 3729 2021 <NA> DE <NA> 79 Active #> 3730 2021 <NA> DE <NA> 75 Inactive #> 3731 2021 <NA> DE <NA> 69 Inactive #> 3732 2021 <NA> DE <NA> 93 Active #> 3733 2021 <NA> DE <NA> 59 Inactive #> 3734 2021 <NA> DE <NA> 96 Active #> 3735 2021 <NA> DE <NA> 54 Inactive #> 3736 2021 <NA> DE <NA> NA Inactive #> 3737 2021 <NA> DE <NA> 45 Inactive #> 3738 2021 <NA> DE <NA> 47 Inactive #> 3739 2021 <NA> DE <NA> 62 Inactive #> 3740 2021 <NA> DE <NA> 58 Inactive #> 3741 2021 <NA> DE <NA> 98 Inactive #> 3742 2021 <NA> DE <NA> 63 Inactive #> 3743 2021 <NA> DE <NA> 95 Inactive #> 3744 2021 <NA> DE ROLB 95 Inactive #> 3745 2021 <NA> DE <NA> 96 Inactive #> 3746 2021 <NA> DE <NA> 97 Inactive #> 3747 2021 <NA> DE ROLB NA Inactive #> 3748 2021 <NA> DE <NA> NA Inactive #> 3749 2021 <NA> DE <NA> 95 Inactive #> 3750 2021 <NA> DE LDE NA Inactive #> 3751 2021 <NA> DE <NA> 72 Active #> 3752 2021 <NA> DE <NA> 57 Inactive #> 3753 2021 <NA> DE <NA> 90 Inactive #> 3754 2021 <NA> DE <NA> NA Inactive #> 3755 2021 <NA> DE LDE 93 Active #> 3756 2021 <NA> DE RDE 98 Inactive #> 3757 2021 <NA> DE <NA> 78 Inactive #> 3758 2021 <NA> DE RDE 94 Active #> 3759 2021 <NA> DE <NA> 90 Inactive #> 3760 2021 <NA> DE <NA> 96 Inactive #> 3761 2021 <NA> DL <NA> 60 Inactive #> 3762 2021 <NA> DL <NA> 92 Inactive #> 3763 2021 <NA> DL <NA> 95 Inactive #> 3764 2021 <NA> DL <NA> 54 Inactive #> 3765 2021 <NA> DL <NA> 43 Inactive #> 3766 2021 <NA> DL <NA> 0 Inactive #> 3767 2021 <NA> DL <NA> 59 Inactive #> 3768 2021 <NA> DL <NA> 60 Inactive #> 3769 2021 <NA> DL LDT NA Inactive #> 3770 2021 <NA> DT <NA> 56 Inactive #> 3771 2021 <NA> DT NT 94 Inactive #> 3772 2021 <NA> DT <NA> 90 Active #> 3773 2021 <NA> DT <NA> 66 Inactive #> 3774 2021 <NA> DT <NA> 71 Inactive #> 3775 2021 <NA> DT <NA> 96 Active #> 3776 2021 <NA> DT <NA> 95 Active #> 3777 2021 <NA> DT LDT 95 Active #> 3778 2021 <NA> DT <NA> 64 Inactive #> 3779 2021 <NA> DT <NA> 66 Inactive #> 3780 2021 <NA> DT <NA> 97 Inactive #> 3781 2021 <NA> DT DT NA Inactive #> 3782 2021 <NA> DT <NA> 93 Active #> 3783 2021 <NA> DT <NA> 94 Inactive #> 3784 2021 <NA> DT <NA> 78 Inactive #> 3785 2021 <NA> DT <NA> 98 Inactive #> 3786 2021 <NA> DT NT 93 Inactive #> 3787 2021 <NA> DT RDE NA Inactive #> 3788 2021 <NA> DT <NA> 97 Active #> 3789 2021 <NA> DT <NA> 94 Active #> 3790 2021 <NA> DT <NA> 61 Inactive #> 3791 2021 <NA> DT <NA> 93 Active #> 3792 2021 <NA> DT <NA> 95 Active #> 3793 2021 <NA> DT <NA> 69 Inactive #> 3794 2021 <NA> DT <NA> 90 Injured Reserve #> 3795 2021 <NA> DT <NA> 60 Inactive #> 3796 2021 <NA> DT <NA> 63 Inactive #> 3797 2021 <NA> DT <NA> 95 Active #> 3798 2021 <NA> DT RDE 73 Inactive #> 3799 2021 <NA> DT <NA> 61 Active #> 3800 2021 <NA> DT NT 77 Inactive #> 3801 2021 <NA> DT <NA> 72 Inactive #> 3802 2021 <NA> DT <NA> 97 Inactive #> 3803 2021 <NA> DT <NA> 63 Inactive #> 3804 2021 <NA> DT <NA> 65 Inactive #> 3805 2021 <NA> DT RDT 97 Active #> 3806 2021 <NA> DT <NA> NA Inactive #> 3807 2021 <NA> DT <NA> 61 Inactive #> 3808 2021 <NA> DT <NA> 97 Inactive #> 3809 2021 <NA> DT <NA> 73 Inactive #> 3810 2021 <NA> DT <NA> 71 Inactive #> 3811 2021 <NA> DT <NA> 96 Inactive #> 3812 2021 <NA> DT <NA> 94 Inactive #> 3813 2021 <NA> DT <NA> 76 Inactive #> 3814 2021 <NA> DT <NA> 65 Inactive #> 3815 2021 <NA> DT <NA> 97 Inactive #> 3816 2021 <NA> DT <NA> 60 Inactive #> 3817 2021 <NA> DT <NA> NA Inactive #> 3818 2021 <NA> DT NT 98 Inactive #> 3819 2021 <NA> DT <NA> 62 Inactive #> 3820 2021 <NA> DT DE 93 Inactive #> 3821 2021 <NA> DT <NA> 65 Inactive #> 3822 2021 <NA> DT <NA> 78 Inactive #> 3823 2021 <NA> DT <NA> 60 Inactive #> 3824 2021 <NA> DT <NA> 93 Inactive #> 3825 2021 <NA> DT <NA> 67 Inactive #> 3826 2021 <NA> DT NT 90 Inactive #> 3827 2021 <NA> DT <NA> 93 Inactive #> 3828 2021 <NA> DT <NA> 78 Inactive #> 3829 2021 <NA> DT <NA> 53 Inactive #> 3830 2021 <NA> DT <NA> 68 Inactive #> 3831 2021 <NA> DT <NA> 99 Inactive #> 3832 2021 <NA> DT <NA> 90 Injured Reserve #> 3833 2021 <NA> DT <NA> 63 Inactive #> 3834 2021 <NA> DT <NA> 61 Inactive #> 3835 2021 <NA> DT <NA> 40 Inactive #> 3836 2021 <NA> DT <NA> 97 Inactive #> 3837 2021 <NA> DT LDT 93 Inactive #> 3838 2021 <NA> DT LDT 99 Active #> 3839 2021 <NA> DT <NA> 0 Active #> 3840 2021 <NA> DT <NA> 75 Inactive #> 3841 2021 <NA> DT <NA> 65 Inactive #> 3842 2021 <NA> DT <NA> 72 Inactive #> 3843 2021 <NA> DT <NA> 96 Injured Reserve #> 3844 2021 <NA> DT <NA> 96 Injured Reserve #> 3845 2021 <NA> DT <NA> 66 Inactive #> 3846 2021 <NA> DT <NA> 77 Inactive #> 3847 2021 <NA> DT RDE 99 Active #> 3848 2021 <NA> DT <NA> 70 Inactive #> 3849 2021 <NA> DT <NA> 64 Inactive #> 3850 2021 <NA> DT <NA> 48 Inactive #> 3851 2021 <NA> FB <NA> 96 Inactive #> 3852 2021 <NA> FB <NA> NA Inactive #> 3853 2021 <NA> FB <NA> 44 Inactive #> 3854 2021 <NA> FB <NA> 49 Inactive #> 3855 2021 <NA> FB <NA> 47 Inactive #> 3856 2021 <NA> FB <NA> 30 Inactive #> 3857 2021 <NA> FB <NA> 40 Inactive #> 3858 2021 <NA> FB <NA> 45 Inactive #> 3859 2021 <NA> FB <NA> 36 Inactive #> 3860 2021 <NA> FB <NA> 40 Inactive #> 3861 2021 <NA> FB <NA> 32 Active #> 3862 2021 <NA> FB <NA> NA Inactive #> 3863 2021 <NA> FB FB NA Inactive #> 3864 2021 <NA> FB <NA> 45 Inactive #> 3865 2021 <NA> FB <NA> 48 Inactive #> 3866 2021 <NA> FB <NA> 42 Active #> 3867 2021 <NA> FB <NA> 46 Inactive #> 3868 2021 <NA> FB <NA> 22 Inactive #> 3869 2021 <NA> FB RB 35 Inactive #> 3870 2021 <NA> FB <NA> 33 Active #> 3871 2021 <NA> FB <NA> 42 Injured Reserve #> 3872 2021 <NA> FB <NA> NA Inactive #> 3873 2021 <NA> FB <NA> 27 Inactive #> 3874 2021 <NA> FB <NA> 46 Active #> 3875 2021 <NA> FB <NA> 40 Inactive #> 3876 2021 <NA> FB <NA> 43 Inactive #> 3877 2021 <NA> FB <NA> 75 Inactive #> 3878 2021 <NA> FS <NA> 29 Active #> 3879 2021 <NA> FS <NA> 35 Inactive #> 3880 2021 <NA> FS <NA> 41 Inactive #> 3881 2021 <NA> FS <NA> 47 Inactive #> 3882 2021 <NA> FS <NA> 23 Active #> 3883 2021 <NA> FS <NA> 47 Inactive #> 3884 2021 <NA> FS <NA> 45 Inactive #> 3885 2021 <NA> FS <NA> 38 Inactive #> 3886 2021 <NA> FS <NA> 28 Inactive #> 3887 2021 <NA> FS <NA> NA Inactive #> 3888 2021 <NA> FS <NA> 31 Inactive #> 3889 2021 <NA> FS <NA> 41 Inactive #> 3890 2021 <NA> FS <NA> 31 Inactive #> 3891 2021 <NA> FS SS 35 Active #> 3892 2021 <NA> FS <NA> 28 Active #> 3893 2021 <NA> FS <NA> 33 Inactive #> 3894 2021 <NA> FS <NA> 39 Inactive #> 3895 2021 <NA> FS FS 42 Active #> 3896 2021 <NA> FS <NA> 23 Inactive #> 3897 2021 <NA> FS <NA> 35 Inactive #> 3898 2021 <NA> FS <NA> 36 Active #> 3899 2021 <NA> FS <NA> 28 Active #> 3900 2021 <NA> FS <NA> 20 Inactive #> 3901 2021 <NA> FS <NA> 24 Active #> 3902 2021 <NA> FS FS 29 Active #> 3903 2021 <NA> FS <NA> 41 Inactive #> 3904 2021 <NA> FS FS 27 Active #> 3905 2021 <NA> FS <NA> 46 Inactive #> 3906 2021 <NA> FS <NA> 35 Inactive #> 3907 2021 <NA> FS <NA> 25 Inactive #> 3908 2021 <NA> FS <NA> 24 Active #> 3909 2021 <NA> FS <NA> 31 Active #> 3910 2021 <NA> FS FS NA Inactive #> 3911 2021 <NA> FS <NA> NA Inactive #> 3912 2021 <NA> FS <NA> 45 Active #> 3913 2021 <NA> FS <NA> 40 Inactive #> 3914 2021 <NA> FS FS NA Inactive #> 3915 2021 <NA> FS <NA> 45 Inactive #> 3916 2021 <NA> FS FS 41 Active #> 3917 2021 <NA> FS <NA> 46 Injured Reserve #> 3918 2021 <NA> FS <NA> 21 Active #> 3919 2021 <NA> FS <NA> 27 Active #> 3920 2021 <NA> FS FS NA Inactive #> 3921 2021 <NA> FS <NA> 38 Active #> 3922 2021 <NA> FS <NA> 32 Active #> 3923 2021 <NA> FS <NA> 39 Inactive #> 3924 2021 <NA> FS <NA> 27 Active #> 3925 2021 <NA> FS <NA> 34 Active #> 3926 2021 <NA> FS <NA> 30 Inactive #> 3927 2021 <NA> FS <NA> 46 Inactive #> 3928 2021 <NA> FS <NA> 37 Inactive #> 3929 2021 <NA> FS SS 20 Active #> 3930 2021 <NA> FS <NA> 36 Inactive #> 3931 2021 <NA> FS <NA> 47 Inactive #> 3932 2021 <NA> FS <NA> 29 Inactive #> 3933 2021 <NA> FS <NA> 29 Inactive #> 3934 2021 <NA> FS FS 29 Inactive #> 3935 2021 <NA> FS <NA> 43 Inactive #> 3936 2021 <NA> FS <NA> 21 Inactive #> 3937 2021 <NA> FS <NA> 38 Active #> 3938 2021 <NA> FS FS NA Inactive #> 3939 2021 <NA> FS <NA> 34 Inactive #> 3940 2021 <NA> FS <NA> 41 Inactive #> 3941 2021 <NA> FS <NA> 35 Inactive #> 3942 2021 <NA> G <NA> 66 Inactive #> 3943 2021 <NA> G <NA> 66 Inactive #> 3944 2021 <NA> G <NA> 72 Active #> 3945 2021 <NA> G <NA> 74 Inactive #> 3946 2021 <NA> G <NA> 70 Active #> 3947 2021 <NA> G <NA> 60 Inactive #> 3948 2021 <NA> G <NA> 65 Inactive #> 3949 2021 <NA> G <NA> 68 Inactive #> 3950 2021 <NA> G <NA> 61 Inactive #> 3951 2021 <NA> G RG 68 Active #> 3952 2021 <NA> G <NA> 60 Inactive #> 3953 2021 <NA> G <NA> 69 Inactive #> 3954 2021 <NA> G <NA> 60 Inactive #> 3955 2021 <NA> G <NA> NA Inactive #> 3956 2021 <NA> G RG 78 Inactive #> 3957 2021 <NA> G <NA> 68 Active #> 3958 2021 <NA> G <NA> 66 Inactive #> 3959 2021 <NA> G LG NA Inactive #> 3960 2021 <NA> G <NA> 65 Active #> 3961 2021 <NA> G LG 62 Inactive #> 3962 2021 <NA> G LG 70 Inactive #> 3963 2021 <NA> G <NA> 66 Inactive #> 3964 2021 <NA> G <NA> 68 Inactive #> 3965 2021 <NA> G <NA> 74 Active #> 3966 2021 <NA> G LG 73 Active #> 3967 2021 <NA> G RG NA Inactive #> 3968 2021 <NA> G <NA> 63 Inactive #> 3969 2021 <NA> G <NA> 69 Active #> 3970 2021 <NA> G <NA> 63 Inactive #> 3971 2021 <NA> G <NA> 63 Inactive #> 3972 2021 <NA> G <NA> 75 Inactive #> 3973 2021 <NA> G <NA> 67 Inactive #> 3974 2021 <NA> G <NA> 74 Inactive #> 3975 2021 <NA> G <NA> 61 Inactive #> 3976 2021 <NA> G <NA> 74 Active #> 3977 2021 <NA> G <NA> 63 Inactive #> 3978 2021 <NA> G <NA> 63 Inactive #> 3979 2021 <NA> G <NA> 62 Active #> 3980 2021 <NA> G <NA> 65 Active #> 3981 2021 <NA> G RG 72 Inactive #> 3982 2021 <NA> G <NA> 65 Active #> 3983 2021 <NA> G <NA> NA Inactive #> 3984 2021 <NA> G <NA> 69 Inactive #> 3985 2021 <NA> G LG 77 Active #> 3986 2021 <NA> G <NA> 66 Inactive #> 3987 2021 <NA> G <NA> 61 Inactive #> 3988 2021 <NA> G <NA> 62 Active #> 3989 2021 <NA> G <NA> 68 Inactive #> 3990 2021 <NA> G <NA> 66 Inactive #> 3991 2021 <NA> G <NA> 70 Inactive #> 3992 2021 <NA> G <NA> 67 Inactive #> 3993 2021 <NA> G <NA> 64 Inactive #> 3994 2021 <NA> G <NA> 62 Inactive #> 3995 2021 <NA> G <NA> 62 Inactive #> 3996 2021 <NA> G <NA> 67 Active #> 3997 2021 <NA> G <NA> 68 Active #> 3998 2021 <NA> G <NA> 71 Injured Reserve #> 3999 2021 <NA> G <NA> 79 Inactive #> 4000 2021 <NA> G <NA> 67 Inactive #> 4001 2021 <NA> G <NA> 68 Active #> 4002 2021 <NA> G <NA> 60 Inactive #> 4003 2021 <NA> G RT 71 Active #> 4004 2021 <NA> G <NA> 66 Active #> 4005 2021 <NA> G <NA> 73 Inactive #> 4006 2021 <NA> G LG 63 Inactive #> 4007 2021 <NA> G <NA> NA Inactive #> 4008 2021 <NA> G <NA> 78 Inactive #> 4009 2021 <NA> G <NA> 65 Active #> 4010 2021 <NA> G <NA> 79 Inactive #> 4011 2021 <NA> G <NA> 72 Inactive #> 4012 2021 <NA> G <NA> 70 Inactive #> 4013 2021 <NA> G LG 66 Active #> 4014 2021 <NA> G <NA> 60 Inactive #> 4015 2021 <NA> G RG 64 Active #> 4016 2021 <NA> G <NA> 61 Inactive #> 4017 2021 <NA> G <NA> 67 Inactive #> 4018 2021 <NA> G <NA> 64 Inactive #> 4019 2021 <NA> G <NA> 78 Inactive #> 4020 2021 <NA> G LG 69 Active #> 4021 2021 <NA> G <NA> 60 Inactive #> 4022 2021 <NA> G <NA> 78 Inactive #> 4023 2021 <NA> G <NA> 63 Inactive #> 4024 2021 <NA> G RG 67 Active #> 4025 2021 <NA> G <NA> 66 Inactive #> 4026 2021 <NA> G <NA> 62 Inactive #> 4027 2021 <NA> G <NA> 66 Inactive #> 4028 2021 <NA> G <NA> 61 Inactive #> 4029 2021 <NA> G <NA> 76 Inactive #> 4030 2021 <NA> G <NA> 70 Inactive #> 4031 2021 <NA> G <NA> NA Inactive #> 4032 2021 <NA> G C 66 Active #> 4033 2021 <NA> G LG NA Inactive #> 4034 2021 <NA> G <NA> NA Inactive #> 4035 2021 <NA> G <NA> 60 Inactive #> 4036 2021 <NA> G <NA> 64 Active #> 4037 2021 <NA> G <NA> NA Inactive #> 4038 2021 <NA> G <NA> NA Inactive #> 4039 2021 <NA> G <NA> 68 Active #> 4040 2021 <NA> G <NA> 74 Inactive #> 4041 2021 <NA> G <NA> 79 Inactive #> 4042 2021 <NA> G <NA> 76 Active #> 4043 2021 <NA> G LG 66 Inactive #> 4044 2021 <NA> G <NA> 65 Inactive #> 4045 2021 <NA> G RG 73 Active #> 4046 2021 <NA> G <NA> 67 Inactive #> 4047 2021 <NA> G <NA> 74 Inactive #> 4048 2021 <NA> G LG NA Inactive #> 4049 2021 <NA> G <NA> 73 Active #> 4050 2021 <NA> G <NA> 63 Inactive #> 4051 2021 <NA> G <NA> 73 Active #> 4052 2021 <NA> G <NA> 71 Active #> 4053 2021 <NA> G <NA> 77 Active #> 4054 2021 <NA> G <NA> 67 Inactive #> 4055 2021 <NA> G <NA> NA Inactive #> 4056 2021 <NA> G <NA> 64 Active #> 4057 2021 <NA> G <NA> 68 Inactive #> 4058 2021 <NA> G <NA> 68 Inactive #> 4059 2021 <NA> G <NA> 66 Inactive #> 4060 2021 <NA> G <NA> 61 Inactive #> 4061 2021 <NA> G LG NA Inactive #> 4062 2021 <NA> G <NA> 69 Inactive #> 4063 2021 <NA> G LG 79 Active #> 4064 2021 <NA> G <NA> 63 Inactive #> 4065 2021 <NA> G <NA> 67 Inactive #> 4066 2021 <NA> G RG 62 Active #> 4067 2021 <NA> G RG 63 Injured Reserve #> 4068 2021 <NA> G <NA> 67 Inactive #> 4069 2021 <NA> G <NA> 68 Inactive #> 4070 2021 <NA> G <NA> 68 Inactive #> 4071 2021 <NA> ILB RILB NA Inactive #> 4072 2021 <NA> ILB <NA> 96 Inactive #> 4073 2021 <NA> ILB <NA> 45 Inactive #> 4074 2021 <NA> ILB <NA> NA Inactive #> 4075 2021 <NA> ILB <NA> 41 Inactive #> 4076 2021 <NA> ILB <NA> 53 Inactive #> 4077 2021 <NA> ILB <NA> NA Inactive #> 4078 2021 <NA> ILB <NA> 41 Inactive #> 4079 2021 <NA> ILB <NA> 55 Inactive #> 4080 2021 <NA> ILB <NA> 58 Inactive #> 4081 2021 <NA> ILB <NA> 50 Inactive #> 4082 2021 <NA> ILB <NA> 52 Inactive #> 4083 2021 <NA> ILB <NA> 59 Inactive #> 4084 2021 <NA> ILB <NA> NA Inactive #> 4085 2021 <NA> ILB <NA> 52 Inactive #> 4086 2021 <NA> ILB <NA> 41 Inactive #> 4087 2021 <NA> ILB <NA> 46 Inactive #> 4088 2021 <NA> ILB <NA> 46 Inactive #> 4089 2021 <NA> ILB <NA> NA Inactive #> 4090 2021 <NA> ILB <NA> 53 Inactive #> 4091 2021 <NA> ILB <NA> 33 Inactive #> 4092 2021 <NA> ILB <NA> 99 Inactive #> 4093 2021 <NA> ILB <NA> 48 Inactive #> 4094 2021 <NA> ILB <NA> 44 Inactive #> 4095 2021 <NA> ILB <NA> 49 Inactive #> 4096 2021 <NA> ILB <NA> 51 Inactive #> 4097 2021 <NA> ILB <NA> 60 Inactive #> 4098 2021 <NA> ILB <NA> 59 Inactive #> 4099 2021 <NA> ILB RILB NA Inactive #> 4100 2021 <NA> ILB <NA> 50 Inactive #> 4101 2021 <NA> ILB <NA> 46 Inactive #> 4102 2021 <NA> ILB <NA> 49 Inactive #> 4103 2021 <NA> ILB <NA> 46 Inactive #> 4104 2021 <NA> ILB <NA> 52 Inactive #> 4105 2021 <NA> ILB <NA> 59 Inactive #> 4106 2021 <NA> ILB LILB NA Inactive #> 4107 2021 <NA> ILB <NA> 48 Inactive #> 4108 2021 <NA> ILB <NA> NA Inactive #> 4109 2021 <NA> ILB <NA> 44 Inactive #> 4110 2021 <NA> ILB <NA> 45 Inactive #> 4111 2021 <NA> ILB <NA> 43 Inactive #> 4112 2021 <NA> ILB <NA> NA Inactive #> 4113 2021 <NA> ILB <NA> NA Inactive #> 4114 2021 <NA> ILB <NA> NA Inactive #> 4115 2021 <NA> ILB WILL NA Inactive #> 4116 2021 <NA> ILB <NA> 55 Inactive #> 4117 2021 <NA> K <NA> 11 Active #> 4118 2021 <NA> K <NA> 6 Inactive #> 4119 2021 <NA> K <NA> 5 Active #> 4120 2021 <NA> K <NA> 4 Active #> 4121 2021 <NA> K <NA> 5 Inactive #> 4122 2021 <NA> K <NA> 2 Inactive #> 4123 2021 <NA> K <NA> 3 Active #> 4124 2021 <NA> K <NA> 1 Inactive #> 4125 2021 <NA> K K 1 Active #> 4126 2021 <NA> K <NA> 9 Inactive #> 4127 2021 <NA> K K 1 Inactive #> 4128 2021 <NA> K <NA> 6 Active #> 4129 2021 <NA> K <NA> 9 Inactive #> 4130 2021 <NA> K <NA> 2 Inactive #> 4131 2021 <NA> K <NA> 4 Active #> 4132 2021 <NA> K <NA> 7 Active #> 4133 2021 <NA> K <NA> 4 Inactive #> 4134 2021 <NA> K <NA> 3 Inactive #> 4135 2021 <NA> K <NA> 3 Active #> 4136 2021 <NA> K <NA> 9 Inactive #> 4137 2021 <NA> LB <NA> 44 Inactive #> 4138 2021 <NA> LB ROLB 48 Inactive #> 4139 2021 <NA> LB WILL 51 Active #> 4140 2021 <NA> LB <NA> 59 Injured Reserve #> 4141 2021 <NA> LB <NA> 55 Active #> 4142 2021 <NA> LB <NA> 52 Active #> 4143 2021 <NA> LB RILB 48 Active #> 4144 2021 <NA> LB SAM 53 Inactive #> 4145 2021 <NA> LB MLB 52 Active #> 4146 2021 <NA> LB <NA> 50 Active #> 4147 2021 <NA> LB <NA> 55 Active #> 4148 2021 <NA> LB <NA> 57 Inactive #> 4149 2021 <NA> LB <NA> 54 Active #> 4150 2021 <NA> LB <NA> 51 Active #> 4151 2021 <NA> LB <NA> 59 Active #> 4152 2021 <NA> LB <NA> 50 Inactive #> 4153 2021 <NA> LB RILB 52 Active #> 4154 2021 <NA> LB <NA> 49 Injured Reserve #> 4155 2021 <NA> LB RILB 45 Active #> 4156 2021 <NA> LB LILB 51 Inactive #> 4157 2021 <NA> LB <NA> 52 Active #> 4158 2021 <NA> LB <NA> 48 Inactive #> 4159 2021 <NA> LB <NA> 58 Active #> 4160 2021 <NA> LB <NA> 54 Active #> 4161 2021 <NA> LB <NA> 57 Active #> 4162 2021 <NA> LB <NA> 47 Inactive #> 4163 2021 <NA> LB <NA> 50 Active #> 4164 2021 <NA> LB <NA> 56 Injured Reserve #> 4165 2021 <NA> LB ILB 52 Active #> 4166 2021 <NA> LB RILB 42 Inactive #> full_name first_name last_name birth_date #> 1 Michal Menet Michal Menet 1997-08-08 #> 2 Marcus Henry Marcus Henry 1993-02-11 #> 3 Rodney Hudson Rodney Hudson 1989-07-12 #> 4 Byron Murphy Byron Murphy 1998-01-18 #> 5 Malcolm Butler Malcolm Butler 1990-03-02 #> 6 Picasso Nelson Picasso Nelson 1996-04-15 #> 7 Jace Whittaker Jace Whittaker 1995-07-16 #> 8 Daryl Worley Daryl Worley 1995-02-22 #> 9 Darqueze Dennard Darqueze Dennard 1991-10-10 #> 10 Marco Wilson Marco Wilson 1999-03-03 #> 11 Luq Barcoo Luq Barcoo 1998-07-27 #> 12 Robert Alford Robert Alford 1988-11-01 #> 13 Tae Hayes Tae Hayes 1997-08-19 #> 14 Tay Gowan Tay Gowan 1998-01-07 #> 15 James Wiggins James Wiggins <NA> #> 16 Jalen Thompson Jalen Thompson 1998-07-18 #> 17 Charles Washington Charles Washington 1993-03-10 #> 18 Shawn Williams Shawn Williams 1991-05-13 #> 19 Deionte Thompson Deionte Thompson 1997-02-11 #> 20 Chris Banjo Chris Banjo 1990-02-26 #> 21 Victor Dimukeje Victor Dimukeje 1999-11-18 #> 22 Moubarak Djeri Moubarak Djeri <NA> #> 23 Zach Allen Zach Allen 1997-08-20 #> 24 Jordan Phillips Jordan Phillips 1992-09-21 #> 25 Margus Hunt Margus Hunt 1987-07-14 #> 26 J.J. Watt J.J. Watt 1989-03-22 #> 27 Ryan Bee Ryan Bee 1995-11-12 #> 28 Michael Dogbe Michael Dogbe 1996-05-05 #> 29 Josh Mauro Josh Mauro 1991-02-17 #> 30 Corey Peters Corey Peters 1988-06-08 #> 31 David Parry David Parry 1992-03-07 #> 32 Leki Fotu Leki Fotu 1998-08-23 #> 33 Xavier Williams Xavier Williams 1992-01-18 #> 34 Rashard Lawrence Rashard Lawrence 1998-09-27 #> 35 Jack Crawford Jack Crawford 1988-09-07 #> 36 Darius Kilgo Darius Kilgo 1991-12-14 #> 37 Austin Ramesh Austin Ramesh <NA> #> 38 Kentrell Brice Kentrell Brice 1994-08-11 #> 39 T.J. Ward T.J. Ward 1986-12-12 #> 40 Matt Prater Matt Prater 1984-08-10 #> 41 Dennis Gardeck Dennis Gardeck 1994-08-09 #> 42 Devon Kennard Devon Kennard 1991-06-24 #> 43 Stephone Anthony Stephone Anthony 1992-07-28 #> 44 Ezekiel Turner Ezekiel Turner 1996-06-09 #> 45 Kylie Fitts Kylie Fitts 1994-10-11 #> 46 Jordan Hicks Jordan Hicks 1992-06-27 #> 47 Donald Rutledge Donald Rutledge 1997-05-22 #> 48 Tanner Vallejo Tanner Vallejo 1994-12-16 #> 49 Markus Golden Markus Golden 1991-03-13 #> 50 Jamell Garcia-Williams Jamell Garcia-Williams 1997-01-24 #> 51 Reggie Walker Reggie Walker 1986-12-15 #> 52 Chandler Jones Chandler Jones 1990-02-27 #> 53 Reggie Walker Reggie Walker 1996-04-22 #> 54 Zaven Collins Zaven Collins 1999-05-19 #> 55 Bryson Young Bryson Young 1998-03-26 #> 56 Terrance Smith Terrance Smith 1993-05-03 #> 57 Evan Weaver Evan Weaver 1998-08-11 #> 58 Isaiah Simmons Isaiah Simmons 1998-07-26 #> 59 Drew Williams Drew Williams 1994-06-17 #> 60 Aaron Brewer Aaron Brewer 1990-07-05 #> 61 Justin Pugh Justin Pugh 1990-08-15 #> 62 Max Garcia Max Garcia 1991-11-09 #> 63 Cam Murray Cam Murray 1997-11-06 #> 64 Josh Jones Josh Jones 1997-06-22 #> 65 Branden Bowen Branden Bowen 1996-09-12 #> 66 Deion Calhoun Deion Calhoun 1996-02-20 #> 67 Austin Olsen Austin Olsen <NA> #> 68 Sean Harlow Sean Harlow 1995-03-28 #> 69 Brian Winters Brian Winters 1991-07-10 #> 70 Kelvin Beachum Kelvin Beachum 1989-06-08 #> 71 Joshua Miles Joshua Miles 1996-01-04 #> 72 Justin Murray Justin Murray 1993-04-19 #> 73 Marcus Gilbert Marcus Gilbert 1988-02-15 #> 74 Koda Martin Koda Martin 1995-08-21 #> 75 D.J. Humphries D.J. Humphries 1993-12-28 #> 76 Ryan Winslow Ryan Winslow 1994-04-30 #> 77 Richie Leone Richie Leone 1992-03-10 #> 78 Tyler Newsome Tyler Newsome 1995-07-14 #> 79 Andy Lee Andy Lee 1982-08-11 #> 80 Colt McCoy Colt McCoy 1986-09-05 #> 81 Cole McDonald Cole McDonald 1998-05-20 #> 82 Kyler Murray Kyler Murray 1997-08-07 #> 83 Chris Streveler Chris Streveler 1995-01-06 #> 84 Chase Edmonds Chase Edmonds 1996-04-13 #> 85 Khalfani Muhammad Khalfani Muhammad 1994-09-26 #> 86 Eno Benjamin Eno Benjamin 1999-04-13 #> 87 James Conner James Conner 1995-05-05 #> 88 Tavien Feaster Tavien Feaster 1997-12-31 #> 89 Jonathan Ward Jonathan Ward 1997-09-30 #> 90 Josh Shaw Josh Shaw 1992-03-27 #> 91 Budda Baker Budda Baker 1996-01-10 #> 92 Ross Travis Ross Travis 1993-01-09 #> 93 Darrell Daniels Darrell Daniels 1994-11-22 #> 94 Ian Bunting Ian Bunting 1996-02-10 #> 95 Justin Johnson Justin Johnson 1996-11-08 #> 96 Bernhard Seikovits Bernhard Seikovits 1997-07-24 #> 97 Jerome Washington Jerome Washington <NA> #> 98 Maxx Williams Maxx Williams 1994-04-12 #> 99 Bruno Labelle Bruno Labelle 1997-06-03 #> 100 Demetrius Harris Demetrius Harris 1991-07-29 #> 101 A.J. Green A.J. Green 1988-07-31 #> 102 Greg Dortch Greg Dortch 1998-05-29 #> 103 Antoine Wesley Antoine Wesley 1997-10-22 #> 104 KeeSean Johnson KeeSean Johnson 1996-10-09 #> 105 Isaac Whitney Isaac Whitney 1994-06-22 #> 106 Andre Baccellia Andre Baccellia 1997-01-07 #> 107 Rondale Moore Rondale Moore 2000-06-09 #> 108 Jaron Brown Jaron Brown 1990-01-08 #> 109 Andy Isabella Andy Isabella 1996-11-18 #> 110 DeAndre Hopkins DeAndre Hopkins 1992-06-06 #> 111 A.J. Richardson A.J. Richardson 1995-06-02 #> 112 Aleva Hifo Aleva Hifo 1997-12-23 #> 113 Christian Kirk Christian Kirk 1996-11-18 #> 114 Ryan Langford Ryan Langford 1993-06-10 #> 115 Drew Dalman Drew Dalman 1998-10-15 #> 116 Josh Andrews Josh Andrews 1991-06-21 #> 117 Cam Keizur Cam Keizur 1994-01-17 #> 118 Matt Hennessy Matt Hennessy 1997-11-17 #> 119 Darren Hall Darren Hall 2000-05-02 #> 120 Fabian Moreau Fabian Moreau 1994-04-09 #> 121 Chris Williamson Chris Williamson 1997-05-19 #> 122 Taylor Reynolds Taylor Reynolds 1994-02-05 #> 123 Avery Williams Avery Williams 1998-07-15 #> 124 Heath Harding Heath Harding <NA> #> 125 A.J. Terrell A.J. Terrell 1998-09-23 #> 126 Isaiah Oliver Isaiah Oliver 1996-09-30 #> 127 Dwayne Johnson Dwayne Johnson 1997-03-11 #> 128 JR Pace JR Pace 1998-10-06 #> 129 Delrick Abrams Delrick Abrams 1997-04-06 #> 130 T.J. Green T.J. Green 1995-03-15 #> 131 Duron Harmon Duron Harmon 1991-01-24 #> 132 Joseph Putu Joseph Putu <NA> #> 133 Marcus Murphy Marcus Murphy <NA> #> 134 Kendall Sheffield Kendall Sheffield 1996-05-30 #> 135 Erik Harris Erik Harris 1990-04-02 #> 136 Richie Grant Richie Grant 1997-11-09 #> 137 Steven Means Steven Means 1990-09-16 #> 138 Jonathan Bullard Jonathan Bullard 1993-10-22 #> 139 John Cominsky John Cominsky 1995-11-22 #> 140 Marlon Davidson Marlon Davidson 1998-05-11 #> 141 Eli Howard Eli Howard <NA> #> 142 Adetokunbo Ogundeji Adetokunbo Ogundeji 1998-10-09 #> 143 Deadrin Senat Deadrin Senat 1994-07-22 #> 144 Olive Sagapolu Olive Sagapolu 1997-02-16 #> 145 Eli Ankou Eli Ankou 1994-06-08 #> 146 Chris Slayton Chris Slayton 1996-08-01 #> 147 John Atkins John Atkins 1992-12-21 #> 148 Zac Dawe Zac Dawe 1995-07-27 #> 149 Grady Jarrett Grady Jarrett 1993-04-28 #> 150 Tyeler Davison Tyeler Davison 1992-09-23 #> 151 Ta'Quon Graham Ta'Quon Graham 1998-12-01 #> 152 John Raine John Raine 1998-03-27 #> 153 Keith Smith Keith Smith 1992-04-08 #> 154 Younghoe Koo Younghoe Koo 1994-08-03 #> 155 Mykal Walker Mykal Walker 1997-08-28 #> 156 Dorian Etheridge Dorian Etheridge 1998-11-21 #> 157 Jeff Holland Jeff Holland 1995-09-27 #> 158 Dante Fowler Dante Fowler 1994-08-03 #> 159 Deion Jones Deion Jones 1994-11-04 #> 160 Jacob Tuioti-Mariner Jacob Tuioti-Mariner 1996-07-25 #> 161 Erroll Thompson Erroll Thompson 1997-10-01 #> 162 Shareef Miller Shareef Miller 1997-03-14 #> 163 George Obinna George Obinna 1996-08-23 #> 164 Tuzar Skipper Tuzar Skipper 1995-06-05 #> 165 Alani Pututau Alani Pututau <NA> #> 166 Emmanuel Ellerbee Emmanuel Ellerbee 1996-11-20 #> 167 Jake Carlock Jake Carlock 1996-10-02 #> 168 Foyesade Oluokun Foyesade Oluokun 1995-08-02 #> 169 Kobe Jones Kobe Jones 1998-05-10 #> 170 Brandon Copeland Brandon Copeland 1991-07-02 #> 171 Josh Harris Josh Harris 1989-04-27 #> 172 Willie Beavers Willie Beavers 1993-10-02 #> 173 Chris Lindstrom Chris Lindstrom 1997-02-28 #> 174 Bryce Hargrove Bryce Hargrove 1997-10-12 #> 175 Jack Batho Jack Batho 1996-12-18 #> 176 Jason Spriggs Jason Spriggs 1994-05-17 #> 177 William Sweet William Sweet 1997-04-29 #> 178 Joe Sculthorpe Joe Sculthorpe 1998-06-11 #> 179 Ryan Neuzil Ryan Neuzil 1997-07-31 #> 180 Sam Jones Sam Jones 1996-02-21 #> 181 Willie Wright Willie Wright 1996-02-25 #> 182 Kion Smith Kion Smith <NA> #> 183 Jalen Mayfield Jalen Mayfield 2000-05-23 #> 184 Matt Gono Matt Gono 1996-05-10 #> 185 Jake Matthews Jake Matthews 1992-02-11 #> 186 Kaleb McGary Kaleb McGary 1995-02-22 #> 187 Cameron Nizialek Cameron Nizialek 1995-03-10 #> 188 Sterling Hofrichter Sterling Hofrichter 1996-12-05 #> 189 Dom Maggio Dom Maggio 1998-04-23 #> 190 Matt Ryan Matt Ryan 1985-05-17 #> 191 Feleipe Franks Feleipe Franks 1997-12-22 #> 192 AJ McCarron AJ McCarron 1990-09-13 #> 193 Josh Rosen Josh Rosen 1997-02-10 #> 194 Caleb Huntley Caleb Huntley 1998-09-15 #> 195 Javian Hawkins Javian Hawkins 1999-11-03 #> 196 D'Onta Foreman D'Onta Foreman 1996-04-24 #> 197 Mike Davis Mike Davis 1993-02-19 #> 198 Cordarrelle Patterson Cordarrelle Patterson 1991-03-17 #> 199 Qadree Ollison Qadree Ollison 1996-09-08 #> 200 J.J. Wilcox J.J. Wilcox 1991-02-14 #> 201 Terrance Parks Terrance Parks 1990-04-14 #> 202 Jaylinn Hawkins Jaylinn Hawkins 1997-08-27 #> 203 Kyle Pitts Kyle Pitts 2000-10-06 #> 204 Parker Hesse Parker Hesse 1995-05-26 #> 205 Ryan Becker Ryan Becker 1997-12-23 #> 206 David Wells David Wells 1995-05-02 #> 207 Hayden Hurst Hayden Hurst 1993-08-24 #> 208 Jaeden Graham Jaeden Graham 1995-10-10 #> 209 Lee Smith Lee Smith 1987-11-21 #> 210 Calvin Ridley Calvin Ridley 1994-12-20 #> 211 Olamide Zaccheaus Olamide Zaccheaus 1997-07-23 #> 212 Tajae Sharpe Tajae Sharpe 1994-12-23 #> 213 Juwan Green Juwan Green 1998-07-01 #> 214 Garrett Scantling Garrett Scantling <NA> #> 215 Chris Rowland Chris Rowland 1997-12-19 #> 216 Frank Darby Frank Darby 1997-09-08 #> 217 J'Mon Moore J'Mon Moore 1995-05-23 #> 218 Christian Blake Christian Blake 1996-06-08 #> 219 Russell Gage Russell Gage 1996-01-22 #> 220 Antonio Nunn Antonio Nunn 1996-09-14 #> 221 Jeff Badet Jeff Badet 1994-09-02 #> 222 Trevor Davis Trevor Davis 1993-07-04 #> 223 Austin Trammell Austin Trammell 1998-07-04 #> 224 Trystan Colon Trystan Colon 1998-03-23 #> 225 Marcus Peters Marcus Peters 1993-01-09 #> 226 Tavon Young Tavon Young 1994-03-14 #> 227 Jimmy Smith Jimmy Smith 1988-07-26 #> 228 Khalil Dorsey Khalil Dorsey 1998-03-31 #> 229 Iman Marshall Iman Marshall 1997-02-27 #> 230 Marlon Humphrey Marlon Humphrey 1996-07-08 #> 231 Anthony Averett Anthony Averett 1994-11-30 #> 232 Chris Westry Chris Westry 1997-07-10 #> 233 Shaun Wade Shaun Wade 1998-09-15 #> 234 Nigel Warrior Nigel Warrior 1997-12-14 #> 235 Ar'Darius Washington Ar'Darius Washington 1999-11-02 #> 236 Brandon Stephens Brandon Stephens 1997-12-29 #> 237 Jordan Richards Jordan Richards 1993-01-23 #> 238 Anthony Levine Anthony Levine 1987-03-27 #> 239 DeShon Elliott DeShon Elliott 1997-04-21 #> 240 Chuck Clark Chuck Clark 1995-04-19 #> 241 Geno Stone Geno Stone 1999-04-19 #> 242 Da'sean Downey Da'sean Downey <NA> #> 243 Chris Smith Chris Smith 1992-02-11 #> 244 Calais Campbell Calais Campbell 1986-09-01 #> 245 Jovan Swann Jovan Swann <NA> #> 246 Derek Wolfe Derek Wolfe 1990-02-24 #> 247 Justin Madubuike Justin Madubuike 1997-11-17 #> 248 Aaron Crawford Aaron Crawford 1997-11-04 #> 249 Broderick Washington Broderick Washington 1996-12-04 #> 250 Xavier Kelly Xavier Kelly 1997-10-02 #> 251 Kalil Morris Kalil Morris 1995-10-22 #> 252 Justin Ellis Justin Ellis 1990-12-27 #> 253 Tommy Bohanon Tommy Bohanon 1990-09-10 #> 254 Patrick Ricard Patrick Ricard 1994-05-27 #> 255 Daniel Henry Daniel Henry 1994-08-30 #> 256 C.J. Toogood C.J. Toogood 1997-03-29 #> 257 Sam Cooper Sam Cooper <NA> #> 258 Justin Tucker Justin Tucker 1989-11-21 #> 259 Jake Verity Jake Verity 1997-12-23 #> 260 Jayson Oweh Jayson Oweh 1998-12-15 #> 261 Daelin Hayes Daelin Hayes 1998-05-16 #> 262 Otaro Alaka Otaro Alaka 1996-05-18 #> 263 Kristian Welch Kristian Welch 1998-05-24 #> 264 Pernell McPhee Pernell McPhee 1988-12-17 #> 265 Patrick Queen Patrick Queen 1999-08-13 #> 266 Justin Houston Justin Houston 1989-01-12 #> 267 Jaylon Ferguson Jaylon Ferguson 1995-12-14 #> 268 Mason McKenrick Mason McKenrick <NA> #> 269 Tyus Bowser Tyus Bowser 1995-05-23 #> 270 Malik Harrison Malik Harrison 1998-03-05 #> 271 James Crawford James Crawford 1994-12-02 #> 272 L.J. Fort L.J. Fort 1990-01-03 #> 273 Chris Board Chris Board 1995-07-23 #> 274 Nick Moore Nick Moore 1992-12-09 #> 275 Brandon Williams Brandon Williams 1989-02-21 #> 276 Greg Mancz Greg Mancz 1992-04-23 #> 277 Ben Powers Ben Powers 1996-10-29 #> 278 Ben Bredeson Ben Bredeson 1999-02-20 #> 279 Kevin Zeitler Kevin Zeitler 1990-03-08 #> 280 Tyre Phillips Tyre Phillips 1997-01-29 #> 281 Ben Cleveland Ben Cleveland 1998-08-25 #> 282 Patrick Mekari Patrick Mekari 1997-08-13 #> 283 Bradley Bozeman Bradley Bozeman 1994-11-24 #> 284 Andre Smith Andre Smith 1987-01-25 #> 285 Adrian Ealy Adrian Ealy 1999-08-07 #> 286 Ronnie Stanley Ronnie Stanley 1994-03-18 #> 287 Foster Sarell Foster Sarell 1998-08-28 #> 288 Alejandro Villanueva Alejandro Villanueva 1988-09-22 #> 289 Michael Schofield Michael Schofield 1990-11-15 #> 290 Ja'Wuan James Ja'Wuan James 1992-06-03 #> 291 Johnny Townsend Johnny Townsend 1995-02-14 #> 292 Sam Koch Sam Koch 1982-08-13 #> 293 Zach Terrell Zach Terrell 1993-05-01 #> 294 Tyler Huntley Tyler Huntley 1998-02-03 #> 295 Lamar Jackson Lamar Jackson 1997-01-07 #> 296 Kenji Bahar Kenji Bahar <NA> #> 297 Aaron Bailey Aaron Bailey <NA> #> 298 Trace McSorley Trace McSorley 1995-08-23 #> 299 Ty'Son Williams Ty'Son Williams 1996-09-04 #> 300 Gus Edwards Gus Edwards 1995-04-13 #> 301 J.K. Dobbins J.K. Dobbins 1998-12-17 #> 302 Justice Hill Justice Hill 1997-11-14 #> 303 Nate McCrary Nate McCrary 1999-04-09 #> 304 Jacob Breeland Jacob Breeland 1996-09-20 #> 305 Ben Mason Ben Mason 1999-05-25 #> 306 Mark Andrews Mark Andrews 1995-09-06 #> 307 Tony Poljan Tony Poljan <NA> #> 308 Eli Wolf Eli Wolf 1997-11-03 #> 309 Josh Oliver Josh Oliver 1997-03-21 #> 310 Eric Tomlinson Eric Tomlinson 1992-04-22 #> 311 Nick Boyle Nick Boyle 1993-02-17 #> 312 Xavier Grimble Xavier Grimble 1992-09-22 #> 313 Barrett Burns Barrett Burns 1994-03-16 #> 314 Miles Boykin Miles Boykin 1996-10-12 #> 315 Sammy Watkins Sammy Watkins 1993-06-14 #> 316 James Proche James Proche 1996-09-21 #> 317 DeAndrew White DeAndrew White 1991-10-16 #> 318 Donte Sylencieux Donte Sylencieux <NA> #> 319 Marquise Brown Marquise Brown 1997-06-04 #> 320 Deon Cain Deon Cain 1996-08-09 #> 321 Michael Dereus Michael Dereus 1997-02-18 #> 322 Joe Horn Joe Horn <NA> #> 323 Jaylon Moore Jaylon Moore 1997-07-01 #> 324 De'Anthony Thomas De'Anthony Thomas 1993-01-05 #> 325 Siaosi Mariner Siaosi Mariner 1997-01-25 #> 326 Tylan Wallace Tylan Wallace 1999-05-13 #> 327 Devin Gray Devin Gray 1995-06-15 #> 328 Binjimen Victor Binjimen Victor 1997-01-15 #> 329 Rashod Bateman Rashod Bateman 1999-11-29 #> 330 Devin Duvernay Devin Duvernay 1997-09-12 #> 331 Mitch Morse Mitch Morse 1992-04-21 #> 332 Tre'Davious White Tre'Davious White 1995-01-16 #> 333 Tim Harris Tim Harris 1995-07-31 #> 334 Duke Thomas Duke Thomas 1994-05-21 #> 335 Dane Jackson Dane Jackson 1996-11-29 #> 336 Isiah Brown Isiah Brown 1998-04-25 #> 337 Nick McCloud Nick McCloud <NA> #> 338 Cameron Lewis Cameron Lewis 1997-04-13 #> 339 E.J. Gaines E.J. Gaines 1992-02-23 #> 340 Rachad Wildgoose Rachad Wildgoose 2000-01-01 #> 341 Levi Wallace Levi Wallace 1995-06-12 #> 342 Siran Neal Siran Neal 1994-08-04 #> 343 Olaijah Griffin Olaijah Griffin 1999-03-10 #> 344 Taron Johnson Taron Johnson 1996-07-27 #> 345 Damar Hamlin Damar Hamlin 1998-03-24 #> 346 Jaquan Johnson Jaquan Johnson 1995-11-13 #> 347 Micah Hyde Micah Hyde 1990-12-31 #> 348 Jordan Poyer Jordan Poyer 1991-04-25 #> 349 Tariq Thompson Tariq Thompson 1999-08-09 #> 350 Josh Thomas Josh Thomas 1996-11-19 #> 351 Carlos Basham Carlos Basham 1997-12-16 #> 352 Darryl Johnson Darryl Johnson 1997-04-04 #> 353 Jerry Hughes Jerry Hughes 1988-08-13 #> 354 Gregory Rousseau Gregory Rousseau 2000-04-05 #> 355 A.J. Epenesa A.J. Epenesa 1998-09-15 #> 356 Mike Love Mike Love 1994-01-22 #> 357 Mario Addison Mario Addison 1987-09-06 #> 358 Bryan Cox Bryan Cox 1994-06-25 #> 359 Efe Obada Efe Obada 1992-04-13 #> 360 Star Lotulelei Star Lotulelei 1989-12-20 #> 361 Nazair Jones Nazair Jones 1994-12-13 #> 362 Harrison Phillips Harrison Phillips 1996-01-25 #> 363 Brandin Bryant Brandin Bryant 1993-09-16 #> 364 Quindarius Thagard Quindarius Thagard 1995-12-05 #> 365 Vernon Butler Vernon Butler 1994-06-14 #> 366 Justin Zimmer Justin Zimmer 1992-10-23 #> 367 Ed Oliver Ed Oliver 1997-12-12 #> 368 Joey Ivie Joey Ivie 1995-01-22 #> 369 Treyvon Hester Treyvon Hester 1992-09-21 #> 370 Anthony Harrell Anthony Harrell 1993-03-15 #> 371 Tyler Bass Tyler Bass 1997-02-14 #> 372 Tremaine Edmunds Tremaine Edmunds 1998-05-02 #> 373 Andre Smith Andre Smith 1997-04-20 #> 374 Joe Giles-Harris Joe Giles-Harris 1997-04-01 #> 375 Mike Bell Mike Bell 1997-12-12 #> 376 Tyrell Adams Tyrell Adams 1992-04-11 #> 377 Ahmad Gooden Ahmad Gooden 1995-10-27 #> 378 Tyrel Dodson Tyrel Dodson 1998-06-25 #> 379 A.J. Klein A.J. Klein 1991-07-30 #> 380 Tyler Matakevich Tyler Matakevich 1992-12-22 #> 381 Marquel Lee Marquel Lee 1995-10-21 #> 382 Matt Milano Matt Milano 1994-07-28 #> 383 Reid Ferguson Reid Ferguson 1994-03-24 #> 384 Jon Feliciano Jon Feliciano 1992-02-10 #> 385 Jack Anderson Jack Anderson 1998-10-12 #> 386 Syrus Tuitele Syrus Tuitele <NA> #> 387 Steven Gonzalez Steven Gonzalez 1997-05-11 #> 388 Ike Boettger Ike Boettger 1994-10-05 #> 389 Forrest Lamp Forrest Lamp 1994-02-21 #> 390 Cody Ford Cody Ford 1996-12-28 #> 391 Daryl Williams Daryl Williams 1992-08-31 #> 392 Ryan Bates Ryan Bates 1997-02-14 #> 393 Jamil Douglas Jamil Douglas 1992-02-28 #> 394 Jordan Devey Jordan Devey 1988-01-11 #> 395 Trey Adams Trey Adams 1997-03-04 #> 396 Dion Dawkins Dion Dawkins 1994-04-26 #> 397 Spencer Brown Spencer Brown 1998-11-13 #> 398 Bobby Hart Bobby Hart 1994-08-21 #> 399 Tommy Doyle Tommy Doyle 1998-05-06 #> 400 Tyler Gauthier Tyler Gauthier 1997-06-29 #> 401 Matt Haack Matt Haack 1994-07-25 #> 402 Jake Fromm Jake Fromm 1998-06-30 #> 403 Mitchell Trubisky Mitchell Trubisky 1994-08-20 #> 404 Davis Webb Davis Webb 1995-01-22 #> 405 Josh Allen Josh Allen 1996-05-21 #> 406 Zack Moss Zack Moss 1997-12-15 #> 407 Matt Breida Matt Breida 1995-02-28 #> 408 Kerrith Whyte Kerrith Whyte 1996-10-31 #> 409 Taiwan Jones Taiwan Jones 1988-07-26 #> 410 Christian Wade Christian Wade 1991-05-15 #> 411 Antonio Williams Antonio Williams 1997-10-22 #> 412 Devin Singletary Devin Singletary 1997-09-03 #> 413 Victor Salako Victor Salako 1993-11-04 #> 414 Dawson Knox Dawson Knox 1996-11-04 #> 415 Nate Becker Nate Becker 1996-03-24 #> 416 Quintin Morris Quintin Morris 1999-01-21 #> 417 Reggie Gilliam Reggie Gilliam 1997-08-20 #> 418 Tommy Sweeney Tommy Sweeney 1995-07-01 #> 419 Bug Howard Bug Howard 1994-11-28 #> 420 Jacob Hollister Jacob Hollister 1993-11-18 #> 421 Duke Williams Duke Williams 1993-05-13 #> 422 Isaiah McKenzie Isaiah McKenzie 1995-04-09 #> 423 Tre Walker Tre Walker <NA> #> 424 Jake Kumerow Jake Kumerow 1992-02-17 #> 425 Stefon Diggs Stefon Diggs 1993-11-29 #> 426 Marquez Stevenson Marquez Stevenson 1998-03-26 #> 427 Tanner Gentry Tanner Gentry 1994-12-18 #> 428 Lance Lenoir Lance Lenoir 1995-02-09 #> 429 Cole Beasley Cole Beasley 1989-04-26 #> 430 Rico Gafford Rico Gafford 1996-05-23 #> 431 Emmanuel Sanders Emmanuel Sanders 1987-03-17 #> 432 Brandon Powell Brandon Powell 1996-09-12 #> 433 Gabriel Davis Gabriel Davis 1999-04-01 #> 434 Isaiah Hodgins Isaiah Hodgins 1998-10-21 #> 435 Matt Paradis Matt Paradis 1989-10-12 #> 436 Sam Tecklenburg Sam Tecklenburg 1997-01-31 #> 437 Jaycee Horn Jaycee Horn 1999-11-26 #> 438 Donte Jackson Donte Jackson 1995-11-08 #> 439 Rashaan Melvin Rashaan Melvin 1989-10-02 #> 440 Keith Taylor Keith Taylor 1998-11-20 #> 441 Trumaine Johnson Trumaine Johnson 1990-01-01 #> 442 Jalen Julius Jalen Julius 1996-08-19 #> 443 Troy Pride Troy Pride 1998-01-19 #> 444 Stantley Thomas-Oliver Stantley Thomas-Oliver 1998-06-04 #> 445 A.J. Bouye A.J. Bouye 1991-08-16 #> 446 Sam Franklin Sam Franklin 1996-02-02 #> 447 Kenny Robinson Kenny Robinson 1999-01-08 #> 448 Delano Hill Delano Hill 1995-11-26 #> 449 Juston Burris Juston Burris 1993-08-04 #> 450 Brian Cole Brian Cole 1997-04-03 #> 451 Myles Hartsfield Myles Hartsfield 1997-08-05 #> 452 Sean Chandler Sean Chandler 1996-04-27 #> 453 LaDarius Wiley LaDarius Wiley 1996-06-03 #> 454 Doug Middleton Doug Middleton 1993-09-25 #> 455 J.T. Ibe J.T. Ibe 1996-06-13 #> 456 Derrek Thomas Derrek Thomas 1995-04-25 #> 457 Morgan Fox Morgan Fox 1994-09-12 #> 458 Greg Roberts Greg Roberts 1996-03-21 #> 459 Marquis Haynes Marquis Haynes 1993-12-16 #> 460 Austin Larkin Austin Larkin 1995-04-06 #> 461 Frank Alexander Frank Alexander 1989-12-17 #> 462 Yetur Gross-Matos Yetur Gross-Matos 1998-02-26 #> 463 Frank Herron Frank Herron 1994-09-09 #> 464 Brian Burns Brian Burns 1998-04-23 #> 465 Kendall Donnerson Kendall Donnerson 1996-04-22 #> 466 Jonathan Wynn Jonathan Wynn 1995-09-21 #> 467 DaQuan Jones DaQuan Jones 1991-12-17 #> 468 Phil Hoskins Phil Hoskins 1997-01-02 #> 469 Derrick Brown Derrick Brown 1998-04-15 #> 470 Caraun Reid Caraun Reid 1991-11-23 #> 471 Daviyon Nixon Daviyon Nixon 1998-12-13 #> 472 Mike Panasiuk Mike Panasiuk 1997-10-13 #> 473 Walter Palmore Walter Palmore 1996-08-09 #> 474 Bravvion Roy Bravvion Roy 1997-10-18 #> 475 Mason Stokke Mason Stokke <NA> #> 476 Marquel Harrell Marquel Harrell 1997-07-18 #> 477 Mike Horton Mike Horton 1996-10-07 #> 478 Dominik Eberle Dominik Eberle 1996-07-04 #> 479 Joey Slye Joey Slye 1996-04-10 #> 480 Jordan Mack Jordan Mack 1998-02-07 #> 481 Luke Kuechly Luke Kuechly 1991-04-20 #> 482 Nate Hall Nate Hall 1996-04-06 #> 483 Haason Reddick Haason Reddick 1994-09-22 #> 484 Josh Bynes Josh Bynes 1989-08-24 #> 485 Frankie Luvu Frankie Luvu 1996-09-19 #> 486 Christian Miller Christian Miller 1996-06-19 #> 487 Julian Stanford Julian Stanford 1990-09-02 #> 488 Shaq Thompson Shaq Thompson 1994-04-21 #> 489 Denzel Perryman Denzel Perryman 1992-12-05 #> 490 Jermaine Carter Jermaine Carter 1995-01-14 #> 491 Clay Johnston Clay Johnston 1996-08-08 #> 492 Jonathan Celestin Jonathan Celestin 1995-11-21 #> 493 Paddy Fisher Paddy Fisher <NA> #> 494 Daniel Bituli Daniel Bituli 1997-12-27 #> 495 Jeremy Chinn Jeremy Chinn 1998-02-26 #> 496 J.J. Jansen J.J. Jansen 1986-01-20 #> 497 Thomas Fletcher Thomas Fletcher 1998-10-01 #> 498 Deonte Brown Deonte Brown 1998-01-15 #> 499 John Miller John Miller 1993-08-12 #> 500 Dennis Daley Dennis Daley 1996-08-07 #> 501 Cameron Erving Cameron Erving 1992-08-23 #> 502 Pat Elflein Pat Elflein 1994-07-06 #> 503 Aaron Monteiro Aaron Monteiro 1997-03-25 #> 504 Trenton Scott Trenton Scott 1994-01-25 #> 505 Taylor Moton Taylor Moton 1994-08-18 #> 506 Martez Ivey Martez Ivey 1995-07-25 #> 507 Matt Kaskey Matt Kaskey 1997-03-17 #> 508 Brady Christensen Brady Christensen 1996-09-27 #> 509 Oscar Draguicevich Oscar Draguicevich <NA> #> 510 Joseph Charlton Joseph Charlton 1997-04-07 #> 511 Phillip Walker Phillip Walker 1995-02-26 #> 512 Will Grier Will Grier 1995-04-03 #> 513 Sam Darnold Sam Darnold 1997-06-05 #> 514 Chuba Hubbard Chuba Hubbard 1999-06-11 #> 515 Reggie Bonnafon Reggie Bonnafon 1996-01-04 #> 516 Spencer Brown Spencer Brown 1998-02-28 #> 517 Trenton Cannon Trenton Cannon 1994-07-23 #> 518 Rodney Smith Rodney Smith 1996-02-28 #> 519 Christian McCaffrey Christian McCaffrey 1996-06-07 #> 520 Rod Smith Rod Smith 1992-01-10 #> 521 Mikey Daniel Mikey Daniel 1996-11-03 #> 522 Darius Clark Darius Clark 1996-07-06 #> 523 Ian Thomas Ian Thomas 1996-06-06 #> 524 Colin Thompson Colin Thompson 1993-12-15 #> 525 Stephen Sullivan Stephen Sullivan 1996-11-28 #> 526 Giovanni Ricci Giovanni Ricci 1996-10-16 #> 527 Desean Smith Desean Smith 1994-11-02 #> 528 Wyatt Houston Wyatt Houston 1994-06-21 #> 529 Tommy Tremble Tommy Tremble 2000-06-02 #> 530 Dan Arnold Dan Arnold 1995-03-15 #> 531 C.J. Saunders C.J. Saunders <NA> #> 532 Shelton Gibson Shelton Gibson 1994-03-20 #> 533 Krishawn Hogan Krishawn Hogan 1995-05-12 #> 534 Terrace Marshall Terrace Marshall 2000-06-09 #> 535 Omar Bayless Omar Bayless 1996-12-15 #> 536 Brandon Zylstra Brandon Zylstra 1993-03-25 #> 537 Shi Smith Shi Smith 1998-10-26 #> 538 Ishmael Hyman Ishmael Hyman 1995-08-23 #> 539 Robby Anderson Robby Anderson 1993-05-09 #> 540 Ventell Bryant Ventell Bryant 1996-08-24 #> 541 David Moore David Moore 1995-01-15 #> 542 D.J. Moore D.J. Moore 1997-04-14 #> 543 Keith Kirkwood Keith Kirkwood 1993-12-26 #> 544 Micah Simon Micah Simon <NA> #> 545 Cody Whitehair Cody Whitehair 1992-07-11 #> 546 Duke Shelley Duke Shelley 1996-10-08 #> 547 Tre Roberson Tre Roberson 1992-10-22 #> 548 Jaylon Johnson Jaylon Johnson 1999-04-19 #> 549 Sojourn Shelton Sojourn Shelton 1994-12-25 #> 550 Desmond Trufant Desmond Trufant 1990-09-10 #> 551 Michael Joseph Michael Joseph 1995-03-19 #> 552 Kindle Vildor Kindle Vildor 1997-12-11 #> 553 Tyrin Holloway Tyrin Holloway <NA> #> 554 Eddie Jackson Eddie Jackson 1992-12-10 #> 555 Xavier Crawford Xavier Crawford 1995-10-12 #> 556 Tashaun Gipson Tashaun Gipson 1990-08-07 #> 557 Artie Burns Artie Burns 1995-05-01 #> 558 Deon Bush Deon Bush 1993-08-14 #> 559 Jordan Lucas Jordan Lucas 1993-08-02 #> 560 Dionte Ruffin Dionte Ruffin <NA> #> 561 Marqui Christian Marqui Christian 1994-10-27 #> 562 DeAndre Houston-Carson DeAndre Houston-Carson 1993-04-13 #> 563 Teez Tabor Teez Tabor 1995-12-31 #> 564 Thomas Graham Thomas Graham 1999-06-26 #> 565 Thomas Schaffer Thomas Schaffer <NA> #> 566 Angelo Blackson Angelo Blackson 1992-11-14 #> 567 Mario Edwards Mario Edwards 1994-01-25 #> 568 Charles Snowden Charles Snowden <NA> #> 569 Lawrence Marshall Lawrence Marshall 1995-02-12 #> 570 Bilal Nichols Bilal Nichols 1996-09-14 #> 571 Eddie Goldman Eddie Goldman 1994-01-06 #> 572 Mike Pennel Mike Pennel 1991-05-09 #> 573 Sam Kamara Sam Kamara 1997-12-21 #> 574 Terry Beckner Terry Beckner 1997-03-02 #> 575 Khyiris Tonga Khyiris Tonga 1996-07-07 #> 576 Daniel Archibong Daniel Archibong 1997-09-12 #> 577 Akiem Hicks Akiem Hicks 1989-11-16 #> 578 Lacale London Lacale London 1997-08-05 #> 579 Jeremi Hall Jeremi Hall <NA> #> 580 Cairo Santos Cairo Santos 1991-11-12 #> 581 Brian Johnson Brian Johnson <NA> #> 582 Ledarius Mack Ledarius Mack 1996-10-03 #> 583 Alec Ogletree Alec Ogletree 1991-09-25 #> 584 Roquan Smith Roquan Smith 1997-04-08 #> 585 Trevis Gipson Trevis Gipson 1997-06-13 #> 586 Joel Iyiegbuniwe Joel Iyiegbuniwe 1995-10-12 #> 587 Caleb Johnson Caleb Johnson <NA> #> 588 James Vaughters James Vaughters 1993-06-27 #> 589 Danny Trevathan Danny Trevathan 1990-03-24 #> 590 Josh Woods Josh Woods 1996-07-01 #> 591 Khalil Mack Khalil Mack 1991-02-22 #> 592 Jeremiah Attaochu Jeremiah Attaochu 1993-01-17 #> 593 Austin Calitro Austin Calitro 1994-01-10 #> 594 Manti Te'o Manti Te'o 1991-01-26 #> 595 Robert Quinn Robert Quinn 1990-05-18 #> 596 Christian Jones Christian Jones 1991-02-18 #> 597 Patrick Scales Patrick Scales 1988-02-11 #> 598 Dareuan Parker Dareuan Parker 1998-07-24 #> 599 James Daniels James Daniels 1997-09-13 #> 600 Dieter Eiselen Dieter Eiselen 1996-06-10 #> 601 Larry Borom Larry Borom 1999-03-30 #> 602 Germain Ifedi Germain Ifedi 1994-06-02 #> 603 Lachavious Simmons Lachavious Simmons 1996-09-26 #> 604 Adam Redmond Adam Redmond 1993-05-19 #> 605 Gage Cervenka Gage Cervenka 1997-06-22 #> 606 Elijah Wilkinson Elijah Wilkinson 1995-02-10 #> 607 Tyrone Wheatley Tyrone Wheatley <NA> #> 608 Alex Bars Alex Bars 1995-09-08 #> 609 Sam Mustipher Sam Mustipher 1996-08-13 #> 610 Arlington Hambright Arlington Hambright 1996-01-30 #> 611 Teven Jenkins Teven Jenkins 1998-03-03 #> 612 Jason Peters Jason Peters 1982-01-22 #> 613 Badara Traore Badara Traore 1997-03-12 #> 614 Pat O'Donnell Pat O'Donnell 1991-02-22 #> 615 Andy Dalton Andy Dalton 1987-10-29 #> 616 Nick Foles Nick Foles 1989-01-20 #> 617 Justin Fields Justin Fields 1999-03-05 #> 618 Ryan Nall Ryan Nall 1995-12-27 #> 619 Khalil Herbert Khalil Herbert 1998-04-21 #> 620 Damien Williams Damien Williams 1992-04-03 #> 621 CJ Marable CJ Marable 1997-02-02 #> 622 Artavis Pierce Artavis Pierce 1996-05-17 #> 623 Tarik Cohen Tarik Cohen 1995-07-26 #> 624 David Montgomery David Montgomery 1997-07-06 #> 625 Spencer Ware Spencer Ware 1991-11-23 #> 626 Franko House Franko House 1994-09-19 #> 627 Darion Clark Darion Clark 1994-04-09 #> 628 J.P. Holtz J.P. Holtz 1993-08-28 #> 629 Jesse James Jesse James 1994-06-04 #> 630 Jake Butt Jake Butt 1995-07-11 #> 631 Scooter Harrington Scooter Harrington 1997-09-23 #> 632 Cole Kmet Cole Kmet 1999-03-10 #> 633 Jesper Horsted Jesper Horsted 1997-02-27 #> 634 Jimmy Graham Jimmy Graham 1986-11-24 #> 635 Chris Lacy Chris Lacy 1996-01-28 #> 636 Shaq Roland Shaq Roland <NA> #> 637 Marquise Goodwin Marquise Goodwin 1990-11-19 #> 638 Jester Weah Jester Weah 1995-02-07 #> 639 Riley Ridley Riley Ridley 1997-07-26 #> 640 Damiere Byrd Damiere Byrd 1993-01-27 #> 641 Javon Wims Javon Wims 1994-09-11 #> 642 Reggie Davis Reggie Davis 1995-11-22 #> 643 Isaiah Coulter Isaiah Coulter 1998-09-18 #> 644 Rodney Adams Rodney Adams 1994-09-15 #> 645 Darnell Mooney Darnell Mooney 1997-10-29 #> 646 Jon'Vea Johnson Jon'Vea Johnson 1995-12-23 #> 647 Thomas Ives Thomas Ives 1996-06-25 #> 648 Dazz Newsome Dazz Newsome 1999-05-15 #> 649 Allen Robinson Allen Robinson 1993-08-24 #> 650 Justin Hardy Justin Hardy 1991-12-18 #> 651 Matt Fleming Matt Fleming <NA> #> 652 Trey Hopkins Trey Hopkins 1992-07-06 #> 653 Lamont Gaillard Lamont Gaillard 1996-02-08 #> 654 Billy Price Billy Price 1995-10-12 #> 655 Trey Hill Trey Hill 2000-01-23 #> 656 Trae Waynes Trae Waynes 1992-07-25 #> 657 Donnie Lewis Donnie Lewis 1996-07-21 #> 658 Winston Rose Winston Rose 1993-11-29 #> 659 Trajan Bandy Trajan Bandy 1999-06-04 #> 660 Chidobe Awuzie Chidobe Awuzie 1995-05-24 #> 661 Tony Brown Tony Brown 1996-07-13 #> 662 Darius Phillips Darius Phillips 1996-06-26 #> 663 Antonio Phillips Antonio Phillips 1998-12-09 #> 664 Jalen Davis Jalen Davis 1996-02-02 #> 665 Eli Apple Eli Apple 1995-08-09 #> 666 Kavon Frazier Kavon Frazier 1994-08-11 #> 667 Brandon Wilson Brandon Wilson 1994-07-27 #> 668 Mike Hilton Mike Hilton 1994-03-09 #> 669 Vonn Bell Vonn Bell 1994-12-12 #> 670 Ricardo Allen Ricardo Allen 1991-12-18 #> 671 Trayvon Henderson Trayvon Henderson 1995-08-15 #> 672 Jessie Bates Jessie Bates 1997-02-26 #> 673 Darius Hodge Darius Hodge 1998-07-03 #> 674 Joseph Ossai Joseph Ossai 2000-04-13 #> 675 Trey Hendrickson Trey Hendrickson 1994-12-05 #> 676 Sam Hubbard Sam Hubbard 1996-06-23 #> 677 Noah Spence Noah Spence 1994-01-08 #> 678 Wyatt Hubert Wyatt Hubert 1998-06-13 #> 679 Khalid Kareem Khalid Kareem 1998-04-28 #> 680 Cameron Sample Cameron Sample 1999-09-20 #> 681 Amani Bledsoe Amani Bledsoe 1998-02-06 #> 682 Josh Tupou Josh Tupou 1994-05-02 #> 683 D.J. Reader D.J. Reader 1994-07-01 #> 684 Mike Daniels Mike Daniels 1989-05-05 #> 685 Tyler Shelvin Tyler Shelvin 1998-07-22 #> 686 Renell Wren Renell Wren 1995-10-23 #> 687 Reginald McKenzie Reginald McKenzie 1997-01-03 #> 688 Larry Ogunjobi Larry Ogunjobi 1994-06-03 #> 689 Rod Taylor Rod Taylor 1994-10-26 #> 690 Austin Seibert Austin Seibert 1996-11-15 #> 691 Evan McPherson Evan McPherson 1999-07-21 #> 692 Akeem Davis-Gaither Akeem Davis-Gaither 1997-09-21 #> 693 Germaine Pratt Germaine Pratt 1996-05-21 #> 694 Markus Bailey Markus Bailey 1997-03-07 #> 695 Keandre Jones Keandre Jones 1997-09-24 #> 696 Jordan Evans Jordan Evans 1995-01-27 #> 697 Joe Bachie Joe Bachie 1998-02-26 #> 698 Logan Wilson Logan Wilson 1996-07-08 #> 699 Clark Harris Clark Harris 1984-07-10 #> 700 Dan Godsil Dan Godsil 1996-08-19 #> 701 Quinton Spain Quinton Spain 1991-08-07 #> 702 Hakeem Adeniji Hakeem Adeniji 1997-12-08 #> 703 Jackson Carman Jackson Carman 2000-01-22 #> 704 Keaton Sutherland Keaton Sutherland 1997-02-12 #> 705 Michael Jordan Michael Jordan 1998-01-25 #> 706 Xavier Su'a-Filo Xavier Su'a-Filo 1991-01-01 #> 707 Isaiah Prince Isaiah Prince 1997-07-29 #> 708 Jonah Williams Jonah Williams 1997-11-17 #> 709 Riley Reiff Riley Reiff 1988-12-01 #> 710 D'Ante Smith D'Ante Smith 1998-06-09 #> 711 Fred Johnson Fred Johnson 1997-06-05 #> 712 Gunnar Vogel Gunnar Vogel <NA> #> 713 Drue Chrisman Drue Chrisman <NA> #> 714 Kevin Huber Kevin Huber 1985-07-16 #> 715 Kyle Shurmur Kyle Shurmur 1996-11-06 #> 716 Eric Dungey Eric Dungey 1996-06-12 #> 717 Joe Burrow Joe Burrow 1996-12-10 #> 718 Brandon Allen Brandon Allen 1992-09-05 #> 719 Collin Hill Collin Hill 1997-10-09 #> 720 Pooka Williams Pooka Williams 1999-06-19 #> 721 Trayveon Williams Trayveon Williams 1997-10-18 #> 722 Jacques Patrick Jacques Patrick 1997-01-07 #> 723 Samaje Perine Samaje Perine 1995-09-16 #> 724 Joe Mixon Joe Mixon 1996-07-24 #> 725 Chris Evans Chris Evans 1997-10-05 #> 726 Josh Knipfel Josh Knipfel 1998-02-26 #> 727 O'Shea Dugas O'Shea Dugas 1996-09-22 #> 728 Mason Schreck Mason Schreck 1993-11-04 #> 729 Thaddeus Moss Thaddeus Moss 1998-05-14 #> 730 C.J. Uzomah C.J. Uzomah 1993-01-14 #> 731 Drew Sample Drew Sample 1996-04-16 #> 732 Cheyenne O'Grady Cheyenne O'Grady 1996-09-20 #> 733 Pro Wells Pro Wells <NA> #> 734 Mitchell Wilcox Mitchell Wilcox 1996-11-07 #> 735 Trent Taylor Trent Taylor 1994-04-30 #> 736 Riley Lees Riley Lees <NA> #> 737 Charles Holland Charles Holland <NA> #> 738 Stanley Morgan Stanley Morgan 1996-09-07 #> 739 Auden Tate Auden Tate 1997-02-03 #> 740 Scotty Washington Scotty Washington 1997-07-26 #> 741 Tee Higgins Tee Higgins 1999-01-18 #> 742 Ja'Marr Chase Ja'Marr Chase 2000-03-01 #> 743 Tyler Boyd Tyler Boyd 1994-11-15 #> 744 Mike Thomas Mike Thomas 1994-08-16 #> 745 Trenton Irwin Trenton Irwin 1995-12-10 #> 746 Reece Horn Reece Horn 1993-02-01 #> 747 Monty Madaris Monty Madaris 1993-09-08 #> 748 J.C. Tretter J.C. Tretter 1991-02-12 #> 749 Javon Patterson Javon Patterson 1997-07-08 #> 750 Anthony Fabiano Anthony Fabiano 1993-07-13 #> 751 Greg Newsome Greg Newsome 2000-05-18 #> 752 Robert Jackson Robert Jackson 1993-12-08 #> 753 Greedy Williams Greedy Williams 1997-12-03 #> 754 Troy Hill Troy Hill 1991-08-29 #> 755 Brian Allen Brian Allen 1993-10-21 #> 756 Denzel Ward Denzel Ward 1997-04-28 #> 757 A.J. Green A.J. Green 1998-06-09 #> 758 Kiondre Thomas Kiondre Thomas 1998-02-07 #> 759 M.J. Stewart M.J. Stewart 1995-09-16 #> 760 Emmanuel Rugamba Emmanuel Rugamba 1998-03-10 #> 761 Grant Delpit Grant Delpit 1998-09-20 #> 762 Jovante Moffatt Jovante Moffatt 1996-12-25 #> 763 John Johnson John Johnson 1995-12-19 #> 764 Elijah Benton Elijah Benton 1996-09-05 #> 765 Prince Smith Prince Smith 1997-11-28 #> 766 Ronnie Harrison Ronnie Harrison 1997-04-18 #> 767 Richard LeCounte Richard LeCounte 1998-09-11 #> 768 Sheldrick Redwine Sheldrick Redwine 1996-11-06 #> 769 Cameron Malveaux Cameron Malveaux 1994-09-22 #> 770 Porter Gustin Porter Gustin 1997-02-08 #> 771 Joe Jackson Joe Jackson 1996-12-20 #> 772 Jadeveon Clowney Jadeveon Clowney 1993-02-14 #> 773 Curtis Weaver Curtis Weaver 1998-08-03 #> 774 Jamal Davis Jamal Davis 1995-07-09 #> 775 Myles Garrett Myles Garrett 1995-12-29 #> 776 Collin Bevins Collin Bevins <NA> #> 777 Takkarist McKinley Takkarist McKinley 1995-11-02 #> 778 Romeo McKnight Romeo McKnight 1998-03-25 #> 779 Trenton Thompson Trenton Thompson 1996-07-27 #> 780 Malik McDowell Malik McDowell 1996-06-20 #> 781 Andrew Billings Andrew Billings 1995-03-06 #> 782 Jordan Elliott Jordan Elliott 1997-11-23 #> 783 Marvin Wilson Marvin Wilson 1998-09-05 #> 784 Damion Square Damion Square 1989-02-06 #> 785 Sheldon Day Sheldon Day 1994-07-01 #> 786 Malik Jackson Malik Jackson 1990-01-11 #> 787 Tommy Togiai Tommy Togiai 1999-09-19 #> 788 Johnny Stanton Johnny Stanton 1994-09-07 #> 789 Andy Janovich Andy Janovich 1993-05-23 #> 790 Trevon Tate Trevon Tate <NA> #> 791 Matthew McCrane Matthew McCrane 1994-09-08 #> 792 Chase McLaughlin Chase McLaughlin 1996-04-09 #> 793 Cody Parkey Cody Parkey 1992-02-19 #> 794 Tony Fields Tony Fields 1999-06-18 #> 795 Mack Wilson Mack Wilson 1998-02-14 #> 796 Malcolm Smith Malcolm Smith 1989-07-05 #> 797 Elijah Lee Elijah Lee 1996-02-08 #> 798 Montrel Meander Montrel Meander 1994-09-20 #> 799 Jacob Phillips Jacob Phillips 1999-04-01 #> 800 Anthony Walker Anthony Walker 1995-08-08 #> 801 Willie Harvey Willie Harvey 1996-01-09 #> 802 Jeremiah Owusu-Koramoah Jeremiah Owusu-Koramoah 1999-11-04 #> 803 Trevon Young Trevon Young 1995-04-01 #> 804 Sione Takitaki Sione Takitaki 1995-06-08 #> 805 Charley Hughlett Charley Hughlett 1990-05-16 #> 806 Joel Bitonio Joel Bitonio 1991-10-11 #> 807 Blake Hance Blake Hance 1996-01-11 #> 808 Wyatt Teller Wyatt Teller 1994-11-21 #> 809 Colby Gossett Colby Gossett 1995-06-23 #> 810 Michael Dunn Michael Dunn 1994-08-28 #> 811 Cordel Iwuagwu Cordel Iwuagwu 1996-09-04 #> 812 Drew Forbes Drew Forbes 1997-01-18 #> 813 Nick Harris Nick Harris 1998-11-13 #> 814 James Hudson James Hudson 1999-05-13 #> 815 Greg Senat Greg Senat 1994-09-08 #> 816 Chris Schneider Chris Schneider <NA> #> 817 Jedrick Wills Jedrick Wills 1999-05-17 #> 818 Christopher Hubbard Christopher Hubbard 1991-04-23 #> 819 Alex Taylor Alex Taylor 1997-04-29 #> 820 Jack Conklin Jack Conklin 1994-08-17 #> 821 Jamie Gillan Jamie Gillan 1997-07-04 #> 822 Michael Carrizosa Michael Carrizosa <NA> #> 823 Kyle Lauletta Kyle Lauletta 1995-11-27 #> 824 Case Keenum Case Keenum 1988-02-17 #> 825 Baker Mayfield Baker Mayfield 1995-04-14 #> 826 Demetric Felton Demetric Felton 1998-07-16 #> 827 John Kelly John Kelly 1996-10-04 #> 828 LJ Scott LJ Scott 1996-09-15 #> 829 Tre Harbison Tre Harbison 1998-07-01 #> 830 Nick Chubb Nick Chubb 1995-12-27 #> 831 D'Ernest Johnson D'Ernest Johnson 1996-02-27 #> 832 Corey Taylor Corey Taylor 1997-07-04 #> 833 Kareem Hunt Kareem Hunt 1995-08-06 #> 834 Brady Aiello Brady Aiello 1997-07-17 #> 835 Drake Dorbeck Drake Dorbeck 1996-10-07 #> 836 Harrison Bryant Harrison Bryant 1998-04-23 #> 837 Austin Hooper Austin Hooper 1994-10-29 #> 838 Connor Davis Connor Davis 1994-10-20 #> 839 Stephen Carlson Stephen Carlson 1996-12-12 #> 840 David Njoku David Njoku 1996-07-10 #> 841 Jordan Franks Jordan Franks 1996-02-01 #> 842 JoJo Natson JoJo Natson 1994-02-01 #> 843 Derrick Willies Derrick Willies 1994-10-12 #> 844 Ryan Switzer Ryan Switzer 1994-11-04 #> 845 Odell Beckham Odell Beckham 1992-11-05 #> 846 Joshua Cribbs Joshua Cribbs 1983-06-09 #> 847 Khadarel Hodge Khadarel Hodge 1995-01-03 #> 848 Jarvis Landry Jarvis Landry 1992-11-28 #> 849 Donovan Peoples-Jones Donovan Peoples-Jones 1999-02-19 #> 850 JoJo Ward JoJo Ward 1997-12-09 #> 851 Rashard Higgins Rashard Higgins 1994-10-07 #> 852 Alexander Hollins Alexander Hollins 1996-11-24 #> 853 Anthony Schwartz Anthony Schwartz 2000-09-05 #> 854 Davion Davis Davion Davis 1996-10-23 #> 855 Ja'Marcus Bradley Ja'Marcus Bradley 1996-12-11 #> 856 Tyler Biadasz Tyler Biadasz 1998-11-20 #> 857 Travis Frederick Travis Frederick 1991-03-18 #> 858 Maurice Canady Maurice Canady 1994-05-26 #> 859 Israel Mukuamu Israel Mukuamu 1999-11-28 #> 860 Kyron Brown Kyron Brown 1996-05-26 #> 861 Trevon Diggs Trevon Diggs 1997-09-20 #> 862 Anthony Brown Anthony Brown 1993-12-15 #> 863 Kelvin Joseph Kelvin Joseph 2000-12-11 #> 864 Deante Burton Deante Burton 1994-07-12 #> 865 Nahshon Wright Nahshon Wright 1998-09-23 #> 866 C.J. Goodwin C.J. Goodwin 1990-02-04 #> 867 Jourdan Lewis Jourdan Lewis 1995-08-31 #> 868 Michael Coe Michael Coe 1983-12-17 #> 869 Reggie Robinson Reggie Robinson 1997-04-14 #> 870 Damontae Kazee Damontae Kazee 1993-06-05 #> 871 Jayron Kearse Jayron Kearse 1994-02-11 #> 872 Steven Parker Steven Parker 1995-12-14 #> 873 Tyler Coyle Tyler Coyle <NA> #> 874 Darian Thompson Darian Thompson 1993-09-22 #> 875 Donovan Wilson Donovan Wilson 1997-03-14 #> 876 Malik Hooker Malik Hooker 1996-04-02 #> 877 Chauncey Golston Chauncey Golston 1998-02-10 #> 878 Tarell Basham Tarell Basham 1994-03-18 #> 879 Ron'Dell Carter Ron'Dell Carter 1997-07-03 #> 880 Demarcus Lawrence Demarcus Lawrence 1992-04-28 #> 881 Bradlee Anae Bradlee Anae 1998-01-17 #> 882 Carlos Watkins Carlos Watkins 1993-12-05 #> 883 Randy Gregory Randy Gregory 1992-11-23 #> 884 Brent Urban Brent Urban 1991-05-05 #> 885 Dorance Armstrong Dorance Armstrong 1997-06-10 #> 886 Quinton Bohanna Quinton Bohanna 1999-03-16 #> 887 Trysten Hill Trysten Hill 1998-03-25 #> 888 Austin Faoliu Austin Faoliu 1999-01-09 #> 889 Osa Odighizuwa Osa Odighizuwa 1998-08-13 #> 890 Justin Hamilton Justin Hamilton 1993-07-27 #> 891 Neville Gallimore Neville Gallimore 1997-01-17 #> 892 Nick Ralston Nick Ralston 1996-11-10 #> 893 Sewo Olonilua Sewo Olonilua 1997-11-27 #> 894 Jamize Olawale Jamize Olawale 1989-04-17 #> 895 Matt Farniok Matt Farniok 1997-09-26 #> 896 Lirim Hajrullahu Lirim Hajrullahu 1990-04-24 #> 897 Greg Zuerlein Greg Zuerlein 1987-12-27 #> 898 Leighton Vander Esch Leighton Vander Esch 1997-02-09 #> 899 Jaylon Smith Jaylon Smith 1995-06-14 #> 900 Luke Gifford Luke Gifford 1995-08-28 #> 901 Francis Bernard Francis Bernard 1995-04-08 #> 902 Azur Kamara Azur Kamara 1996-01-01 #> 903 Ed Shockley Ed Shockley 1995-06-01 #> 904 Micah Parsons Micah Parsons 1999-05-26 #> 905 Keanu Neal Keanu Neal 1995-07-26 #> 906 Anthony Hines Anthony Hines <NA> #> 907 Jabril Cox Jabril Cox 1998-04-16 #> 908 Jake McQuaide Jake McQuaide 1987-12-07 #> 909 Zack Martin Zack Martin 1990-11-20 #> 910 Connor McGovern Connor McGovern 1997-11-03 #> 911 Connor Williams Connor Williams 1997-05-12 #> 912 Jashon Robertson Jashon Robertson 1996-03-21 #> 913 Mitch Hyatt Mitch Hyatt 1997-02-06 #> 914 Braylon Jones Braylon Jones 1998-02-10 #> 915 Terence Steele Terence Steele 1997-06-04 #> 916 Josh Ball Josh Ball 1998-05-15 #> 917 Brandon Knight Brandon Knight 1997-04-01 #> 918 Eric Smith Eric Smith 1995-09-02 #> 919 Isaac Alarcon Isaac Alarcon 1998-07-27 #> 920 Tyron Smith Tyron Smith 1990-12-12 #> 921 Bryce Johnson Bryce Johnson <NA> #> 922 La'el Collins La'el Collins 1993-07-26 #> 923 Ty Nsekhe Ty Nsekhe 1985-10-27 #> 924 Hunter Niswander Hunter Niswander 1994-11-26 #> 925 Bryan Anger Bryan Anger 1988-10-06 #> 926 Cooper Rush Cooper Rush 1993-11-21 #> 927 Austin Appleby Austin Appleby <NA> #> 928 Ben DiNucci Ben DiNucci 1996-11-24 #> 929 Dak Prescott Dak Prescott 1993-07-29 #> 930 Garrett Gilbert Garrett Gilbert 1991-01-01 #> 931 Tony Pollard Tony Pollard 1997-04-30 #> 932 JaQuan Hardy JaQuan Hardy 1997-12-31 #> 933 Rico Dowdle Rico Dowdle 1998-06-14 #> 934 Ezekiel Elliott Ezekiel Elliott 1995-07-22 #> 935 Brenden Knox Brenden Knox 1998-10-10 #> 936 Artayvious Lynn Artayvious Lynn 1996-03-13 #> 937 Nick Eubanks Nick Eubanks 1996-11-21 #> 938 Jeremy Sprinkle Jeremy Sprinkle 1994-08-10 #> 939 Blake Jarwin Blake Jarwin 1994-07-16 #> 940 Dalton Schultz Dalton Schultz 1996-07-11 #> 941 Sean McKeon Sean McKeon 1997-12-28 #> 942 Malik Turner Malik Turner 1996-01-30 #> 943 Brennan Eagles Brennan Eagles <NA> #> 944 Cedrick Wilson Cedrick Wilson 1995-11-20 #> 945 Noah Brown Noah Brown 1996-07-19 #> 946 Amari Cooper Amari Cooper 1994-06-17 #> 947 Simi Fehoko Simi Fehoko 1997-11-05 #> 948 Michael Gallup Michael Gallup 1996-03-04 #> 949 Johnnie Dixon Johnnie Dixon 1994-09-16 #> 950 Brandon Smith Brandon Smith 1998-12-10 #> 951 CeeDee Lamb CeeDee Lamb 1999-04-08 #> 952 Osirus Mitchell Osirus Mitchell 1998-09-15 #> 953 Stephen Guidry Stephen Guidry 1997-03-25 #> 954 Quincy McDuffie Quincy McDuffie 1990-01-01 #> 955 Malik Earl Malik Earl <NA> #> 956 T.J. Vasher T.J. Vasher 1998-08-29 #> 957 Aaron Parker Aaron Parker 1998-05-21 #> 958 Lloyd Cushenberry Lloyd Cushenberry 1997-11-22 #> 959 Quinn Meinerz Quinn Meinerz 1998-11-15 #> 960 Brett Jones Brett Jones 1991-07-29 #> 961 Ronald Darby Ronald Darby 1994-01-02 #> 962 Bryce Callahan Bryce Callahan 1991-10-23 #> 963 Kary Vincent Kary Vincent 1999-02-27 #> 964 Parnell Motley Parnell Motley 1997-10-28 #> 965 Saivion Smith Saivion Smith 1997-11-05 #> 966 Kyle Fuller Kyle Fuller 1992-02-16 #> 967 Essang Bassey Essang Bassey 1998-08-12 #> 968 Franklin McCain Franklin McCain 1998-02-06 #> 969 Michael Ojemudia Michael Ojemudia 1997-09-12 #> 970 Nate Hairston Nate Hairston 1994-06-30 #> 971 Patrick Surtain Patrick Surtain 2000-04-14 #> 972 Duke Dawson Duke Dawson 1996-10-03 #> 973 P.J. Locke P.J. Locke 1997-02-12 #> 974 Rojesterman Farris Rojesterman Farris 1997-09-11 #> 975 Kareem Jackson Kareem Jackson 1988-04-10 #> 976 Justin Simmons Justin Simmons 1993-11-19 #> 977 Caden Sterns Caden Sterns 1999-11-02 #> 978 Jamar Johnson Jamar Johnson 1999-11-22 #> 979 Dre'Mont Jones Dre'Mont Jones 1997-01-05 #> 980 Shelby Harris Shelby Harris 1991-08-11 #> 981 Marquiss Spencer Marquiss Spencer 1997-07-16 #> 982 Jonathon Cooper Jonathon Cooper 1998-01-08 #> 983 Jaylen Johnson Jaylen Johnson <NA> #> 984 Deyon Sizer Deyon Sizer 1996-08-16 #> 985 DeShawn Williams DeShawn Williams 1992-12-29 #> 986 Lorenzo Neal Lorenzo Neal 1997-11-04 #> 987 Jonathan Harris Jonathan Harris 1996-08-04 #> 988 Isaiah Mack Isaiah Mack 1996-03-19 #> 989 Shamar Stephen Shamar Stephen 1991-02-25 #> 990 McTelvin Agim McTelvin Agim 1997-09-25 #> 991 Adam Prentice Adam Prentice 1997-01-16 #> 992 Andrew Beck Andrew Beck 1996-05-15 #> 993 Netane Muti Netane Muti 1999-03-27 #> 994 Chris Muller Chris Muller 1993-10-29 #> 995 Dalton Risner Dalton Risner 1995-07-13 #> 996 Graham Glasgow Graham Glasgow 1992-07-19 #> 997 Brandon McManus Brandon McManus 1991-07-25 #> 998 Baron Browning Baron Browning 1999-02-19 #> 999 Peter Kalambayi Peter Kalambayi 1995-06-26 #> 1000 Malik Reed Malik Reed 1996-08-05 #> 1001 Von Miller Von Miller 1989-03-26 #> 1002 Pita Taumoepenu Pita Taumoepenu 1994-03-09 #> 1003 Justin Strnad Justin Strnad 1996-08-21 #> 1004 Natrez Patrick Natrez Patrick 1997-07-09 #> 1005 Andre Mintze Andre Mintze 1998-09-10 #> 1006 Josey Jewell Josey Jewell 1994-12-25 #> 1007 Curtis Robinson Curtis Robinson 1998-06-02 #> 1008 Josh Watson Josh Watson 1996-05-20 #> 1009 Bradley Chubb Bradley Chubb 1996-06-24 #> 1010 Barrington Wade Barrington Wade 1998-03-16 #> 1011 Derrek Tuszka Derrek Tuszka 1997-08-17 #> 1012 A.J. Johnson A.J. Johnson 1991-12-24 #> 1013 Jacob Bobenmoyer Jacob Bobenmoyer 1997-05-28 #> 1014 Mike Purcell Mike Purcell 1991-04-20 #> 1015 Nolan Laufenberg Nolan Laufenberg 1999-03-25 #> 1016 Austin Schlottmann Austin Schlottmann 1995-09-18 #> 1017 Jon Halapio Jon Halapio 1991-06-23 #> 1018 Cody Conway Cody Conway 1996-07-09 #> 1019 Josh Banderas Josh Banderas 1995-02-22 #> 1020 Drew Himmelman Drew Himmelman 1996-09-19 #> 1021 Quinn Bailey Quinn Bailey 1995-10-18 #> 1022 Cameron Fleming Cameron Fleming 1992-09-03 #> 1023 Bobby Massie Bobby Massie 1989-08-01 #> 1024 Calvin Anderson Calvin Anderson 1996-03-25 #> 1025 Garett Bolles Garett Bolles 1992-05-27 #> 1026 Sam Martin Sam Martin 1990-02-27 #> 1027 Max Duffy Max Duffy 1993-04-11 #> 1028 Teddy Bridgewater Teddy Bridgewater 1992-11-10 #> 1029 Drew Lock Drew Lock 1996-11-10 #> 1030 Brett Rypien Brett Rypien 1996-07-09 #> 1031 Damarea Crockett Damarea Crockett 1997-12-22 #> 1032 LeVante Bellamy LeVante Bellamy 1996-11-28 #> 1033 Stevie Scott Stevie Scott <NA> #> 1034 Adrian Killins Adrian Killins 1998-01-02 #> 1035 Melvin Gordon Melvin Gordon 1993-04-13 #> 1036 Royce Freeman Royce Freeman 1996-02-24 #> 1037 Javonte Williams Javonte Williams 2000-04-25 #> 1038 Mike Boone Mike Boone 1995-06-30 #> 1039 Trey Marshall Trey Marshall 1996-02-13 #> 1040 Eric Saubert Eric Saubert 1994-05-01 #> 1041 Shaun Beyer Shaun Beyer 1996-11-11 #> 1042 Noah Fant Noah Fant 1997-11-20 #> 1043 Albert Okwuegbunam Albert Okwuegbunam 1998-04-25 #> 1044 Austin Fort Austin Fort 1995-05-14 #> 1045 Landon Rice Landon Rice 1997-05-06 #> 1046 Jordan Leggett Jordan Leggett 1995-01-31 #> 1047 De'Mornay Pierson-El De'Mornay Pierson-El 1995-12-26 #> 1048 Amara Darboh Amara Darboh 1994-02-01 #> 1049 Courtland Sutton Courtland Sutton 1995-10-10 #> 1050 Devontres Dukes Devontres Dukes 1997-06-18 #> 1051 Branden Mack Branden Mack 1998-08-23 #> 1052 Jerry Jeudy Jerry Jeudy 1999-04-24 #> 1053 DaeSean Hamilton DaeSean Hamilton 1995-03-10 #> 1054 Tim Patrick Tim Patrick 1993-11-23 #> 1055 Kendall Hinton Kendall Hinton 1997-02-19 #> 1056 Trinity Benson Trinity Benson 1997-01-16 #> 1057 Tyrie Cleveland Tyrie Cleveland 1997-09-20 #> 1058 K.J. Hamler K.J. Hamler 1999-07-08 #> 1059 Seth Williams Seth Williams 2000-04-10 #> 1060 Diontae Spencer Diontae Spencer 1992-03-19 #> 1061 Evan Brown Evan Brown 1996-09-16 #> 1062 Evan Boehm Evan Boehm 1993-08-19 #> 1063 Russell Bodine Russell Bodine 1992-06-30 #> 1064 Amani Oruwariye Amani Oruwariye 1996-02-09 #> 1065 Jeff Okudah Jeff Okudah 1999-02-21 #> 1066 Josh Hawkins Josh Hawkins 1993-01-23 #> 1067 Quinton Dunbar Quinton Dunbar 1992-07-22 #> 1068 Alex Brown Alex Brown 1996-08-30 #> 1069 Nickell Robey-Coleman Nickell Robey-Coleman 1992-01-17 #> 1070 Mike Ford Mike Ford 1995-08-04 #> 1071 AJ Parker AJ Parker 1998-02-15 #> 1072 Corn Elder Corn Elder 1994-10-09 #> 1073 Jerry Jacobs Jerry Jacobs 1997-09-26 #> 1074 Bobby Price Bobby Price 1998-04-25 #> 1075 Anthony Sherrils Anthony Sherrils <NA> #> 1076 Alijah Holder Alijah Holder 1996-01-24 #> 1077 Jalen Elliott Jalen Elliott 1998-07-07 #> 1078 D'Angelo Amos D'Angelo Amos <NA> #> 1079 Tracy Walker Tracy Walker 1995-02-01 #> 1080 Will Harris Will Harris 1998-12-19 #> 1081 C.J. Moore C.J. Moore 1995-12-15 #> 1082 Dean Marlowe Dean Marlowe 1992-07-25 #> 1083 Ifeatu Melifonwu Ifeatu Melifonwu 1999-05-02 #> 1084 Godwin Igwebuike Godwin Igwebuike 1994-09-10 #> 1085 Julian Okwara Julian Okwara 1997-12-27 #> 1086 Joel Heath Joel Heath 1993-06-18 #> 1087 Charles Harris Charles Harris 1995-03-06 #> 1088 Austin Bryant Austin Bryant 1996-11-12 #> 1089 Romeo Okwara Romeo Okwara 1995-06-17 #> 1090 Trey Flowers Trey Flowers 1993-08-16 #> 1091 Robert McCray Robert McCray 1996-03-24 #> 1092 Bruce Hector Bruce Hector 1994-10-07 #> 1093 Jashon Cornell Jashon Cornell 1996-12-29 #> 1094 Alim McNeill Alim McNeill 2000-05-11 #> 1095 Michael Brockers Michael Brockers 1990-12-21 #> 1096 Levi Onwuzurike Levi Onwuzurike 1998-03-03 #> 1097 John Penisini John Penisini 1997-05-31 #> 1098 Nick James Nick James 1993-07-24 #> 1099 Da'Shawn Hand Da'Shawn Hand 1995-11-14 #> 1100 Michael Barnett Michael Barnett 1997-07-11 #> 1101 Kevin Strong Kevin Strong 1996-08-05 #> 1102 Nicholas Williams Nicholas Williams 1990-02-21 #> 1103 P.J. Johnson P.J. Johnson 1996-06-14 #> 1104 Jason Cabinda Jason Cabinda 1996-03-17 #> 1105 Nick Bawden Nick Bawden 1996-06-22 #> 1106 Al-Rasheed Benton Al-Rasheed Benton <NA> #> 1107 Zane Gonzalez Zane Gonzalez 1995-05-07 #> 1108 Matthew Wright Matthew Wright 1996-03-22 #> 1109 Randy Bullock Randy Bullock 1989-12-16 #> 1110 Anthony Pittman Anthony Pittman 1996-11-24 #> 1111 Derrick Barnes Derrick Barnes 1999-05-29 #> 1112 Jalen Reeves-Maybin Jalen Reeves-Maybin 1995-01-31 #> 1113 Jahlani Tavai Jahlani Tavai 1996-09-28 #> 1114 Tavante Beckett Tavante Beckett 1997-10-21 #> 1115 Shaun Dion Hamilton Shaun Dion Hamilton 1995-09-11 #> 1116 Reggie Gilbert Reggie Gilbert 1993-04-01 #> 1117 Jamie Collins Jamie Collins 1989-10-20 #> 1118 Alex Anzalone Alex Anzalone 1994-09-22 #> 1119 Rashod Berry Rashod Berry 1996-10-14 #> 1120 Scott Daly Scott Daly 1994-02-07 #> 1121 Don Muhlbach Don Muhlbach 1981-08-17 #> 1122 Miles Brown Miles Brown 1997-09-04 #> 1123 Evan Heim Evan Heim 1997-01-26 #> 1124 Frank Ragnow Frank Ragnow 1996-05-17 #> 1125 Jonah Jackson Jonah Jackson 1997-02-05 #> 1126 Tommy Kraemer Tommy Kraemer 1998-04-16 #> 1127 Logan Stenberg Logan Stenberg 1997-08-19 #> 1128 Tyrell Crosby Tyrell Crosby 1995-09-05 #> 1129 Dan Skipper Dan Skipper 1994-09-20 #> 1130 Penei Sewell Penei Sewell 2000-10-09 #> 1131 Brett Kendrick Brett Kendrick 1995-04-12 #> 1132 Halapoulivaati Vaitai Halapoulivaati Vaitai 1993-06-16 #> 1133 Matt Nelson Matt Nelson 1995-12-19 #> 1134 Taylor Decker Taylor Decker 1994-08-23 #> 1135 Darrin Paulo Darrin Paulo 1997-03-05 #> 1136 Jack Fox Jack Fox 1996-09-01 #> 1137 Tim Boyle Tim Boyle 1994-10-03 #> 1138 Jordan Ta'amu Jordan Ta'amu 1997-12-10 #> 1139 David Blough David Blough 1995-07-31 #> 1140 Jared Goff Jared Goff 1994-10-14 #> 1141 Michael Warren Michael Warren 1998-11-12 #> 1142 D'Andre Swift D'Andre Swift 1999-01-14 #> 1143 Rakeem Boyd Rakeem Boyd <NA> #> 1144 Javon Leake Javon Leake 1998-08-01 #> 1145 Jamaal Williams Jamaal Williams 1995-04-03 #> 1146 Dalyn Dawkins Dalyn Dawkins 1994-12-12 #> 1147 Craig Reynolds Craig Reynolds 1996-06-15 #> 1148 Dedrick Mills Dedrick Mills 1996-12-27 #> 1149 Jermar Jefferson Jermar Jefferson 2000-04-15 #> 1150 Khari Lee Khari Lee 1992-01-16 #> 1151 Brock Wright Brock Wright 1998-11-27 #> 1152 Alize Mack Alize Mack 1997-03-29 #> 1153 Hunter Bryant Hunter Bryant 1998-08-20 #> 1154 Hunter Thedford Hunter Thedford <NA> #> 1155 Charlie Taumoepeau Charlie Taumoepeau 1998-03-25 #> 1156 T.J. Hockenson T.J. Hockenson 1997-07-03 #> 1157 Darren Fells Darren Fells 1986-04-22 #> 1158 Javon McKinley Javon McKinley 1998-04-10 #> 1159 Tom Kennedy Tom Kennedy 1996-07-29 #> 1160 Amon-Ra St. Brown Amon-Ra St. Brown 1999-10-24 #> 1161 Chad Hansen Chad Hansen 1995-01-18 #> 1162 Damion Ratley Damion Ratley 1995-04-16 #> 1163 Tyrell Williams Tyrell Williams 1992-02-12 #> 1164 Quintez Cephus Quintez Cephus 1998-04-01 #> 1165 Victor Bolden Victor Bolden 1995-04-04 #> 1166 Kalif Raymond Kalif Raymond 1994-08-08 #> 1167 Sage Surratt Sage Surratt 1998-04-13 #> 1168 Breshad Perriman Breshad Perriman 1993-09-10 #> 1169 Jonathan Adams Jonathan Adams 1999-01-21 #> 1170 Geronimo Allison Geronimo Allison 1994-01-18 #> 1171 Darius Jennings Darius Jennings 1992-06-28 #> 1172 Jake Hanson Jake Hanson 1997-04-29 #> 1173 Chandon Sullivan Chandon Sullivan 1996-08-07 #> 1174 Eric Stokes Eric Stokes 1999-03-01 #> 1175 Dominique Martin Dominique Martin 1993-11-25 #> 1176 Kevin King Kevin King 1995-05-05 #> 1177 Shemar Jean-Charles Shemar Jean-Charles 1998-06-20 #> 1178 Jaire Alexander Jaire Alexander 1997-02-09 #> 1179 Stanford Samuels Stanford Samuels 1999-02-23 #> 1180 Kabion Ento Kabion Ento 1996-01-03 #> 1181 Innis Gaines Innis Gaines 1998-08-29 #> 1182 Darnell Savage Darnell Savage 1997-07-30 #> 1183 Adrian Amos Adrian Amos 1993-04-29 #> 1184 Isaac Yiadom Isaac Yiadom 1996-02-20 #> 1185 Henry Black Henry Black 1997-01-03 #> 1186 Vernon Scott Vernon Scott 1997-09-11 #> 1187 Will Redmond Will Redmond 1993-12-28 #> 1188 Christian Uphoff Christian Uphoff 1998-01-22 #> 1189 Dean Lowry Dean Lowry 1994-06-09 #> 1190 Delontae Scott Delontae Scott 1997-01-21 #> 1191 Chauncey Rivers Chauncey Rivers 1997-06-12 #> 1192 Kenny Clark Kenny Clark 1995-10-04 #> 1193 Kingsley Keke Kingsley Keke 1996-09-26 #> 1194 Aiulua Fanene Aiulua Fanene <NA> #> 1195 Tedarrell Slaton Tedarrell Slaton 1997-10-03 #> 1196 Jack Heflin Jack Heflin 1998-03-08 #> 1197 Willington Previlon Willington Previlon 1997-05-19 #> 1198 Filipo Mokofisi Filipo Mokofisi 1995-03-26 #> 1199 Tyler Lancaster Tyler Lancaster 1994-11-04 #> 1200 Josh Avery Josh Avery 1996-03-16 #> 1201 Ben Braden Ben Braden 1994-03-09 #> 1202 Zack Johnson Zack Johnson 1993-11-14 #> 1203 Jon Runyan Jon Runyan 1997-08-08 #> 1204 Mason Crosby Mason Crosby 1984-09-03 #> 1205 J.J. Molson J.J. Molson 1997-04-03 #> 1206 De'Jon Harris De'Jon Harris 1997-11-01 #> 1207 Preston Smith Preston Smith 1992-11-17 #> 1208 Rashan Gary Rashan Gary 1997-12-03 #> 1209 Ray Wilborn Ray Wilborn 1997-04-01 #> 1210 Jonathan Garvin Jonathan Garvin 1999-07-28 #> 1211 Oren Burks Oren Burks 1995-03-21 #> 1212 Ty Summers Ty Summers 1995-12-31 #> 1213 Za'Darius Smith Za'Darius Smith 1992-09-08 #> 1214 De'Vondre Campbell De'Vondre Campbell 1993-07-01 #> 1215 Tipa Galeai Tipa Galeai 1997-02-26 #> 1216 Krys Barnes Krys Barnes 1998-04-02 #> 1217 Kamal Martin Kamal Martin 1998-06-17 #> 1218 Isaiah McDuffie Isaiah McDuffie 1999-07-21 #> 1219 Randy Ramsey Randy Ramsey 1995-09-07 #> 1220 Carlo Kemp Carlo Kemp 1998-01-01 #> 1221 Hunter Bradley Hunter Bradley 1994-05-21 #> 1222 Joe Fortunato Joe Fortunato 1994-04-07 #> 1223 Billy Turner Billy Turner 1991-10-17 #> 1224 Elgton Jenkins Elgton Jenkins 1995-12-26 #> 1225 Lucas Patrick Lucas Patrick 1993-07-30 #> 1226 Simon Stepaniak Simon Stepaniak 1997-05-15 #> 1227 Cole Van Lanen Cole Van Lanen 1998-04-23 #> 1228 Joey Capra Joey Capra 1998-11-02 #> 1229 Royce Newman Royce Newman 1997-08-17 #> 1230 Josh Myers Josh Myers 1998-07-16 #> 1231 Jon Dietzen Jon Dietzen <NA> #> 1232 Coy Cronk Coy Cronk 1998-01-18 #> 1233 Dennis Kelly Dennis Kelly 1990-01-16 #> 1234 Yosuah Nijman Yosuah Nijman 1996-02-02 #> 1235 David Bakhtiari David Bakhtiari 1991-09-30 #> 1236 J.K. Scott J.K. Scott 1996-10-30 #> 1237 Aaron Rodgers Aaron Rodgers 1983-12-02 #> 1238 Blake Bortles Blake Bortles 1992-04-28 #> 1239 Jordan Love Jordan Love 1998-11-02 #> 1240 Kurt Benkert Kurt Benkert 1995-07-17 #> 1241 Jacob Dolegala Jacob Dolegala 1996-10-07 #> 1242 Dexter Williams Dexter Williams 1997-01-06 #> 1243 Patrick Taylor Patrick Taylor 1998-04-29 #> 1244 Aaron Jones Aaron Jones 1994-12-02 #> 1245 A.J. Dillon A.J. Dillon 1998-05-02 #> 1246 Kylin Hill Kylin Hill 1998-08-18 #> 1247 Marcedes Lewis Marcedes Lewis 1984-05-19 #> 1248 Jace Sternberger Jace Sternberger 1996-06-26 #> 1249 Dominique Dafney Dominique Dafney 1997-06-03 #> 1250 Josiah Deguara Josiah Deguara 1997-02-14 #> 1251 Isaac Nauta Isaac Nauta 1997-05-21 #> 1252 Bronson Kaufusi Bronson Kaufusi 1991-07-06 #> 1253 Robert Tonyan Robert Tonyan 1994-04-30 #> 1254 Davis Koppenhaver Davis Koppenhaver 1996-01-24 #> 1255 Daniel Crawford Daniel Crawford 1997-12-15 #> 1256 Randall Cobb Randall Cobb 1990-08-22 #> 1257 Davante Adams Davante Adams 1992-12-24 #> 1258 DeAndre Thompkins DeAndre Thompkins 1995-10-01 #> 1259 Malik Taylor Malik Taylor 1995-12-21 #> 1260 Reggie Begelton Reggie Begelton 1993-08-31 #> 1261 Chris Blair Chris Blair 1997-10-06 #> 1262 Equanimeous St. Brown Equanimeous St. Brown 1996-09-30 #> 1263 Bailey Gaither Bailey Gaither <NA> #> 1264 Amari Rodgers Amari Rodgers 1999-09-23 #> 1265 Allen Lazard Allen Lazard 1995-12-11 #> 1266 Marquez Valdes-Scantling Marquez Valdes-Scantling 1994-10-10 #> 1267 Juwann Winfree Juwann Winfree 1996-09-04 #> 1268 Devin Funchess Devin Funchess 1994-05-21 #> 1269 Damon Hazelton Damon Hazelton 1997-02-28 #> 1270 Drake Jackson Drake Jackson <NA> #> 1271 Vernon Hargreaves Vernon Hargreaves 1995-06-03 #> 1272 John Reid John Reid 1996-05-15 #> 1273 Lonnie Johnson Lonnie Johnson 1997-05-31 #> 1274 Bradley Roby Bradley Roby 1992-05-01 #> 1275 Ka'dar Hollman Ka'dar Hollman 1994-09-18 #> 1276 Gareon Conley Gareon Conley 1995-06-29 #> 1277 Eric Murray Eric Murray 1994-01-07 #> 1278 Desmond King Desmond King 1994-12-12 #> 1279 Jonathan Owens Jonathan Owens 1995-07-22 #> 1280 Tremon Smith Tremon Smith 1996-07-20 #> 1281 Shyheim Carter Shyheim Carter 1997-12-15 #> 1282 Terrance Mitchell Terrance Mitchell 1992-05-17 #> 1283 Justin Reid Justin Reid 1997-02-15 #> 1284 Terrence Brooks Terrence Brooks 1991-03-02 #> 1285 A.J. Moore A.J. Moore 1995-12-15 #> 1286 Cornell Armstrong Cornell Armstrong 1995-09-22 #> 1287 Tavierre Thomas Tavierre Thomas 1996-03-11 #> 1288 Derek Rivers Derek Rivers 1994-05-09 #> 1289 Shaq Lawson Shaq Lawson 1994-06-17 #> 1290 Charles Omenihu Charles Omenihu 1997-08-20 #> 1291 Jordan Jenkins Jordan Jenkins 1994-07-01 #> 1292 DeMarcus Walker DeMarcus Walker 1994-09-30 #> 1293 TJ Daniel TJ Daniel <NA> #> 1294 Kendall Futrell Kendall Futrell 1997-10-27 #> 1295 Roy Lopez Roy Lopez 1997-08-07 #> 1296 Ross Blacklock Ross Blacklock 1998-07-09 #> 1297 Vincent Taylor Vincent Taylor 1994-01-05 #> 1298 Auzoyah Alufohai Auzoyah Alufohai 1996-10-16 #> 1299 Jaleel Johnson Jaleel Johnson 1994-07-12 #> 1300 Maliek Collins Maliek Collins 1995-04-08 #> 1301 Ka'imi Fairbairn Ka'imi Fairbairn 1994-01-29 #> 1302 Garret Wallow Garret Wallow 1999-01-25 #> 1303 Hardy Nickerson Hardy Nickerson 1994-01-05 #> 1304 Jacob Martin Jacob Martin 1995-12-11 #> 1305 Neville Hewitt Neville Hewitt 1993-04-06 #> 1306 Kamu Grugier-Hill Kamu Grugier-Hill 1994-05-16 #> 1307 Zach Cunningham Zach Cunningham 1994-12-12 #> 1308 Whitney Mercilus Whitney Mercilus 1990-07-21 #> 1309 Joe Thomas Joe Thomas 1991-05-06 #> 1310 Jonathan Greenard Jonathan Greenard 1997-05-25 #> 1311 Duke Ejiofor Duke Ejiofor 1995-04-24 #> 1312 Kevin Pierre-Louis Kevin Pierre-Louis 1991-10-07 #> 1313 Tae Davis Tae Davis 1996-08-14 #> 1314 Christian Kirksey Christian Kirksey 1992-08-31 #> 1315 Mitchell Fraboni Mitchell Fraboni <NA> #> 1316 Anthony Kukwa Anthony Kukwa 1992-10-30 #> 1317 Jonathan Weeks Jonathan Weeks 1986-02-17 #> 1318 Brandon Dunn Brandon Dunn 1992-09-05 #> 1319 Hjalte Froholdt Hjalte Froholdt 1996-08-20 #> 1320 Danny Isidora Danny Isidora 1994-06-05 #> 1321 Lane Taylor Lane Taylor 1989-11-22 #> 1322 Geron Christian Geron Christian 1996-09-10 #> 1323 Justin Britt Justin Britt 1991-05-29 #> 1324 Ryan McCollum Ryan McCollum 1998-03-04 #> 1325 Max Scharping Max Scharping 1996-08-10 #> 1326 Carson Green Carson Green <NA> #> 1327 Cole Toner Cole Toner 1994-03-13 #> 1328 Marcus Cannon Marcus Cannon 1988-05-06 #> 1329 Justin McCray Justin McCray 1992-05-31 #> 1330 Jordan Steckler Jordan Steckler 1996-09-16 #> 1331 Tytus Howard Tytus Howard 1996-05-23 #> 1332 Roderick Johnson Roderick Johnson 1995-11-28 #> 1333 Laremy Tunsil Laremy Tunsil 1994-08-02 #> 1334 Charlie Heck Charlie Heck 1996-11-20 #> 1335 Cameron Johnston Cameron Johnston 1992-02-24 #> 1336 Davis Mills Davis Mills 1998-10-21 #> 1337 Deshaun Watson Deshaun Watson 1995-09-14 #> 1338 Tyrod Taylor Tyrod Taylor 1989-08-03 #> 1339 Jeff Driskel Jeff Driskel 1993-04-23 #> 1340 Dontrell Hilliard Dontrell Hilliard 1995-02-26 #> 1341 Mark Ingram Mark Ingram 1989-12-21 #> 1342 Rex Burkhead Rex Burkhead 1990-07-02 #> 1343 Phillip Lindsay Phillip Lindsay 1994-07-24 #> 1344 Buddy Howell Buddy Howell 1996-03-27 #> 1345 David Johnson David Johnson 1991-12-16 #> 1346 Scottie Phillips Scottie Phillips 1997-10-06 #> 1347 Darius Jackson Darius Jackson 1993-12-01 #> 1348 K.J. Malone K.J. Malone 1995-05-08 #> 1349 Antony Auclair Antony Auclair 1993-05-28 #> 1350 Jordan Akins Jordan Akins 1992-04-19 #> 1351 Brevin Jordan Brevin Jordan 2000-07-16 #> 1352 Ryan Izzo Ryan Izzo 1995-12-21 #> 1353 Pharaoh Brown Pharaoh Brown 1994-05-04 #> 1354 Paul Quessenberry Paul Quessenberry 1992-01-08 #> 1355 Taywan Taylor Taywan Taylor 1995-03-02 #> 1356 Chris Moore Chris Moore 1993-06-16 #> 1357 Keke Coutee Keke Coutee 1997-01-14 #> 1358 Jordan Veasy Jordan Veasy 1995-06-23 #> 1359 Nico Collins Nico Collins 1999-03-19 #> 1360 Alex Erickson Alex Erickson 1992-11-06 #> 1361 Chris Conley Chris Conley 1992-10-25 #> 1362 Artavis Scott Artavis Scott 1994-10-12 #> 1363 Brandin Cooks Brandin Cooks 1993-09-25 #> 1364 Donte Moncrief Donte Moncrief 1993-08-06 #> 1365 Anthony Miller Anthony Miller 1995-10-09 #> 1366 Andre Roberts Andre Roberts 1988-01-09 #> 1367 Marlon Williams Marlon Williams <NA> #> 1368 Ryan Kelly Ryan Kelly 1993-05-30 #> 1369 Joey Hunt Joey Hunt 1994-02-22 #> 1370 Andre Chachere Andre Chachere 1996-02-10 #> 1371 T.J. Carrie T.J. Carrie 1990-07-28 #> 1372 Rock Ya-Sin Rock Ya-Sin 1996-05-23 #> 1373 Xavier Rhodes Xavier Rhodes 1990-06-19 #> 1374 Anthony Chesley Anthony Chesley 1995-05-31 #> 1375 Holton Hill Holton Hill 1997-03-28 #> 1376 Isaiah Rodgers Isaiah Rodgers 1998-01-07 #> 1377 Kenny Moore Kenny Moore 1995-08-23 #> 1378 Marvell Tell Marvell Tell 1996-08-02 #> 1379 Khari Willis Khari Willis 1996-05-17 #> 1380 Ibraheim Campbell Ibraheim Campbell 1992-05-13 #> 1381 Nick Nelson Nick Nelson 1996-10-16 #> 1382 Julian Blackmon Julian Blackmon 1998-08-24 #> 1383 George Odum George Odum 1993-11-03 #> 1384 Rolan Milligan Rolan Milligan 1994-08-16 #> 1385 Shawn Davis Shawn Davis 1997-12-24 #> 1386 Sean Davis Sean Davis 1993-10-23 #> 1387 Christian Angulo Christian Angulo 1997-02-17 #> 1388 Kwity Paye Kwity Paye 1998-11-19 #> 1389 Kemoko Turay Kemoko Turay 1995-07-11 #> 1390 Isaac Rochell Isaac Rochell 1995-04-22 #> 1391 Al-Quadin Muhammad Al-Quadin Muhammad 1995-03-28 #> 1392 Dayo Odeyingbo Dayo Odeyingbo 1999-09-24 #> 1393 Ben Banogu Ben Banogu 1996-01-19 #> 1394 Damontre Moore Damontre Moore 1992-09-11 #> 1395 Chris Williams Chris Williams 1998-06-16 #> 1396 Tyquan Lewis Tyquan Lewis 1995-01-30 #> 1397 Antwaun Woods Antwaun Woods 1993-01-03 #> 1398 Kameron Cline Kameron Cline 1998-02-19 #> 1399 Taylor Stallworth Taylor Stallworth 1995-08-18 #> 1400 Grover Stewart Grover Stewart 1993-10-20 #> 1401 Robert Windsor Robert Windsor 1997-01-15 #> 1402 Andrew Brown Andrew Brown 1995-12-30 #> 1403 DeForest Buckner DeForest Buckner 1994-03-17 #> 1404 Danny Pinter Danny Pinter 1996-06-19 #> 1405 Rodrigo Blankenship Rodrigo Blankenship 1997-01-29 #> 1406 Eddy Pineiro Eddy Pineiro 1995-09-13 #> 1407 Curtis Bolton Curtis Bolton 1995-12-18 #> 1408 Malik Jefferson Malik Jefferson 1996-11-15 #> 1409 Darius Leonard Darius Leonard 1995-07-27 #> 1410 Isaiah Kaufusi Isaiah Kaufusi 1995-12-07 #> 1411 Matthew Adams Matthew Adams 1995-12-12 #> 1412 Najee Goode Najee Goode 1989-06-04 #> 1413 Skai Moore Skai Moore 1995-01-08 #> 1414 Bobby Okereke Bobby Okereke 1996-07-29 #> 1415 Anthony Butler Anthony Butler <NA> #> 1416 Jordan Glasgow Jordan Glasgow 1996-06-28 #> 1417 Chris Covington Chris Covington 1996-01-03 #> 1418 E.J. Speed E.J. Speed 1995-06-01 #> 1419 Zaire Franklin Zaire Franklin 1996-07-02 #> 1420 Luke Rhodes Luke Rhodes 1992-12-02 #> 1421 Mark Glowinski Mark Glowinski 1992-05-03 #> 1422 Will Fries Will Fries 1998-04-04 #> 1423 Braden Smith Braden Smith 1996-03-25 #> 1424 Chris Reed Chris Reed 1992-07-22 #> 1425 Jake Eldrenkamp Jake Eldrenkamp 1994-03-04 #> 1426 Quenton Nelson Quenton Nelson 1996-03-19 #> 1427 Sam Tevi Sam Tevi 1994-11-15 #> 1428 Julien Davenport Julien Davenport 1995-01-09 #> 1429 Eric Fisher Eric Fisher 1991-01-05 #> 1430 Will Holden Will Holden 1993-09-14 #> 1431 Austin Rehkow Austin Rehkow 1995-03-17 #> 1432 Rigoberto Sanchez Rigoberto Sanchez 1994-09-08 #> 1433 Sam Ehlinger Sam Ehlinger 1998-09-30 #> 1434 Chad Kelly Chad Kelly 1994-03-26 #> 1435 Brett Hundley Brett Hundley 1993-06-15 #> 1436 Jalen Morton Jalen Morton 1997-07-06 #> 1437 Carson Wentz Carson Wentz 1992-12-30 #> 1438 Jacob Eason Jacob Eason 1997-11-17 #> 1439 Deon Jackson Deon Jackson 1999-02-18 #> 1440 Nyheim Hines Nyheim Hines 1996-11-12 #> 1441 Jordan Wilkins Jordan Wilkins 1994-07-18 #> 1442 Darius Anderson Darius Anderson 1997-09-10 #> 1443 Jonathan Taylor Jonathan Taylor 1999-01-19 #> 1444 Bruce Anderson Bruce Anderson 1997-06-20 #> 1445 Marlon Mack Marlon Mack 1996-03-07 #> 1446 Paul Perkins Paul Perkins 1994-11-16 #> 1447 Benny LeMay Benny LeMay 1997-10-18 #> 1448 Carter O'Donnell Carter O'Donnell 1998-12-23 #> 1449 Kylen Granson Kylen Granson 1998-03-27 #> 1450 Graham Adomitis Graham Adomitis 1996-08-15 #> 1451 Jordan Thomas Jordan Thomas 1996-08-02 #> 1452 Andrew Vollert Andrew Vollert 1995-03-15 #> 1453 Jack Doyle Jack Doyle 1990-05-05 #> 1454 Mo Alie-Cox Mo Alie-Cox 1993-09-19 #> 1455 Noah Togiai Noah Togiai 1997-07-06 #> 1456 Farrod Green Farrod Green 1997-06-10 #> 1457 Dezmon Patmon Dezmon Patmon 1998-08-06 #> 1458 Parris Campbell Parris Campbell 1997-07-16 #> 1459 DeMichael Harris DeMichael Harris 1998-07-12 #> 1460 Quartney Davis Quartney Davis 1998-04-07 #> 1461 Mike Strachan Mike Strachan 1997-08-13 #> 1462 J.J. Nelson J.J. Nelson 1992-04-24 #> 1463 Al Riles Al Riles 1993-09-17 #> 1464 Ashton Dulin Ashton Dulin 1997-05-15 #> 1465 Gary Jennings Gary Jennings 1997-03-07 #> 1466 Zach Pascal Zach Pascal 1994-12-18 #> 1467 T.Y. Hilton T.Y. Hilton 1989-11-14 #> 1468 Tarik Black Tarik Black 1998-02-10 #> 1469 Tyler Vaughns Tyler Vaughns 1997-06-01 #> 1470 Michael Pittman Michael Pittman 1997-10-05 #> 1471 Shaquill Griffin Shaquill Griffin 1995-07-20 #> 1472 Lorenzo Burns Lorenzo Burns 1997-10-10 #> 1473 Brandon Rusnak Brandon Rusnak 1995-07-11 #> 1474 Corey Straughter Corey Straughter 1998-10-16 #> 1475 Sidney Jones Sidney Jones 1996-05-21 #> 1476 C.J. Henderson C.J. Henderson 1998-09-30 #> 1477 Jameson Houston Jameson Houston 1996-06-30 #> 1478 DJ Daniel DJ Daniel <NA> #> 1479 Chris Claybrooks Chris Claybrooks 1998-07-17 #> 1480 Tyson Campbell Tyson Campbell 2000-03-17 #> 1481 Tre Herndon Tre Herndon 1996-03-05 #> 1482 Jarrod Wilson Jarrod Wilson 1994-02-09 #> 1483 Daniel Thomas Daniel Thomas 1998-07-01 #> 1484 Rudy Ford Rudy Ford 1994-11-01 #> 1485 Andrew Wingard Andrew Wingard 1996-12-05 #> 1486 Andre Cisco Andre Cisco 2000-03-23 #> 1487 Josh Jones Josh Jones 1994-09-20 #> 1488 Rayshawn Jenkins Rayshawn Jenkins 1994-01-25 #> 1489 Aaron Patrick Aaron Patrick 1996-12-21 #> 1490 Jihad Ward Jihad Ward 1994-03-11 #> 1491 Taven Bryan Taven Bryan 1996-03-11 #> 1492 Adam Gotsis Adam Gotsis 1992-09-23 #> 1493 Jordan Smith Jordan Smith 1998-04-10 #> 1494 Josh Allen Josh Allen 1997-07-13 #> 1495 Roy Robertson-Harris Roy Robertson-Harris 1993-07-23 #> 1496 Dawuane Smoot Dawuane Smoot 1995-03-02 #> 1497 Rodney Gunter Rodney Gunter 1992-01-19 #> 1498 Lerentee McCray Lerentee McCray 1990-08-26 #> 1499 Daniel Ekuale Daniel Ekuale 1994-01-13 #> 1500 Doug Costin Doug Costin 1997-10-05 #> 1501 Kenny Randall Kenny Randall 1995-12-07 #> 1502 Malcom Brown Malcom Brown 1994-02-02 #> 1503 Daniel Ross Daniel Ross 1993-03-15 #> 1504 Davon Hamilton Davon Hamilton 1997-02-01 #> 1505 Jay Tufele Jay Tufele 1999-07-25 #> 1506 Josh Lambo Josh Lambo 1990-11-19 #> 1507 Chapelle Russell Chapelle Russell 1997-01-20 #> 1508 Shaquille Quarterman Shaquille Quarterman 1997-10-28 #> 1509 Quincy Williams Quincy Williams 1996-08-28 #> 1510 Dakota Allen Dakota Allen 1995-11-02 #> 1511 Damien Wilson Damien Wilson 1993-05-28 #> 1512 Dylan Moses Dylan Moses 1998-05-25 #> 1513 K'Lavon Chaisson K'Lavon Chaisson 1999-07-25 #> 1514 Leon Jacobs Leon Jacobs 1995-10-03 #> 1515 Myles Jack Myles Jack 1995-09-03 #> 1516 Ross Matiscik Ross Matiscik 1996-09-13 #> 1517 Dontavius Russell Dontavius Russell 1995-09-18 #> 1518 A.J. Cann A.J. Cann 1991-10-03 #> 1519 Andrew Norwell Andrew Norwell 1991-10-25 #> 1520 Tyler Shatley Tyler Shatley 1991-05-05 #> 1521 Ben Bartch Ben Bartch 1998-07-22 #> 1522 Brandon Linder Brandon Linder 1992-01-25 #> 1523 KC McDermott KC McDermott 1996-04-18 #> 1524 Tre'Vour Wallace-Simms Tre'Vour Wallace-Simms 1997-09-25 #> 1525 Austen Pleasants Austen Pleasants 1997-08-22 #> 1526 Garrett McGhin Garrett McGhin 1994-10-13 #> 1527 Walker Little Walker Little 1999-04-01 #> 1528 Will Richardson Will Richardson 1994-01-01 #> 1529 Derwin Gray Derwin Gray 1995-05-10 #> 1530 Cam Robinson Cam Robinson 1995-10-09 #> 1531 Jawaan Taylor Jawaan Taylor 1997-11-25 #> 1532 Logan Cooke Logan Cooke 1995-07-28 #> 1533 Jake Luton Jake Luton 1996-04-11 #> 1534 Trevor Lawrence Trevor Lawrence 1999-10-06 #> 1535 Gardner Minshew Gardner Minshew 1996-05-16 #> 1536 C.J. Beathard C.J. Beathard 1993-11-16 #> 1537 Devine Ozigbo Devine Ozigbo 1996-10-02 #> 1538 Nathan Cottrell Nathan Cottrell 1996-08-02 #> 1539 Carlos Hyde Carlos Hyde 1991-09-20 #> 1540 Travis Etienne Travis Etienne 1999-01-26 #> 1541 James Robinson James Robinson 1998-08-09 #> 1542 Dare Ogunbowale Dare Ogunbowale 1994-05-04 #> 1543 Jared Hilbers Jared Hilbers 1997-02-16 #> 1544 James O'Shaughnessy James O'Shaughnessy 1992-01-14 #> 1545 Matt Flanagan Matt Flanagan 1995-03-26 #> 1546 Luke Farrell Luke Farrell 1997-10-14 #> 1547 Chris Manhertz Chris Manhertz 1992-04-10 #> 1548 Ben Ellefson Ben Ellefson 1996-09-01 #> 1549 Tyler Davis Tyler Davis 1997-04-02 #> 1550 Tim Tebow Tim Tebow 1987-08-14 #> 1551 Jamal Agnew Jamal Agnew 1995-04-03 #> 1552 Terry Godwin Terry Godwin 1996-10-23 #> 1553 Tevin Jones Tevin Jones 1992-12-26 #> 1554 Marvin Jones Marvin Jones 1990-03-12 #> 1555 Jeff Cotton Jeff Cotton 1997-04-17 #> 1556 Pharoh Cooper Pharoh Cooper 1995-03-07 #> 1557 Lamar Atkins Lamar Atkins 1994-02-25 #> 1558 Josh Imatorbhebhe Josh Imatorbhebhe 1998-04-12 #> 1559 Josh Hammond Josh Hammond 1998-07-24 #> 1560 Phillip Dorsett Phillip Dorsett 1993-01-05 #> 1561 Laquon Treadwell Laquon Treadwell 1995-06-14 #> 1562 Tavon Austin Tavon Austin 1991-03-15 #> 1563 Laviska Shenault Laviska Shenault 1998-10-05 #> 1564 D.J. Chark D.J. Chark 1996-09-23 #> 1565 Tim Jones Tim Jones <NA> #> 1566 Jalen Camp Jalen Camp 1998-07-10 #> 1567 Collin Johnson Collin Johnson 1997-09-23 #> 1568 Dredrick Snelson Dredrick Snelson <NA> #> 1569 Austin Blythe Austin Blythe 1992-06-16 #> 1570 Alex Officer Alex Officer 1995-10-28 #> 1571 Darryl Williams Darryl Williams 1997-06-10 #> 1572 Thakarius Keyes Thakarius Keyes 1997-11-09 #> 1573 Rashad Fenton Rashad Fenton 1997-02-17 #> 1574 Chris Lammons Chris Lammons 1996-01-31 #> 1575 Charvarius Ward Charvarius Ward 1996-05-16 #> 1576 Deandre Baker Deandre Baker 1997-09-04 #> 1577 Devon Key Devon Key <NA> #> 1578 Jaylon McClain-Sapp Jaylon McClain-Sapp 1998-07-16 #> 1579 Will Parks Will Parks 1994-07-29 #> 1580 Juan Thornhill Juan Thornhill 1995-10-19 #> 1581 Mike Hughes Mike Hughes 1997-02-11 #> 1582 Manny Patterson Manny Patterson 1998-05-31 #> 1583 Armani Watts Armani Watts 1996-03-19 #> 1584 Daniel Sorensen Daniel Sorensen 1990-03-05 #> 1585 L'Jarius Sneed L'Jarius Sneed 1997-01-21 #> 1586 Zayne Anderson Zayne Anderson <NA> #> 1587 DiCaprio Bootle DiCaprio Bootle 1997-09-17 #> 1588 Rodney Clemons Rodney Clemons 1996-12-28 #> 1589 Marlon Character Marlon Character <NA> #> 1590 Tyrann Mathieu Tyrann Mathieu 1992-05-13 #> 1591 Alex Okafor Alex Okafor 1991-02-08 #> 1592 Tim Ward Tim Ward 1997-08-11 #> 1593 Joshua Kaindoh Joshua Kaindoh 1999-12-27 #> 1594 Taco Charlton Taco Charlton 1994-11-07 #> 1595 Frank Clark Frank Clark 1993-06-14 #> 1596 Demone Harris Demone Harris 1995-12-30 #> 1597 Michael Danna Michael Danna 1997-12-01 #> 1598 Malik Herring Malik Herring <NA> #> 1599 Austin Edwards Austin Edwards 1997-08-27 #> 1600 Khalen Saunders Khalen Saunders 1996-08-09 #> 1601 Tyler Clark Tyler Clark 1998-07-25 #> 1602 Tershawn Wharton Tershawn Wharton 1998-06-25 #> 1603 Jarran Reed Jarran Reed 1992-12-16 #> 1604 Derrick Nnadi Derrick Nnadi 1996-05-09 #> 1605 Chris Jones Chris Jones 1994-07-03 #> 1606 Michael Burton Michael Burton 1992-02-01 #> 1607 Bryan Witzmann Bryan Witzmann 1990-06-16 #> 1608 Harrison Butker Harrison Butker 1995-07-14 #> 1609 Dorian O'Daniel Dorian O'Daniel 1994-09-04 #> 1610 Riley Cole Riley Cole 1997-11-03 #> 1611 Willie Gay Willie Gay 1998-02-15 #> 1612 Anthony Hitchens Anthony Hitchens 1992-06-10 #> 1613 Ben Niemann Ben Niemann 1995-07-27 #> 1614 Emmanuel Smith Emmanuel Smith 1995-07-25 #> 1615 Darius Harris Darius Harris 1996-01-17 #> 1616 Nick Bolton Nick Bolton 2000-03-10 #> 1617 Omari Cobb Omari Cobb 1997-05-31 #> 1618 James Winchester James Winchester 1989-08-06 #> 1619 Drew Scott Drew Scott 1995-03-12 #> 1620 Andrew Wylie Andrew Wylie 1994-08-19 #> 1621 Kyle Long Kyle Long 1988-12-05 #> 1622 Laurent Duvernay-Tardif Laurent Duvernay-Tardif 1991-02-11 #> 1623 Joe Thuney Joe Thuney 1992-11-18 #> 1624 Nick Allegretti Nick Allegretti 1996-04-21 #> 1625 Creed Humphrey Creed Humphrey 1999-06-28 #> 1626 Trey Smith Trey Smith 1999-06-16 #> 1627 Mike Remmers Mike Remmers 1989-04-11 #> 1628 Lucas Niang Lucas Niang 1998-08-19 #> 1629 Orlando Brown Orlando Brown 1996-05-02 #> 1630 Devondre Seymour Devondre Seymour <NA> #> 1631 Wyatt Miller Wyatt Miller 1995-10-23 #> 1632 Tommy Townsend Tommy Townsend 1996-11-12 #> 1633 Anthony Gordon Anthony Gordon 1996-08-28 #> 1634 Patrick Mahomes Patrick Mahomes 1995-09-17 #> 1635 Chad Henne Chad Henne 1985-07-02 #> 1636 Shane Buechele Shane Buechele 1998-01-08 #> 1637 T.J. Linta T.J. Linta <NA> #> 1638 Jerick McKinnon Jerick McKinnon 1992-05-03 #> 1639 Darwin Thompson Darwin Thompson 1997-02-12 #> 1640 Elijah McGuire Elijah McGuire 1994-06-01 #> 1641 Derrick Gore Derrick Gore 1994-12-13 #> 1642 Darrel Williams Darrel Williams 1995-04-15 #> 1643 Clyde Edwards-Helaire Clyde Edwards-Helaire 1999-04-11 #> 1644 Yasir Durant Yasir Durant 1998-05-21 #> 1645 Prince Tega Wanogho Prince Tega Wanogho 1997-11-22 #> 1646 Noah Gray Noah Gray 1999-04-30 #> 1647 Travis Kelce Travis Kelce 1989-10-05 #> 1648 Blake Bell Blake Bell 1991-08-07 #> 1649 Evan Baylis Evan Baylis 1993-11-18 #> 1650 Nick Keizer Nick Keizer 1995-05-02 #> 1651 Demarcus Robinson Demarcus Robinson 1994-09-21 #> 1652 Cornell Powell Cornell Powell 1997-10-30 #> 1653 Maurice Ffrench Maurice Ffrench 1998-01-01 #> 1654 Elijah Marks Elijah Marks <NA> #> 1655 Dalton Schoen Dalton Schoen 1996-10-13 #> 1656 Chad Williams Chad Williams 1994-10-19 #> 1657 Joe Fortson Joe Fortson 1995-12-07 #> 1658 Antonio Callaway Antonio Callaway 1997-01-09 #> 1659 Mecole Hardman Mecole Hardman 1998-03-12 #> 1660 Daurice Fountain Daurice Fountain 1995-12-22 #> 1661 Joe Forson Joe Forson 1995-12-07 #> 1662 Darrius Shepherd Darrius Shepherd 1995-11-01 #> 1663 Chris Finke Chris Finke 1996-05-02 #> 1664 Jamire Jordan Jamire Jordan <NA> #> 1665 Gehrig Dieter Gehrig Dieter 1993-02-24 #> 1666 Andre Lindsey Andre Lindsey <NA> #> 1667 Byron Pringle Byron Pringle 1993-11-17 #> 1668 Tyreek Hill Tyreek Hill 1994-03-01 #> 1669 Anas Hasic Anas Hasic <NA> #> 1670 Marcus Kemp Marcus Kemp 1995-08-14 #> 1671 Brian Allen Brian Allen 1995-10-11 #> 1672 David Long David Long 1998-02-06 #> 1673 Donte Deayon Donte Deayon 1994-01-28 #> 1674 Jalen Ramsey Jalen Ramsey 1994-10-24 #> 1675 Darious Williams Darious Williams 1993-03-15 #> 1676 Donovan Olumba Donovan Olumba 1995-09-26 #> 1677 Juju Hughes Juju Hughes 1998-07-19 #> 1678 Dayan Lake Dayan Lake 1997-08-01 #> 1679 Chucky Williams Chucky Williams 1995-03-18 #> 1680 Brontae Harris Brontae Harris 1996-11-08 #> 1681 Troy Warner Troy Warner 1998-05-09 #> 1682 Robert Rochell Robert Rochell 1998-04-26 #> 1683 Paris Ford Paris Ford 1998-06-06 #> 1684 Jovan Grant Jovan Grant 1997-12-09 #> 1685 Nick Scott Nick Scott 1995-05-17 #> 1686 Jordan Fuller Jordan Fuller 1998-03-04 #> 1687 Taylor Rapp Taylor Rapp 1997-12-22 #> 1688 Jake Gervase Jake Gervase 1995-09-18 #> 1689 Tyler Hall Tyler Hall 1998-10-31 #> 1690 J.R. Reed J.R. Reed 1995-03-11 #> 1691 Tyrique McGhee Tyrique McGhee 1998-08-11 #> 1692 Terrell Burgess Terrell Burgess 1998-12-11 #> 1693 Kareem Orr Kareem Orr 1997-01-02 #> 1694 John Daka John Daka 1997-12-07 #> 1695 Jonah Williams Jonah Williams 1995-08-17 #> 1696 Earnest Brown Earnest Brown 1999-01-08 #> 1697 Dalton Keene Dalton Keene 1994-04-26 #> 1698 Eric Banks Eric Banks 1998-01-30 #> 1699 Greg Gaines Greg Gaines 1996-05-06 #> 1700 Sebastian Joseph-Day Sebastian Joseph-Day 1995-03-21 #> 1701 Aaron Donald Aaron Donald 1991-05-23 #> 1702 A'Shawn Robinson A'Shawn Robinson 1995-03-21 #> 1703 Bobby Brown Bobby Brown 2000-08-07 #> 1704 Tyrell Thompson Tyrell Thompson 2000-03-07 #> 1705 Michael Hoecht Michael Hoecht 1997-10-05 #> 1706 Marquise Copeland Marquise Copeland 1997-05-09 #> 1707 George Silvanic George Silvanic <NA> #> 1708 Austin Corbett Austin Corbett 1995-12-17 #> 1709 Anthony McMeans Anthony McMeans <NA> #> 1710 Austin MacGinnis Austin MacGinnis 1995-05-04 #> 1711 Matt Gay Matt Gay 1994-03-15 #> 1712 Kenny Young Kenny Young 1994-11-15 #> 1713 Max Roberts Max Roberts <NA> #> 1714 Derrick Moncrief Derrick Moncrief 1993-06-25 #> 1715 Chris Garrett Chris Garrett 1998-07-15 #> 1716 Troy Reeder Troy Reeder 1994-09-13 #> 1717 Ernest Jones Ernest Jones 1999-11-22 #> 1718 Ogbonnia Okoronkwo Ogbonnia Okoronkwo 1995-04-24 #> 1719 Leonard Floyd Leonard Floyd 1992-09-08 #> 1720 Micah Kiser Micah Kiser 1995-01-25 #> 1721 Justin Lawler Justin Lawler 1994-12-23 #> 1722 Justin Hollins Justin Hollins 1996-01-15 #> 1723 Christian Rozeboom Christian Rozeboom 1997-01-30 #> 1724 Terrell Lewis Terrell Lewis 1998-08-25 #> 1725 Travin Howard Travin Howard 1996-05-10 #> 1726 Steven Wirtel Steven Wirtel 1997-10-03 #> 1727 Matt Orzech Matt Orzech 1995-04-12 #> 1728 Jamil Demby Jamil Demby 1996-06-20 #> 1729 Jeremiah Kolone Jeremiah Kolone 1994-10-23 #> 1730 Joseph Noteboom Joseph Noteboom 1995-06-19 #> 1731 Rob Havenstein Rob Havenstein 1992-05-13 #> 1732 Chandler Brewer Chandler Brewer 1997-06-12 #> 1733 David Edwards David Edwards 1997-03-20 #> 1734 Max Pircher Max Pircher 1999-09-07 #> 1735 Jordan Meredith Jordan Meredith 1998-01-04 #> 1736 Tremayne Anchrum Tremayne Anchrum 1998-06-24 #> 1737 Coleman Shelton Coleman Shelton 1995-07-28 #> 1738 Bobby Evans Bobby Evans 1997-03-24 #> 1739 Alaric Jackson Alaric Jackson 1998-07-14 #> 1740 Ryan Pope Ryan Pope 1996-10-17 #> 1741 Andrew Whitworth Andrew Whitworth 1981-12-12 #> 1742 Corey Bojorquez Corey Bojorquez 1996-09-13 #> 1743 Brandon Wright Brandon Wright 1997-02-18 #> 1744 Johnny Hekker Johnny Hekker 1990-02-08 #> 1745 John Wolford John Wolford 1995-10-16 #> 1746 Devlin Hodges Devlin Hodges 1996-04-12 #> 1747 Matthew Stafford Matthew Stafford 1988-02-07 #> 1748 Bryce Perkins Bryce Perkins 1996-12-20 #> 1749 Otis Anderson Otis Anderson <NA> #> 1750 Cam Akers Cam Akers 1999-06-22 #> 1751 Raymond Calais Raymond Calais 1998-04-02 #> 1752 Xavier Jones Xavier Jones 1997-08-24 #> 1753 Darrell Henderson Darrell Henderson 1997-08-19 #> 1754 Jake Funk Jake Funk 1998-01-11 #> 1755 Brycen Hopkins Brycen Hopkins 1997-03-27 #> 1756 Jacob Harris Jacob Harris 1997-04-16 #> 1757 Tyler Higbee Tyler Higbee 1993-01-01 #> 1758 Kyle Markway Kyle Markway 1997-03-04 #> 1759 Kendall Blanton Kendall Blanton 1995-11-10 #> 1760 Johnny Mundt Johnny Mundt 1994-11-23 #> 1761 Robert Woods Robert Woods 1992-04-10 #> 1762 Landen Akers Landen Akers 1997-07-07 #> 1763 Jordan Harris Jordan Harris <NA> #> 1764 Jeremiah Haydel Jeremiah Haydel 1999-03-25 #> 1765 Ben Skowronek Ben Skowronek 1997-06-27 #> 1766 Laquvionte Gonzalez Laquvionte Gonzalez <NA> #> 1767 Van Jefferson Van Jefferson 1996-07-26 #> 1768 Trishton Jackson Trishton Jackson 1998-03-09 #> 1769 J.J. Koski J.J. Koski 1996-12-27 #> 1770 DeSean Jackson DeSean Jackson 1986-12-01 #> 1771 Cooper Kupp Cooper Kupp 1993-06-15 #> 1772 Justin Sumpter Justin Sumpter <NA> #> 1773 Aaron Lacombe Aaron Lacombe 1995-04-06 #> 1774 Tutu Atwell Tutu Atwell 1999-10-07 #> 1775 Corey Linsley Corey Linsley 1991-07-27 #> 1776 Dillon Deboer Dillon Deboer 1994-07-26 #> 1777 Tevaughn Campbell Tevaughn Campbell 1993-06-14 #> 1778 Brandon Facyson Brandon Facyson 1994-09-08 #> 1779 Asante Samuel Asante Samuel 1999-10-03 #> 1780 Ryan Smith Ryan Smith 1993-09-07 #> 1781 Michael Davis Michael Davis 1995-01-06 #> 1782 John Brannon John Brannon 1998-03-10 #> 1783 Donte Vaughn Donte Vaughn 1997-10-12 #> 1784 Chris Harris Chris Harris 1989-06-18 #> 1785 Kemon Hall Kemon Hall 1997-06-02 #> 1786 Nasir Adderley Nasir Adderley 1997-05-31 #> 1787 Ben DeLuca Ben DeLuca 1998-04-09 #> 1788 Alohi Gilman Alohi Gilman 1997-09-17 #> 1789 Mark Webb Mark Webb 1998-09-10 #> 1790 KJ Sails KJ Sails 1997-05-02 #> 1791 Derwin James Derwin James 1996-08-03 #> 1792 Jessie Lemonier Jessie Lemonier 1997-01-31 #> 1793 Chris Rumph Chris Rumph 1998-10-19 #> 1794 Joey Bosa Joey Bosa 1995-07-11 #> 1795 Joe Gaziano Joe Gaziano 1996-09-27 #> 1796 Tevin Lawson Tevin Lawson <NA> #> 1797 Jerry Tillery Jerry Tillery 1996-10-08 #> 1798 Linval Joseph Linval Joseph 1988-10-10 #> 1799 Christian Covington Christian Covington 1993-10-16 #> 1800 Chris Okoye Chris Okoye 1996-06-22 #> 1801 Forrest Merrill Forrest Merrill 1996-08-15 #> 1802 T.J. Smith T.J. Smith 1997-04-19 #> 1803 Justin Jones Justin Jones 1996-08-28 #> 1804 Cortez Broughton Cortez Broughton 1996-09-02 #> 1805 Willie Yarbary Willie Yarbary 1996-06-18 #> 1806 Jared Goldwire Jared Goldwire <NA> #> 1807 Gabe Nabers Gabe Nabers 1997-11-05 #> 1808 Michael Badgley Michael Badgley 1995-07-28 #> 1809 Tristan Vizcaino Tristan Vizcaino 1996-07-31 #> 1810 Alex Kessman Alex Kessman 1998-01-02 #> 1811 Drue Tranquill Drue Tranquill 1995-08-15 #> 1812 Amen Ogbongbemiga Amen Ogbongbemiga 1998-09-04 #> 1813 Kyzir White Kyzir White 1996-03-24 #> 1814 Kenneth Murray Kenneth Murray 1998-11-16 #> 1815 Davin Bellamy Davin Bellamy 1994-12-27 #> 1816 Damon Lloyd Damon Lloyd 1998-05-08 #> 1817 Uchenna Nwosu Uchenna Nwosu 1996-12-28 #> 1818 Cole Christiansen Cole Christiansen 1997-07-30 #> 1819 Emeke Egbule Emeke Egbule 1996-10-13 #> 1820 Nick Niemann Nick Niemann 1997-12-02 #> 1821 Kyler Fackrell Kyler Fackrell 1991-11-25 #> 1822 Cole Mazza Cole Mazza 1995-02-14 #> 1823 Ryan Langan Ryan Langan 1999-02-22 #> 1824 Matt Overton Matt Overton 1985-07-06 #> 1825 Breiden Fehoko Breiden Fehoko 1996-10-15 #> 1826 Nathan Gilliam Nathan Gilliam 1997-07-06 #> 1827 Oday Aboushi Oday Aboushi 1991-06-05 #> 1828 Matt Feiler Matt Feiler 1992-07-07 #> 1829 Scott Quessenberry Scott Quessenberry 1995-03-23 #> 1830 Kyle Spalding Kyle Spalding 1998-08-08 #> 1831 Darius Harper Darius Harper 1997-10-10 #> 1832 Ryan Hunter Ryan Hunter 1995-04-01 #> 1833 Rashawn Slater Rashawn Slater 1999-03-26 #> 1834 Brenden Jaimes Brenden Jaimes 1999-05-28 #> 1835 Trey Pipkins Trey Pipkins 1996-09-05 #> 1836 Storm Norton Storm Norton 1994-05-16 #> 1837 Bryan Bulaga Bryan Bulaga 1989-03-21 #> 1838 Tyree St. Louis Tyree St. Louis 1997-08-05 #> 1839 Lachlan Edwards Lachlan Edwards 1992-04-27 #> 1840 Ty Long Ty Long 1993-04-06 #> 1841 K.J. Costello K.J. Costello 1997-06-07 #> 1842 Eli Jenkins Eli Jenkins 1994-08-07 #> 1843 Chase Daniel Chase Daniel 1986-10-07 #> 1844 Easton Stick Easton Stick 1995-09-15 #> 1845 Justin Herbert Justin Herbert 1998-03-10 #> 1846 Joshua Kelley Joshua Kelley 1997-11-20 #> 1847 Austin Ekeler Austin Ekeler 1995-05-17 #> 1848 Darius Bradwell Darius Bradwell 1997-05-15 #> 1849 Larry Rountree Larry Rountree 1998-02-13 #> 1850 Justin Jackson Justin Jackson 1996-04-22 #> 1851 Matt Seybert Matt Seybert 1997-05-02 #> 1852 Hunter Kampmoyer Hunter Kampmoyer 1998-02-06 #> 1853 Tre' McKitty Tre' McKitty 1999-01-12 #> 1854 Donald Parham Donald Parham 1997-08-16 #> 1855 Matt Sokol Matt Sokol 1995-11-09 #> 1856 Jared Cook Jared Cook 1987-04-07 #> 1857 Stephen Anderson Stephen Anderson 1993-01-30 #> 1858 Dontre Wilson Dontre Wilson <NA> #> 1859 John Hurst John Hurst 1996-11-02 #> 1860 Tyron Johnson Tyron Johnson 1996-01-08 #> 1861 Jason Moore Jason Moore 1995-06-23 #> 1862 Keenan Allen Keenan Allen 1992-04-27 #> 1863 K.J. Hill K.J. Hill 1997-09-15 #> 1864 Josh Palmer Josh Palmer 1999-09-22 #> 1865 Michael Bandy Michael Bandy 1997-12-05 #> 1866 Austin Proehl Austin Proehl 1996-06-17 #> 1867 Eli Stove Eli Stove <NA> #> 1868 Joe Reed Joe Reed 1998-01-04 #> 1869 Jalen Guyton Jalen Guyton 1997-06-07 #> 1870 Mike Williams Mike Williams 1994-10-04 #> 1871 Jimmy Morrissey Jimmy Morrissey 1998-06-09 #> 1872 Nick Martin Nick Martin 1993-04-29 #> 1873 Keisean Nixon Keisean Nixon 1997-06-22 #> 1874 Nate Hobbs Nate Hobbs 1999-06-24 #> 1875 Amik Robertson Amik Robertson 1998-07-06 #> 1876 De'Vante Bausby De'Vante Bausby 1993-01-15 #> 1877 D.J. White D.J. White 1993-09-09 #> 1878 Damon Arnette Damon Arnette 1996-09-02 #> 1879 D.J. Killings D.J. Killings 1995-08-09 #> 1880 Trayvon Mullen Trayvon Mullen 1997-09-20 #> 1881 Casey Hayward Casey Hayward 1989-09-09 #> 1882 Isaiah Johnson Isaiah Johnson 1995-12-20 #> 1883 Rasul Douglas Rasul Douglas 1995-08-29 #> 1884 Nevin Lawson Nevin Lawson 1991-04-23 #> 1885 Shaun Crawford Shaun Crawford <NA> #> 1886 Blidi Wreh-Wilson Blidi Wreh-Wilson 1989-12-05 #> 1887 TJ Morrison TJ Morrison <NA> #> 1888 Roderic Teamer Roderic Teamer 1997-05-12 #> 1889 Kemah Siverand Kemah Siverand 1996-11-12 #> 1890 Trevon Moehrig Trevon Moehrig 1999-06-16 #> 1891 Tyree Gillespie Tyree Gillespie 1998-09-05 #> 1892 Dallin Leavitt Dallin Leavitt 1995-10-21 #> 1893 Johnathan Abram Johnathan Abram 1996-10-25 #> 1894 Karl Joseph Karl Joseph 1993-09-08 #> 1895 Divine Deablo Divine Deablo 1998-08-17 #> 1896 Carl Nassib Carl Nassib 1993-04-12 #> 1897 Darius Philon Darius Philon 1994-01-22 #> 1898 Clelin Ferrell Clelin Ferrell 1997-05-17 #> 1899 Malcolm Koonce Malcolm Koonce 1998-06-06 #> 1900 Yannick Ngakoue Yannick Ngakoue 1995-03-31 #> 1901 Kendal Vickers Kendal Vickers 1995-05-23 #> 1902 Maxx Crosby Maxx Crosby 1997-08-22 #> 1903 Gerri Green Gerri Green 1995-09-14 #> 1904 Darius Stills Darius Stills 1998-05-01 #> 1905 Quinton Jefferson Quinton Jefferson 1993-03-31 #> 1906 Lee Autry Lee Autry 1996-07-29 #> 1907 Ethan Westbrooks Ethan Westbrooks 1990-11-15 #> 1908 Johnathan Hankins Johnathan Hankins 1992-03-30 #> 1909 Solomon Thomas Solomon Thomas 1995-12-20 #> 1910 Matt Dickerson Matt Dickerson 1995-11-09 #> 1911 Niles Scott Niles Scott 1995-09-30 #> 1912 Gerald McCoy Gerald McCoy 1988-02-25 #> 1913 Alec Ingold Alec Ingold 1996-07-09 #> 1914 Nick Sharga Nick Sharga <NA> #> 1915 Jordan Wade Jordan Wade <NA> #> 1916 John Simpson John Simpson 1997-08-19 #> 1917 Daniel Carlson Daniel Carlson 1995-01-23 #> 1918 Asmar Bilal Asmar Bilal 1997-04-12 #> 1919 Nicholas Morrow Nicholas Morrow 1995-07-10 #> 1920 Javin White Javin White 1997-02-21 #> 1921 Nick Kwiatkoski Nick Kwiatkoski 1993-05-26 #> 1922 Max Richardson Max Richardson 1998-01-22 #> 1923 Tanner Muse Tanner Muse 1996-09-06 #> 1924 Darron Lee Darron Lee 1994-10-18 #> 1925 Cory Littleton Cory Littleton 1993-11-18 #> 1926 Te'von Coney Te'von Coney 1997-06-10 #> 1927 Ukeme Eligwe Ukeme Eligwe 1994-04-27 #> 1928 James Onwualu James Onwualu 1994-09-04 #> 1929 Liam McCullough Liam McCullough 1997-06-05 #> 1930 Trent Sieg Trent Sieg 1995-05-19 #> 1931 Bradley Northnagel Bradley Northnagel 1994-01-29 #> 1932 Richie Incognito Richie Incognito 1983-07-05 #> 1933 Parker Ehinger Parker Ehinger 1992-12-30 #> 1934 Lester Cotton Lester Cotton 1996-02-20 #> 1935 Denzelle Good Denzelle Good 1991-03-08 #> 1936 Jeremiah Poutasi Jeremiah Poutasi 1994-08-07 #> 1937 Patrick Omameh Patrick Omameh 1989-12-29 #> 1938 Jaryd Jones-Smith Jaryd Jones-Smith 1995-09-03 #> 1939 Brandon Parker Brandon Parker 1995-10-21 #> 1940 Kamaal Seymour Kamaal Seymour 1996-04-27 #> 1941 Andre James Andre James 1997-05-02 #> 1942 Donald Penn Donald Penn 1983-04-27 #> 1943 Alex Leatherwood Alex Leatherwood 1999-01-05 #> 1944 Kolton Miller Kolton Miller 1995-09-02 #> 1945 Sam Young Sam Young 1987-06-24 #> 1946 Devery Hamilton Devery Hamilton 1998-04-19 #> 1947 A.J. Cole A.J. Cole 1995-11-27 #> 1948 Corliss Waitman Corliss Waitman 1995-07-21 #> 1949 Derek Carr Derek Carr 1991-03-28 #> 1950 Case Cookus Case Cookus 1995-10-06 #> 1951 Kyle Sloter Kyle Sloter 1994-02-07 #> 1952 Nathan Peterman Nathan Peterman 1994-05-04 #> 1953 Marcus Mariota Marcus Mariota 1993-10-30 #> 1954 Bo Scarbrough Bo Scarbrough 1996-09-29 #> 1955 Josh Jacobs Josh Jacobs 1998-02-11 #> 1956 Kenyan Drake Kenyan Drake 1994-01-26 #> 1957 BJ Emmons BJ Emmons 1997-07-03 #> 1958 Jalen Richard Jalen Richard 1993-10-15 #> 1959 Theo Riddick Theo Riddick 1991-05-04 #> 1960 Trey Ragas Trey Ragas 1996-11-07 #> 1961 Garrett Groshek Garrett Groshek 1997-08-02 #> 1962 Matt Bushman Matt Bushman 1995-11-03 #> 1963 Nick Bowers Nick Bowers 1996-05-26 #> 1964 Carson Williams Carson Williams <NA> #> 1965 Nick O'Leary Nick O'Leary 1992-08-31 #> 1966 Darren Waller Darren Waller 1992-09-13 #> 1967 Derek Carrier Derek Carrier 1990-07-25 #> 1968 Alex Ellis Alex Ellis 1993-02-10 #> 1969 Foster Moreau Foster Moreau 1997-05-06 #> 1970 Robert Davis Robert Davis 1995-04-02 #> 1971 Henry Ruggs Henry Ruggs 1999-01-24 #> 1972 Caleb Scott Caleb Scott 1996-02-26 #> 1973 Trey Quinn Trey Quinn 1995-12-07 #> 1974 DJ Turner DJ Turner 1997-01-18 #> 1975 John Brown John Brown 1990-04-03 #> 1976 Zay Jones Zay Jones 1995-03-30 #> 1977 Jalin Marshall Jalin Marshall 1995-07-21 #> 1978 Hunter Renfrow Hunter Renfrow 1995-12-21 #> 1979 Marcell Ateman Marcell Ateman 1994-09-16 #> 1980 Bryan Edwards Bryan Edwards 1998-11-13 #> 1981 Dillon Stoner Dillon Stoner 1998-02-06 #> 1982 Keelan Doss Keelan Doss 1996-03-21 #> 1983 Willie Snead Willie Snead 1992-10-17 #> 1984 Cameron Tom Cameron Tom 1995-06-21 #> 1985 Matt Skura Matt Skura 1993-02-17 #> 1986 Jamal Perry Jamal Perry 1994-10-23 #> 1987 Trill Williams Trill Williams 1999-12-29 #> 1988 Byron Jones Byron Jones 1992-09-26 #> 1989 Akeem King Akeem King 1992-08-29 #> 1990 Jaytlin Askew Jaytlin Askew 1998-10-24 #> 1991 Terrell Bonds Terrell Bonds 1996-07-22 #> 1992 Javaris Davis Javaris Davis 1996-12-26 #> 1993 Eric Rowe Eric Rowe 1992-10-03 #> 1994 Jason McCourty Jason McCourty 1987-08-13 #> 1995 Nik Needham Nik Needham 1996-11-04 #> 1996 Cre'von LeBlanc Cre'von LeBlanc 1994-07-25 #> 1997 Xavien Howard Xavien Howard 1993-07-04 #> 1998 Justin Coleman Justin Coleman 1993-03-27 #> 1999 Tino Ellis Tino Ellis 1997-10-15 #> 2000 Jevon Holland Jevon Holland 2000-03-03 #> 2001 Brandon Jones Brandon Jones 1998-04-02 #> 2002 Noah Igbinoghene Noah Igbinoghene 1999-11-27 #> 2003 Nate Holley Nate Holley 1994-12-05 #> 2004 Nick Coe Nick Coe 1997-08-12 #> 2005 Tyshun Render Tyshun Render 1997-03-28 #> 2006 Emmanuel Ogbah Emmanuel Ogbah 1993-11-06 #> 2007 Jason Strowbridge Jason Strowbridge 1996-09-10 #> 2008 Jonathan Ledbetter Jonathan Ledbetter 1997-09-12 #> 2009 Durval Queiroz Neto Durval Queiroz Neto 1992-08-27 #> 2010 Zach Sieler Zach Sieler 1995-09-07 #> 2011 Benito Jones Benito Jones 1997-11-27 #> 2012 John Jenkins John Jenkins 1989-07-11 #> 2013 Christian Wilkins Christian Wilkins 1995-12-20 #> 2014 Ray Smith Ray Smith 1997-01-18 #> 2015 Adam Butler Adam Butler 1994-04-12 #> 2016 Jerome Johnson Jerome Johnson 1997-12-04 #> 2017 Raekwon Davis Raekwon Davis 1997-08-21 #> 2018 Carl Tucker Carl Tucker 1997-02-06 #> 2019 Tyler Marz Tyler Marz 1992-09-09 #> 2020 Robert Jones Robert Jones 1999-01-28 #> 2021 Jason Sanders Jason Sanders 1995-11-16 #> 2022 Benardrick McKinney Benardrick McKinney 1992-11-19 #> 2023 Andrew Van Ginkel Andrew Van Ginkel 1995-07-01 #> 2024 Josh Harvey-Clemons Josh Harvey-Clemons 1994-02-20 #> 2025 Vince Biegel Vince Biegel 1993-07-02 #> 2026 Duke Riley Duke Riley 1994-08-09 #> 2027 Calvin Munson Calvin Munson 1994-12-27 #> 2028 Shaquem Griffin Shaquem Griffin 1995-07-20 #> 2029 Sam Eguavoen Sam Eguavoen 1993-02-22 #> 2030 Kylan Johnson Kylan Johnson 1996-12-23 #> 2031 Jerome Baker Jerome Baker 1996-12-25 #> 2032 Elandon Roberts Elandon Roberts 1994-04-22 #> 2033 Jaelan Phillips Jaelan Phillips 1999-05-28 #> 2034 Brennan Scarlett Brennan Scarlett 1993-07-31 #> 2035 Rex Sunahara Rex Sunahara 1996-10-09 #> 2036 Blake Ferguson Blake Ferguson 1997-04-21 #> 2037 Jesse Davis Jesse Davis 1991-09-15 #> 2038 D.J. Fluker D.J. Fluker 1991-03-13 #> 2039 Robert Hunt Robert Hunt 1996-08-25 #> 2040 Jermaine Eluemunor Jermaine Eluemunor 1994-12-13 #> 2041 Solomon Kindley Solomon Kindley 1997-07-03 #> 2042 Michael Deiter Michael Deiter 1996-09-03 #> 2043 Greg Little Greg Little 1997-11-04 #> 2044 Adam Pankey Adam Pankey 1994-02-02 #> 2045 Larnel Coleman Larnel Coleman 1998-06-22 #> 2046 Austin Jackson Austin Jackson 1999-08-11 #> 2047 Liam Eichenberg Liam Eichenberg 1998-01-19 #> 2048 Timon Parris Timon Parris 1995-09-11 #> 2049 Michael Palardy Michael Palardy 1992-07-06 #> 2050 Jacoby Brissett Jacoby Brissett 1992-12-11 #> 2051 Tua Tagovailoa Tua Tagovailoa 1998-03-02 #> 2052 Reid Sinnett Reid Sinnett 1997-02-05 #> 2053 Patrick Laird Patrick Laird 1995-08-17 #> 2054 Salvon Ahmed Salvon Ahmed 1998-12-30 #> 2055 Myles Gaskin Myles Gaskin 1997-02-15 #> 2056 Gerrid Doaks Gerrid Doaks 1998-06-09 #> 2057 Jordan Scarlett Jordan Scarlett 1996-02-09 #> 2058 Malcolm Brown Malcolm Brown 1993-05-15 #> 2059 Clayton Fejedelem Clayton Fejedelem 1993-06-02 #> 2060 Cethan Carter Cethan Carter 1993-09-05 #> 2061 Kalif Jackson Kalif Jackson <NA> #> 2062 Sal Cannella Sal Cannella <NA> #> 2063 Durham Smythe Durham Smythe 1995-08-09 #> 2064 Adam Shaheen Adam Shaheen 1994-10-24 #> 2065 Jibri Blount Jibri Blount 1996-10-21 #> 2066 Chris Myarick Chris Myarick 1995-10-06 #> 2067 Carson Meier Carson Meier 1995-06-29 #> 2068 Mike Gesicki Mike Gesicki 1995-10-03 #> 2069 Hunter Long Hunter Long 1998-08-19 #> 2070 Albert Wilson Albert Wilson 1992-07-12 #> 2071 Kirk Merritt Kirk Merritt 1997-01-05 #> 2072 Jaylen Waddle Jaylen Waddle 1998-11-25 #> 2073 Khalil McClain Khalil McClain 1999-03-19 #> 2074 Malcolm Perry Malcolm Perry 1997-04-19 #> 2075 Mack Hollins Mack Hollins 1993-09-16 #> 2076 Jakeem Grant Jakeem Grant 1992-10-30 #> 2077 DeVante Parker DeVante Parker 1993-01-20 #> 2078 Allen Hurns Allen Hurns 1991-11-12 #> 2079 Lynn Bowden Lynn Bowden 1997-10-14 #> 2080 Robert Foster Robert Foster 1994-05-07 #> 2081 Will Fuller Will Fuller 1994-04-16 #> 2082 Kai Locksley Kai Locksley 1996-11-17 #> 2083 Isaiah Ford Isaiah Ford 1996-02-09 #> 2084 Preston Williams Preston Williams 1997-03-27 #> 2085 Cohl Cabral Cohl Cabral 1998-02-11 #> 2086 Garrett Bradbury Garrett Bradbury 1995-06-20 #> 2087 Cameron Dantzler Cameron Dantzler 1998-09-03 #> 2088 Camryn Bynum Camryn Bynum 1998-07-19 #> 2089 Parry Nickerson Parry Nickerson 1994-10-11 #> 2090 Amari Henderson Amari Henderson 1997-09-08 #> 2091 Harrison Hand Harrison Hand 1998-11-12 #> 2092 Jeff Gladney Jeff Gladney 1996-12-12 #> 2093 Bashaud Breeland Bashaud Breeland 1992-01-30 #> 2094 Mackensie Alexander Mackensie Alexander 1993-11-12 #> 2095 Dylan Mabin Dylan Mabin 1997-09-14 #> 2096 Tye Smith Tye Smith 1993-05-03 #> 2097 Marcus Sayles Marcus Sayles 1994-10-01 #> 2098 Patrick Peterson Patrick Peterson 1990-07-11 #> 2099 Kris Boyd Kris Boyd 1996-09-12 #> 2100 Xavier Woods Xavier Woods 1995-07-26 #> 2101 Myles Dorn Myles Dorn 1998-06-25 #> 2102 Josh Metellus Josh Metellus 1998-01-21 #> 2103 Harrison Smith Harrison Smith 1989-02-02 #> 2104 Luther Kirk Luther Kirk 1996-11-07 #> 2105 Danielle Hunter Danielle Hunter 1994-10-29 #> 2106 Hercules Mata'afa Hercules Mata'afa 1995-09-18 #> 2107 Janarius Robinson Janarius Robinson 1999-05-05 #> 2108 Stephen Weatherly Stephen Weatherly 1994-03-19 #> 2109 Patrick Jones Patrick Jones 1998-09-29 #> 2110 Jalyn Holmes Jalyn Holmes 1996-01-26 #> 2111 Kenny Willekes Kenny Willekes 1997-07-22 #> 2112 Jordan Brailford Jordan Brailford 1995-10-09 #> 2113 D.J. Wonnum D.J. Wonnum 1997-10-31 #> 2114 Everson Griffen Everson Griffen 1987-12-22 #> 2115 James Lynch James Lynch 1999-01-20 #> 2116 Jaylen Twyman Jaylen Twyman 1999-07-19 #> 2117 Zeandae Johnson Zeandae Johnson 1997-06-15 #> 2118 Dalvin Tomlinson Dalvin Tomlinson 1994-02-02 #> 2119 Sheldon Richardson Sheldon Richardson 1990-11-29 #> 2120 Michael Pierce Michael Pierce 1992-11-06 #> 2121 Jordon Scott Jordon Scott 1998-12-25 #> 2122 Armon Watts Armon Watts 1996-07-22 #> 2123 Jake Bargas Jake Bargas 1996-11-28 #> 2124 C.J. Ham C.J. Ham 1993-07-22 #> 2125 Kyle Hinton Kyle Hinton 1998-02-27 #> 2126 Riley Patterson Riley Patterson 1999-09-07 #> 2127 Taylor Bertolet Taylor Bertolet 1992-10-24 #> 2128 Greg Joseph Greg Joseph 1994-08-04 #> 2129 Chazz Surratt Chazz Surratt 1997-02-16 #> 2130 Cameron Smith Cameron Smith 1997-03-26 #> 2131 Eric Kendricks Eric Kendricks 1992-02-29 #> 2132 Christian Elliss Christian Elliss <NA> #> 2133 Tuf Borland Tuf Borland <NA> #> 2134 Blake Lynch Blake Lynch 1997-02-14 #> 2135 Ben Gedeon Ben Gedeon 1994-10-16 #> 2136 Nick Vigil Nick Vigil 1993-08-20 #> 2137 Ryan Connelly Ryan Connelly 1995-10-03 #> 2138 Anthony Barr Anthony Barr 1992-03-18 #> 2139 Troy Dye Troy Dye 1996-09-18 #> 2140 Nick Dooley Nick Dooley <NA> #> 2141 Turner Bernard Turner Bernard 1998-08-14 #> 2142 Andrew DePaola Andrew DePaola 1987-07-28 #> 2143 Dru Samia Dru Samia 1997-08-22 #> 2144 Wyatt Davis Wyatt Davis 1999-02-17 #> 2145 Dakota Dozier Dakota Dozier 1991-04-30 #> 2146 Mason Cole Mason Cole 1996-03-28 #> 2147 Zack Bailey Zack Bailey 1995-11-08 #> 2148 Ezra Cleveland Ezra Cleveland 1998-05-08 #> 2149 Rashod Hill Rashod Hill 1992-01-12 #> 2150 Brian O'Neill Brian O'Neill 1995-09-15 #> 2151 Christian Darrisaw Christian Darrisaw 1999-06-02 #> 2152 Olisaemeka Udoh Olisaemeka Udoh 1997-02-14 #> 2153 Evin Ksiezarczyk Evin Ksiezarczyk 1997-06-08 #> 2154 Britton Colquitt Britton Colquitt 1985-03-20 #> 2155 Zach Von Rosenberg Zach Von Rosenberg 1990-09-24 #> 2156 Jake Browning Jake Browning 1996-04-11 #> 2157 Kirk Cousins Kirk Cousins 1988-08-19 #> 2158 Wes Lunt Wes Lunt 1993-10-07 #> 2159 Danny Etling Danny Etling 1994-07-22 #> 2160 Nate Stanley Nate Stanley 1997-08-26 #> 2161 Kellen Mond Kellen Mond 1999-06-22 #> 2162 Kamryn Pettway Kamryn Pettway <NA> #> 2163 Ameer Abdullah Ameer Abdullah 1993-06-13 #> 2164 Ito Smith Ito Smith 1995-09-11 #> 2165 Asim Rose Asim Rose 1997-10-14 #> 2166 Dalvin Cook Dalvin Cook 1995-08-10 #> 2167 Alexander Mattison Alexander Mattison 1998-06-19 #> 2168 Kene Nwangwu Kene Nwangwu 1998-02-09 #> 2169 Blake Brandel Blake Brandel 1997-01-23 #> 2170 Brandon Dillon Brandon Dillon 1997-04-30 #> 2171 Irv Smith Irv Smith 1998-08-09 #> 2172 Shane Zylstra Shane Zylstra 1996-11-16 #> 2173 Tyler Conklin Tyler Conklin 1995-07-30 #> 2174 Zach Davidson Zach Davidson 1998-07-15 #> 2175 Ihmir Smith-Marsette Ihmir Smith-Marsette 1999-08-29 #> 2176 Chad Beebe Chad Beebe 1994-06-01 #> 2177 Whop Philyor Whop Philyor 1998-07-31 #> 2178 Armanti Foreman Armanti Foreman <NA> #> 2179 Warren Jackson Warren Jackson 1999-06-16 #> 2180 K.J. Osborn K.J. Osborn 1997-06-10 #> 2181 Adam Thielen Adam Thielen 1990-08-22 #> 2182 Myron Mitchell Myron Mitchell 1998-06-17 #> 2183 Olabisi Johnson Olabisi Johnson 1997-03-17 #> 2184 Blake Proehl Blake Proehl <NA> #> 2185 Dede Westbrook Dede Westbrook 1993-11-21 #> 2186 Dan Chisena Dan Chisena 1997-02-25 #> 2187 Justin Jefferson Justin Jefferson 1999-01-16 #> 2188 David Andrews David Andrews 1992-07-10 #> 2189 Marcus Martin Marcus Martin 1993-11-29 #> 2190 Stephon Gilmore Stephon Gilmore 1990-09-19 #> 2191 Michael Jackson Michael Jackson 1997-01-10 #> 2192 Joejuan Williams Joejuan Williams 1997-12-06 #> 2193 Jalen Mills Jalen Mills 1994-04-06 #> 2194 Justin Bethel Justin Bethel 1990-06-17 #> 2195 Kyle Dugger Kyle Dugger 1996-03-22 #> 2196 Myles Bryant Myles Bryant 1998-01-02 #> 2197 Adrian Colbert Adrian Colbert 1993-10-06 #> 2198 D'Angelo Ross D'Angelo Ross 1996-10-29 #> 2199 Cody Davis Cody Davis 1989-06-06 #> 2200 Malik Gant Malik Gant 1997-05-29 #> 2201 Jonathan Jones Jonathan Jones 1993-09-20 #> 2202 Devin McCourty Devin McCourty 1987-08-13 #> 2203 Adrian Phillips Adrian Phillips 1992-03-28 #> 2204 Joshuah Bledsoe Joshuah Bledsoe 1998-12-30 #> 2205 J.C. Jackson J.C. Jackson 1995-11-17 #> 2206 Dee Virgin Dee Virgin 1993-10-29 #> 2207 Deatrich Wise Deatrich Wise 1994-07-26 #> 2208 Chase Winovich Chase Winovich 1995-04-19 #> 2209 Henry Anderson Henry Anderson 1991-08-03 #> 2210 Tashawn Bower Tashawn Bower 1995-02-18 #> 2211 Nick Thurman Nick Thurman 1995-06-12 #> 2212 Christian Barmore Christian Barmore 1999-07-28 #> 2213 Carl Davis Carl Davis 1992-03-02 #> 2214 Montravius Adams Montravius Adams 1995-07-24 #> 2215 Bill Murray Bill Murray 1997-07-03 #> 2216 Lawrence Guy Lawrence Guy 1990-03-17 #> 2217 Akeem Spence Akeem Spence 1991-11-29 #> 2218 Davon Godchaux Davon Godchaux 1994-11-11 #> 2219 Byron Cowart Byron Cowart 1996-05-20 #> 2220 Dan Vitale Dan Vitale 1993-10-26 #> 2221 Jakob Johnson Jakob Johnson 1994-12-15 #> 2222 Nick Folk Nick Folk 1984-11-05 #> 2223 Justin Rohrwasser Justin Rohrwasser 1996-12-07 #> 2224 Roberto Aguayo Roberto Aguayo 1994-05-17 #> 2225 Quinn Nordin Quinn Nordin 1998-08-16 #> 2226 Terez Hall Terez Hall 1996-11-18 #> 2227 Anfernee Jennings Anfernee Jennings 1997-05-01 #> 2228 Michael Pinckney Michael Pinckney 1998-05-28 #> 2229 Brandon King Brandon King 1993-06-08 #> 2230 Cassh Maluia Cassh Maluia 1998-10-03 #> 2231 Josh Uche Josh Uche 1998-09-18 #> 2232 Kyle Van Noy Kyle Van Noy 1991-03-26 #> 2233 Cameron McGrone Cameron McGrone 2000-06-22 #> 2234 Raekwon McMillan Raekwon McMillan 1996-11-17 #> 2235 Harvey Langi Harvey Langi 1992-09-24 #> 2236 Ja'Whaun Bentley Ja'Whaun Bentley 1996-08-24 #> 2237 Dont'a Hightower Dont'a Hightower 1990-03-12 #> 2238 Ronnie Perkins Ronnie Perkins 1999-09-29 #> 2239 Matt Judon Matt Judon 1992-08-15 #> 2240 Joe Cardona Joe Cardona 1992-04-16 #> 2241 Brian Khoury Brian Khoury 1992-07-15 #> 2242 Wes Farnsworth Wes Farnsworth 1997-04-10 #> 2243 Beau Allen Beau Allen 1991-11-14 #> 2244 R.J. Prince R.J. Prince 1995-04-19 #> 2245 Alex Redmond Alex Redmond 1995-01-18 #> 2246 Dustin Woodard Dustin Woodard 1998-03-08 #> 2247 Justin Herron Justin Herron 1995-11-27 #> 2248 James Ferentz James Ferentz 1989-06-05 #> 2249 Shaquille Mason Shaquille Mason 1993-08-28 #> 2250 Yodny Cajuste Yodny Cajuste 1996-02-21 #> 2251 Korey Cunningham Korey Cunningham 1995-05-17 #> 2252 Michael Onwenu Michael Onwenu 1997-12-10 #> 2253 Ted Karras Ted Karras 1993-03-15 #> 2254 Isaiah Wynn Isaiah Wynn 1995-12-09 #> 2255 Jerald Hawkins Jerald Hawkins 1993-10-16 #> 2256 Trenton Brown Trenton Brown 1993-04-13 #> 2257 William Sherman William Sherman 1999-05-27 #> 2258 Jake Bailey Jake Bailey 1997-06-18 #> 2259 Cam Newton Cam Newton 1989-05-11 #> 2260 Brian Hoyer Brian Hoyer 1985-10-13 #> 2261 Mac Jones Mac Jones 1998-09-05 #> 2262 Jarrett Stidham Jarrett Stidham 1996-08-08 #> 2263 James White James White 1992-02-03 #> 2264 Sony Michel Sony Michel 1995-02-17 #> 2265 Tyler Gaffney Tyler Gaffney 1991-04-20 #> 2266 Damien Harris Damien Harris 1997-02-11 #> 2267 Rhamondre Stevenson Rhamondre Stevenson 1998-02-23 #> 2268 Brandon Bolden Brandon Bolden 1990-01-26 #> 2269 J.J. Taylor J.J. Taylor 1998-01-04 #> 2270 Patrick Chung Patrick Chung 1987-08-19 #> 2271 Hunter Henry Hunter Henry 1994-12-07 #> 2272 Troy Fumagalli Troy Fumagalli 1995-02-17 #> 2273 Dalton Keene Dalton Keene 1999-04-14 #> 2274 Jonnu Smith Jonnu Smith 1995-08-22 #> 2275 Matt LaCosse Matt LaCosse 1992-09-21 #> 2276 Devin Asiasi Devin Asiasi 1997-08-14 #> 2277 Kahale Warring Kahale Warring 1997-03-23 #> 2278 Jake Burt Jake Burt 1996-08-25 #> 2279 Quincy Adeboyejo Quincy Adeboyejo 1995-05-26 #> 2280 Kendrick Bourne Kendrick Bourne 1995-08-04 #> 2281 Tre Nixon Tre Nixon 1998-01-26 #> 2282 Jakobi Meyers Jakobi Meyers 1996-11-09 #> 2283 Isaiah Zuber Isaiah Zuber 1997-04-15 #> 2284 Marvin Hall Marvin Hall 1993-04-10 #> 2285 Devin Smith Devin Smith 1992-03-03 #> 2286 Devin Ross Devin Ross 1995-08-12 #> 2287 Gunner Olszewski Gunner Olszewski 1996-11-26 #> 2288 Kristian Wilkerson Kristian Wilkerson 1997-01-10 #> 2289 Nelson Agholor Nelson Agholor 1993-05-24 #> 2290 Matt Slater Matt Slater 1985-09-09 #> 2291 N'Keal Harry N'Keal Harry 1997-12-17 #> 2292 Will Clapp Will Clapp 1995-12-10 #> 2293 Patrick Robinson Patrick Robinson 1987-09-07 #> 2294 Paulson Adebo Paulson Adebo 1999-07-03 #> 2295 Bryan Mills Bryan Mills 1999-08-03 #> 2296 Lawrence Woods Lawrence Woods <NA> #> 2297 Grant Haley Grant Haley 1996-01-06 #> 2298 Brian Poole Brian Poole 1992-10-20 #> 2299 Bryce Thompson Bryce Thompson 1999-09-20 #> 2300 Marshon Lattimore Marshon Lattimore 1996-05-19 #> 2301 Ken Crawley Ken Crawley 1993-02-08 #> 2302 Johnson Bademosi Johnson Bademosi 1990-07-23 #> 2303 P.J. Williams P.J. Williams 1993-06-01 #> 2304 J.T. Gray J.T. Gray 1996-01-18 #> 2305 Eric Burrell Eric Burrell 1998-01-08 #> 2306 Jeff Heath Jeff Heath 1991-05-14 #> 2307 Prince Amukamara Prince Amukamara 1989-06-06 #> 2308 Deuce Wallace Deuce Wallace 1996-10-01 #> 2309 Marcus Williams Marcus Williams 1996-09-08 #> 2310 Keith Washington Keith Washington 1996-12-20 #> 2311 KeiVarae Russell KeiVarae Russell 1993-10-19 #> 2312 Chauncey Gardner-Johnson Chauncey Gardner-Johnson 1997-12-20 #> 2313 Adonis Alexander Adonis Alexander 1996-11-07 #> 2314 Natrell Jamerson Natrell Jamerson 1995-12-15 #> 2315 Anthony Lanier Anthony Lanier 1993-05-08 #> 2316 Will Clarke Will Clarke 1991-05-04 #> 2317 Payton Turner Payton Turner 1999-01-07 #> 2318 Cameron Jordan Cameron Jordan 1989-07-10 #> 2319 Royce Lafrance Royce Lafrance 1993-07-17 #> 2320 Christian Ringo Christian Ringo 1992-03-10 #> 2321 Marcus Davenport Marcus Davenport 1996-09-04 #> 2322 Carl Granderson Carl Granderson 1996-12-18 #> 2323 Tanoh Kpassagnon Tanoh Kpassagnon 1994-06-14 #> 2324 Malcolm Roach Malcolm Roach 1998-06-09 #> 2325 Shy Tuttle Shy Tuttle 1995-10-20 #> 2326 Jalen Dalton Jalen Dalton 1997-08-04 #> 2327 Ryan Glasgow Ryan Glasgow 1993-09-30 #> 2328 R.J. McIntosh R.J. McIntosh 1996-06-02 #> 2329 Albert Huggins Albert Huggins 1997-06-27 #> 2330 Josiah Bronson Josiah Bronson 1997-07-03 #> 2331 David Onyemata David Onyemata 1992-11-13 #> 2332 Sutton Smith Sutton Smith 1996-03-22 #> 2333 Alex Armah Alex Armah 1994-05-17 #> 2334 Christian Montano Christian Montano 1995-09-26 #> 2335 Aldrick Rosas Aldrick Rosas 1994-12-30 #> 2336 Blair Walsh Blair Walsh 1990-01-08 #> 2337 Wil Lutz Wil Lutz 1994-07-07 #> 2338 Brett Maher Brett Maher 1989-11-21 #> 2339 Wynton McManis Wynton McManis 1994-09-20 #> 2340 Shaq Smith Shaq Smith 1997-03-26 #> 2341 Chase Hansen Chase Hansen 1993-05-20 #> 2342 Demario Davis Demario Davis 1989-01-11 #> 2343 Zack Baun Zack Baun 1996-12-30 #> 2344 Marcus Willoughby Marcus Willoughby 1998-07-26 #> 2345 Pete Werner Pete Werner 1999-06-05 #> 2346 Kaden Elliss Kaden Elliss 1995-07-10 #> 2347 Kwon Alexander Kwon Alexander 1994-08-03 #> 2348 Andrew Dowell Andrew Dowell 1996-11-16 #> 2349 Quentin Poling Quentin Poling 1994-08-17 #> 2350 John Denney John Denney 1978-12-13 #> 2351 Zach Wood Zach Wood 1993-01-10 #> 2352 Chase Dominguez Chase Dominguez 1994-07-09 #> 2353 J.R. Sweezy J.R. Sweezy 1989-04-08 #> 2354 Daronte Bouldin Daronte Bouldin 1994-12-14 #> 2355 Ethan Greenidge Ethan Greenidge 1997-09-10 #> 2356 Calvin Throckmorton Calvin Throckmorton 1996-08-16 #> 2357 Mike Brown Mike Brown <NA> #> 2358 Andrus Peat Andrus Peat 1993-11-04 #> 2359 Derrick Kelly Derrick Kelly 1995-08-23 #> 2360 Cesar Ruiz Cesar Ruiz 1999-06-14 #> 2361 Erik McCoy Erik McCoy 1997-08-27 #> 2362 Caleb Benenoch Caleb Benenoch 1994-08-08 #> 2363 Alex Hoffman Alex Hoffman <NA> #> 2364 Jordan Mills Jordan Mills 1990-12-24 #> 2365 Landon Young Landon Young 1997-08-21 #> 2366 Jeromy Irwin Jeromy Irwin 1993-07-08 #> 2367 Kyle Murphy Kyle Murphy 1993-12-11 #> 2368 James Hurst James Hurst 1991-12-17 #> 2369 Ryan Ramczyk Ryan Ramczyk 1994-04-22 #> 2370 Terron Armstead Terron Armstead 1991-07-23 #> 2371 Blake Gillikin Blake Gillikin 1998-01-21 #> 2372 Nolan Cooney Nolan Cooney 1996-09-18 #> 2373 Jameis Winston Jameis Winston 1994-01-06 #> 2374 Ian Book Ian Book 1998-03-30 #> 2375 Taysom Hill Taysom Hill 1990-08-23 #> 2376 Trevor Siemian Trevor Siemian 1991-12-26 #> 2377 Ty Montgomery Ty Montgomery 1993-01-22 #> 2378 Tony Jones Tony Jones 1997-11-24 #> 2379 Devonta Freeman Devonta Freeman 1992-03-15 #> 2380 Alvin Kamara Alvin Kamara 1995-07-25 #> 2381 Darnell Holland Darnell Holland <NA> #> 2382 Latavius Murray Latavius Murray 1990-01-18 #> 2383 Dwayne Washington Dwayne Washington 1994-04-24 #> 2384 Malcolm Jenkins Malcolm Jenkins 1987-12-20 #> 2385 Josh Pederson Josh Pederson 1997-09-09 #> 2386 Adam Trautman Adam Trautman 1997-02-05 #> 2387 Nick Vannett Nick Vannett 1993-03-06 #> 2388 Dylan Soehner Dylan Soehner 1997-11-08 #> 2389 Ethan Wolf Ethan Wolf 1995-11-07 #> 2390 Cole Wick Cole Wick 1993-11-30 #> 2391 Garrett Griffin Garrett Griffin 1994-03-04 #> 2392 Jason Vander Laan Jason Vander Laan 1992-09-22 #> 2393 Michael Thomas Michael Thomas 1993-03-03 #> 2394 Easop Winston Easop Winston 1996-12-17 #> 2395 Micah Wright Micah Wright <NA> #> 2396 Josh Smith Josh Smith <NA> #> 2397 Tre'Quan Smith Tre'Quan Smith 1996-01-07 #> 2398 Jalen McCleskey Jalen McCleskey 1997-08-06 #> 2399 Deonte Harris Deonte Harris 1997-12-04 #> 2400 Eldridge Massington Eldridge Massington 1995-01-26 #> 2401 Malik Henry Malik Henry 1997-04-16 #> 2402 Kevin White Kevin White 1992-06-25 #> 2403 Lil'Jordan Humphrey Lil'Jordan Humphrey 1998-04-18 #> 2404 Chris Hogan Chris Hogan 1987-10-24 #> 2405 Tommylee Lewis Tommylee Lewis 1992-10-24 #> 2406 Juwan Johnson Juwan Johnson 1996-09-13 #> 2407 Marquez Callaway Marquez Callaway 1998-03-27 #> 2408 Kawaan Baker Kawaan Baker 1998-08-24 #> 2409 Jake Lampman Jake Lampman 1993-06-11 #> 2410 Ahmad Fulwood Ahmad Fulwood <NA> #> 2411 Derrick Kelly II Derrick Kelly II 1995-08-23 #> 2412 Nick Gates Nick Gates 1995-11-27 #> 2413 Brandon Williams Brandon Williams 1992-09-09 #> 2414 Rodarius Williams Rodarius Williams 1996-09-12 #> 2415 Jarren Williams Jarren Williams 1997-07-18 #> 2416 Sam Beal Sam Beal 1996-08-30 #> 2417 Quincy Wilson Quincy Wilson 1996-08-16 #> 2418 Aaron Robinson Aaron Robinson 1998-11-10 #> 2419 Darnay Holmes Darnay Holmes 1998-06-23 #> 2420 Josh Jackson Josh Jackson 1996-04-03 #> 2421 James Bradberry James Bradberry 1993-08-04 #> 2422 Joshua Kalu Joshua Kalu 1995-08-28 #> 2423 Bryon Fields Bryon Fields <NA> #> 2424 Jordyn Peters Jordyn Peters <NA> #> 2425 Jabrill Peppers Jabrill Peppers 1995-10-04 #> 2426 Jaquarius Landrews Jaquarius Landrews 1996-09-15 #> 2427 Julian Love Julian Love 1998-03-19 #> 2428 Chris Johnson Chris Johnson 1995-11-12 #> 2429 Chris Milton Chris Milton 1992-09-15 #> 2430 Madre Harper Madre Harper 1997-10-13 #> 2431 Montre Hartage Montre Hartage 1997-06-16 #> 2432 Logan Ryan Logan Ryan 1991-02-09 #> 2433 Keion Crossen Keion Crossen 1996-04-17 #> 2434 Adoree' Jackson Adoree' Jackson 1995-09-18 #> 2435 Xavier McKinney Xavier McKinney 1998-08-08 #> 2436 Breeland Speaks Breeland Speaks 1995-12-18 #> 2437 Leonard Williams Leonard Williams 1994-06-20 #> 2438 Ifeadi Odenigbo Ifeadi Odenigbo 1994-04-08 #> 2439 Raymond Johnson Raymond Johnson <NA> #> 2440 Niko Lalos Niko Lalos 1997-06-25 #> 2441 Jeremiah Harris Jeremiah Harris <NA> #> 2442 Azeez Ojulari Azeez Ojulari 2000-06-16 #> 2443 B.J. Hill B.J. Hill 1996-04-20 #> 2444 Austin Johnson Austin Johnson 1994-05-08 #> 2445 David Moa David Moa 1996-06-14 #> 2446 Dexter Lawrence Dexter Lawrence 1997-11-12 #> 2447 Danny Shelton Danny Shelton 1993-08-20 #> 2448 Elijah Qualls Elijah Qualls 1995-02-11 #> 2449 Willie Henry Willie Henry 1994-03-20 #> 2450 Cullen Gillaspia Cullen Gillaspia 1995-05-12 #> 2451 Jadar Johnson Jadar Johnson 1995-06-29 #> 2452 Graham Gano Graham Gano 1987-04-09 #> 2453 Ryan Anderson Ryan Anderson 1994-08-12 #> 2454 Elerson Smith Elerson Smith 1998-07-17 #> 2455 Cam Brown Cam Brown 1998-04-01 #> 2456 Lorenzo Carter Lorenzo Carter 1995-12-10 #> 2457 Trent Harris Trent Harris 1995-09-17 #> 2458 Tae Crowder Tae Crowder 1997-03-12 #> 2459 Reggie Ragland Reggie Ragland 1993-09-24 #> 2460 Carter Coughlin Carter Coughlin 1997-07-20 #> 2461 Oshane Ximines Oshane Ximines 1996-12-07 #> 2462 Devante Downs Devante Downs 1995-10-18 #> 2463 Cale Garrett Cale Garrett 1997-12-02 #> 2464 Blake Martinez Blake Martinez 1994-01-09 #> 2465 Jermaine Grace Jermaine Grace 1993-11-08 #> 2466 Todd Davis Todd Davis 1992-05-17 #> 2467 T.J. Brunson T.J. Brunson 1997-12-03 #> 2468 Carson Tinker Carson Tinker 1989-11-15 #> 2469 Casey Kreiter Casey Kreiter 1990-08-13 #> 2470 Chad Slade Chad Slade 1992-05-04 #> 2471 Joe Looney Joe Looney 1990-08-31 #> 2472 Will Hernandez Will Hernandez 1995-09-02 #> 2473 Kenny Wiggins Kenny Wiggins 1988-08-08 #> 2474 Ted Larsen Ted Larsen 1987-06-13 #> 2475 Jake Burton Jake Burton <NA> #> 2476 Shane Lemieux Shane Lemieux 1997-03-12 #> 2477 Kyle Murphy Kyle Murphy 1998-05-18 #> 2478 Brett Heggie Brett Heggie <NA> #> 2479 Zach Fulton Zach Fulton 1991-09-23 #> 2480 Jonotthan Harrison Jonotthan Harrison 1991-08-25 #> 2481 Matt Peart Matt Peart 1997-06-11 #> 2482 Tyler Howell Tyler Howell <NA> #> 2483 Jackson Barton Jackson Barton 1995-08-08 #> 2484 Andrew Thomas Andrew Thomas 1999-01-22 #> 2485 Nate Solder Nate Solder 1988-04-12 #> 2486 Ryan Santoso Ryan Santoso 1995-08-26 #> 2487 Riley Dixon Riley Dixon 1993-08-24 #> 2488 Daniel Jones Daniel Jones 1997-05-27 #> 2489 Brian Lewerke Brian Lewerke 1996-10-24 #> 2490 Mike Glennon Mike Glennon 1989-12-12 #> 2491 Clayton Thorson Clayton Thorson 1995-12-25 #> 2492 Alex Tanney Alex Tanney 1987-11-11 #> 2493 Devontae Booker Devontae Booker 1992-05-27 #> 2494 Ryquell Armstead Ryquell Armstead 1996-10-30 #> 2495 Mike Weber Mike Weber 1997-08-27 #> 2496 Elijhaa Penny Elijhaa Penny 1993-08-17 #> 2497 Sandro Platzgummer Sandro Platzgummer 1997-03-10 #> 2498 Taquan Mizzell Taquan Mizzell 1993-10-21 #> 2499 Jordan Chunn Jordan Chunn 1995-01-02 #> 2500 Gary Brightwell Gary Brightwell 1999-02-28 #> 2501 Saquon Barkley Saquon Barkley 1997-02-07 #> 2502 Alfred Morris Alfred Morris 1988-12-12 #> 2503 Daryl Virgies Daryl Virgies <NA> #> 2504 Corey Clement Corey Clement 1994-11-02 #> 2505 Nate Wozniak Nate Wozniak 1994-08-30 #> 2506 Tyler Haycraft Tyler Haycraft 1997-01-23 #> 2507 Kyle Rudolph Kyle Rudolph 1989-11-09 #> 2508 Evan Engram Evan Engram 1994-09-02 #> 2509 Nakia Griffin-Stewart Nakia Griffin-Stewart 1996-11-12 #> 2510 Jake Hausmann Jake Hausmann <NA> #> 2511 Kaden Smith Kaden Smith 1997-04-24 #> 2512 Nate Wieting Nate Wieting 1997-02-20 #> 2513 Rysen John Rysen John 1997-12-20 #> 2514 Levine Toilolo Levine Toilolo 1991-07-30 #> 2515 Tommy Stevens Tommy Stevens 1996-12-15 #> 2516 Cole Hikutini Cole Hikutini 1994-06-11 #> 2517 Derrick Dillon Derrick Dillon 1995-10-28 #> 2518 Matt Cole Matt Cole 1996-11-07 #> 2519 Da'Mari Scott Da'Mari Scott 1995-08-08 #> 2520 Kadarius Toney Kadarius Toney 1999-01-27 #> 2521 Damion Willis Damion Willis 1997-06-20 #> 2522 C.J. Board C.J. Board 1993-12-12 #> 2523 Austin Mack Austin Mack 1997-01-01 #> 2524 Andy Jones Andy Jones 1994-06-28 #> 2525 Darius Slayton Darius Slayton 1997-01-12 #> 2526 Alex Bachman Alex Bachman 1996-05-29 #> 2527 David Sills David Sills 1996-05-29 #> 2528 Dante Pettis Dante Pettis 1995-10-23 #> 2529 Cody Core Cody Core 1994-04-17 #> 2530 Jalen Williams Jalen Williams <NA> #> 2531 Sterling Shepard Sterling Shepard 1993-02-10 #> 2532 John Ross John Ross 1994-11-27 #> 2533 Kenny Golladay Kenny Golladay 1993-11-03 #> 2534 Corey Coleman Corey Coleman 1994-07-06 #> 2535 Kelvin Benjamin Kelvin Benjamin 1991-02-05 #> 2536 Austin Golson Austin Golson 1995-07-09 #> 2537 Zane Lewis Zane Lewis 1998-04-06 #> 2538 Bryce Hall Bryce Hall 1997-11-05 #> 2539 Reggie Hall Reggie Hall 1995-09-14 #> 2540 Jason Pinnock Jason Pinnock 1999-06-30 #> 2541 Michael Carter Michael Carter 1999-03-08 #> 2542 Brandin Echols Brandin Echols 1997-10-16 #> 2543 Javelin Guidry Javelin Guidry 1998-08-06 #> 2544 Lamar Jackson Lamar Jackson 1998-04-13 #> 2545 Corey Ballentine Corey Ballentine 1996-04-13 #> 2546 Justin Hardee Justin Hardee 1994-02-07 #> 2547 Blessuan Austin Blessuan Austin 1996-07-19 #> 2548 Lamarcus Joyner Lamarcus Joyner 1990-11-27 #> 2549 J.T. Hassell J.T. Hassell 1995-08-14 #> 2550 Sharrod Neasman Sharrod Neasman 1991-10-14 #> 2551 Marcus Maye Marcus Maye 1993-03-09 #> 2552 Bennett Jackson Bennett Jackson 1991-09-16 #> 2553 Ashtyn Davis Ashtyn Davis 1996-10-10 #> 2554 Saquan Hampton Saquan Hampton 1995-12-12 #> 2555 Elijah Campbell Elijah Campbell 1995-08-24 #> 2556 Isaiah Dunn Isaiah Dunn 1999-01-31 #> 2557 Carl Lawson Carl Lawson 1995-06-29 #> 2558 Jabari Zuniga Jabari Zuniga 1997-08-14 #> 2559 Bryce Huff Bryce Huff 1997-08-20 #> 2560 Jeremiah Valoaga Jeremiah Valoaga 1994-11-15 #> 2561 Hamilcar Rashed Hamilcar Rashed 1998-01-02 #> 2562 Shaneil Jenkins Shaneil Jenkins 1994-02-07 #> 2563 Vinny Curry Vinny Curry 1988-06-30 #> 2564 Ronald Blair Ronald Blair 1993-01-21 #> 2565 Folorunso Fatukasi Folorunso Fatukasi 1995-03-04 #> 2566 Kyle Phillips Kyle Phillips 1997-05-05 #> 2567 Michael Dwumfour Michael Dwumfour 1998-01-01 #> 2568 John Franklin-Myers John Franklin-Myers 1996-09-26 #> 2569 Tanzel Smart Tanzel Smart 1994-11-06 #> 2570 Quinnen Williams Quinnen Williams 1997-12-21 #> 2571 Jonathan Marshall Jonathan Marshall 1997-09-16 #> 2572 Sheldon Rankins Sheldon Rankins 1994-04-02 #> 2573 Nathan Shepherd Nathan Shepherd 1993-09-10 #> 2574 Matt Ammendola Matt Ammendola 1996-12-11 #> 2575 Chris Naggar Chris Naggar 1997-12-09 #> 2576 Paul Worrilow Paul Worrilow 1990-05-01 #> 2577 Hamsah Nasirildeen Hamsah Nasirildeen 1999-01-17 #> 2578 C.J. Mosley C.J. Mosley 1992-06-19 #> 2579 Del'Shawn Phillips Del'Shawn Phillips 1996-10-09 #> 2580 Blake Cashman Blake Cashman 1996-05-10 #> 2581 Noah Dawkins Noah Dawkins 1997-08-13 #> 2582 Jarrad Davis Jarrad Davis 1995-11-16 #> 2583 Aaron Adeoye Aaron Adeoye 1993-08-26 #> 2584 Milo Eifler Milo Eifler 1998-02-13 #> 2585 Brendon White Brendon White <NA> #> 2586 Jamien Sherwood Jamien Sherwood 2000-01-12 #> 2587 Edmond Robinson Edmond Robinson 1992-02-23 #> 2588 Thomas Hennessy Thomas Hennessy 1994-06-11 #> 2589 Josh Latham Josh Latham 1993-09-20 #> 2590 Alijah Vera-Tucker Alijah Vera-Tucker 1999-06-17 #> 2591 Greg Van Roten Greg Van Roten 1990-02-26 #> 2592 Corey Levin Corey Levin 1994-08-12 #> 2593 Parker Ferguson Parker Ferguson <NA> #> 2594 Grant Hermanns Grant Hermanns 1998-03-05 #> 2595 Dan Feeney Dan Feeney 1994-05-29 #> 2596 Connor McGovern Connor McGovern 1993-04-27 #> 2597 Alex Lewis Alex Lewis 1992-04-21 #> 2598 Conor McDermott Conor McDermott 1992-10-19 #> 2599 Leo Koloamatangi Leo Koloamatangi 1994-05-09 #> 2600 Teton Saltes Teton Saltes 1998-05-04 #> 2601 James Murray James Murray 1995-05-05 #> 2602 Morgan Moses Morgan Moses 1991-03-03 #> 2603 David Moore David Moore <NA> #> 2604 Isaiah Williams Isaiah Williams 1993-05-05 #> 2605 Tristen Hoge Tristen Hoge 1997-04-23 #> 2606 Cameron Clark Cameron Clark 1997-11-16 #> 2607 George Fant George Fant 1992-07-19 #> 2608 Mekhi Becton Mekhi Becton 1999-04-18 #> 2609 Chuma Edoga Chuma Edoga 1997-05-25 #> 2610 Ben Turk Ben Turk <NA> #> 2611 Braden Mann Braden Mann 1997-11-24 #> 2612 Brandon Silvers Brandon Silvers 1994-05-09 #> 2613 David Fales David Fales 1990-10-04 #> 2614 Josh Johnson Josh Johnson 1986-05-15 #> 2615 Mike White Mike White 1995-03-25 #> 2616 James Morgan James Morgan 1997-02-28 #> 2617 Zach Wilson Zach Wilson 1999-08-03 #> 2618 Ty Johnson Ty Johnson 1997-09-17 #> 2619 Michael Carter Michael Carter 1999-05-07 #> 2620 La'Mical Perine La'Mical Perine 1998-01-30 #> 2621 Jalin Moore Jalin Moore 1995-11-28 #> 2622 Austin Walter Austin Walter 1996-08-17 #> 2623 Tevin Coleman Tevin Coleman 1993-04-16 #> 2624 Josh Adams Josh Adams 1996-10-29 #> 2625 Christopher Herndon Christopher Herndon 1996-02-23 #> 2626 Tyler Kroft Tyler Kroft 1992-10-15 #> 2627 Trevon Wesco Trevon Wesco 1995-09-12 #> 2628 Daniel Brown Daniel Brown 1992-05-26 #> 2629 Ryan Griffin Ryan Griffin 1990-01-11 #> 2630 Kenny Yeboah Kenny Yeboah 1998-10-30 #> 2631 Corey Davis Corey Davis 1995-01-11 #> 2632 Jamison Crowder Jamison Crowder 1993-06-17 #> 2633 Keelan Cole Keelan Cole 1993-04-20 #> 2634 Braxton Berrios Braxton Berrios 1995-10-06 #> 2635 Josh Malone Josh Malone 1996-03-21 #> 2636 D.J. Montgomery D.J. Montgomery 1996-11-17 #> 2637 Josh Doctson Josh Doctson 1992-12-03 #> 2638 Jeff Smith Jeff Smith 1997-04-21 #> 2639 Denzel Mims Denzel Mims 1997-10-10 #> 2640 Elijah Moore Elijah Moore 2000-03-27 #> 2641 Manasseh Bailey Manasseh Bailey 1997-06-27 #> 2642 Lawrence Cager Lawrence Cager 1997-08-20 #> 2643 Vyncint Smith Vyncint Smith 1996-06-09 #> 2644 Myles White Myles White 1990-03-03 #> 2645 Landon Dickerson Landon Dickerson 1998-09-30 #> 2646 Luke Juriga Luke Juriga 1997-06-07 #> 2647 Jason Kelce Jason Kelce 1987-11-05 #> 2648 Harry Crider Harry Crider 1999-05-18 #> 2649 Michael Jacquet Michael Jacquet 1997-01-29 #> 2650 Lavert Hill Lavert Hill 1998-10-03 #> 2651 Jordan Thomas Jordan Thomas <NA> #> 2652 Darius Slay Darius Slay 1991-01-01 #> 2653 Shakial Taylor Shakial Taylor 1996-12-27 #> 2654 Josiah Scott Josiah Scott 1999-04-05 #> 2655 Zech McPhearson Zech McPhearson 1998-03-21 #> 2656 Kevon Seymour Kevon Seymour 1993-11-30 #> 2657 Steven Nelson Steven Nelson 1993-01-22 #> 2658 Craig James Craig James 1996-04-29 #> 2659 Avonte Maddox Avonte Maddox 1996-03-31 #> 2660 Marcus Epps Marcus Epps 1996-01-27 #> 2661 Anthony Harris Anthony Harris 1991-10-09 #> 2662 Rodney McLeod Rodney McLeod 1990-06-23 #> 2663 Nate Meadors Nate Meadors 1997-02-13 #> 2664 Obi Melifonwu Obi Melifonwu 1994-04-05 #> 2665 Elijah Riley Elijah Riley 1998-06-12 #> 2666 K'Von Wallace K'Von Wallace 1997-07-25 #> 2667 Grayland Arnold Grayland Arnold 1997-09-04 #> 2668 JaCoby Stevens JaCoby Stevens 1998-06-19 #> 2669 Andrew Adams Andrew Adams 1992-10-28 #> 2670 Blake Countess Blake Countess 1993-08-08 #> 2671 Genard Avery Genard Avery 1995-04-26 #> 2672 Josh Sweat Josh Sweat 1997-03-29 #> 2673 Brandon Graham Brandon Graham 1988-04-03 #> 2674 Tarron Jackson Tarron Jackson 1998-06-22 #> 2675 JaQuan Bailey JaQuan Bailey 1997-05-28 #> 2676 Matt Leo Matt Leo 1992-05-08 #> 2677 Ryan Kerrigan Ryan Kerrigan 1988-08-16 #> 2678 Patrick Johnson Patrick Johnson 1999-01-10 #> 2679 Joe Ostman Joe Ostman 1995-07-12 #> 2680 Derek Barnett Derek Barnett 1996-06-25 #> 2681 Raequan Williams Raequan Williams 1997-02-14 #> 2682 Fletcher Cox Fletcher Cox 1990-12-13 #> 2683 Javon Hargrave Javon Hargrave 1993-02-07 #> 2684 Charles Walker Charles Walker <NA> #> 2685 Marlon Tuipulotu Marlon Tuipulotu 1999-05-31 #> 2686 Hassan Ridgeway Hassan Ridgeway 1994-11-02 #> 2687 T.Y. McGill T.Y. McGill 1992-11-23 #> 2688 Milton Williams Milton Williams 1999-04-06 #> 2689 Jake Elliott Jake Elliott 1995-01-21 #> 2690 T.J. Edwards T.J. Edwards 1996-08-12 #> 2691 Shaun Bradley Shaun Bradley 1997-04-08 #> 2692 Jatavis Brown Jatavis Brown 1994-02-18 #> 2693 Dante Olson Dante Olson 1997-01-06 #> 2694 Rashad Smith Rashad Smith 1997-04-20 #> 2695 Alex Singleton Alex Singleton 1993-12-07 #> 2696 Davion Taylor Davion Taylor 1998-08-05 #> 2697 Eric Wilson Eric Wilson 1994-09-26 #> 2698 Rick Lovato Rick Lovato 1992-09-09 #> 2699 Brandon Brooks Brandon Brooks 1989-08-19 #> 2700 Nate Herbig Nate Herbig 1994-10-07 #> 2701 Kayode Awosika Kayode Awosika 1998-10-27 #> 2702 Iosua Opeta Iosua Opeta 1996-08-15 #> 2703 Isaac Seumalo Isaac Seumalo 1993-10-29 #> 2704 Matt Pryor Matt Pryor 1994-12-16 #> 2705 Ross Pierschbacher Ross Pierschbacher 1995-05-05 #> 2706 Lane Johnson Lane Johnson 1990-05-08 #> 2707 Le'Raven Clark Le'Raven Clark 1993-04-22 #> 2708 Jordan Mailata Jordan Mailata 1997-03-31 #> 2709 Casey Tucker Casey Tucker 1995-09-26 #> 2710 Brett Toth Brett Toth 1996-09-01 #> 2711 Jack Driscoll Jack Driscoll 1997-04-01 #> 2712 Andre Dillard Andre Dillard 1995-10-03 #> 2713 Arryn Siposs Arryn Siposs 1992-11-25 #> 2714 Jamie Newman Jamie Newman 1997-12-01 #> 2715 Joe Flacco Joe Flacco 1985-01-16 #> 2716 Nick Mullens Nick Mullens 1995-03-21 #> 2717 Jalen Hurts Jalen Hurts 1998-08-07 #> 2718 Nico Evans Nico Evans <NA> #> 2719 Kerryon Johnson Kerryon Johnson 1997-06-30 #> 2720 Jordan Howard Jordan Howard 1994-11-02 #> 2721 Elijah Holyfield Elijah Holyfield 1997-11-30 #> 2722 Kenneth Gainwell Kenneth Gainwell 1999-03-14 #> 2723 Miles Sanders Miles Sanders 1997-05-01 #> 2724 Boston Scott Boston Scott 1995-04-27 #> 2725 Jason Huntley Jason Huntley 1998-04-20 #> 2726 Zach Ertz Zach Ertz 1990-11-10 #> 2727 Cary Angeline Cary Angeline <NA> #> 2728 Jack Stoll Jack Stoll 1998-01-28 #> 2729 Tyree Jackson Tyree Jackson 1997-11-07 #> 2730 Jason Croom Jason Croom 1994-02-28 #> 2731 Dallas Goedert Dallas Goedert 1995-07-03 #> 2732 Hakeem Butler Hakeem Butler 1996-05-16 #> 2733 Richard Rodgers Richard Rodgers 1992-01-22 #> 2734 Michael Walker Michael Walker 1996-10-29 #> 2735 Greg Ward Greg Ward 1995-07-12 #> 2736 Khalil Tate Khalil Tate 1998-10-23 #> 2737 Travis Fulgham Travis Fulgham 1995-09-13 #> 2738 Jalen Reagor Jalen Reagor 1999-01-01 #> 2739 Marcus Green Marcus Green 1996-08-13 #> 2740 Quez Watkins Quez Watkins 1998-06-09 #> 2741 Jhamon Ausbon Jhamon Ausbon 1999-09-03 #> 2742 J.J. Arcega-Whiteside J.J. Arcega-Whiteside 1996-12-31 #> 2743 John Hightower John Hightower 1996-05-31 #> 2744 Andre Patton Andre Patton 1994-05-28 #> 2745 DeVonta Smith DeVonta Smith 1998-11-14 #> 2746 Trevon Grimes Trevon Grimes <NA> #> 2747 Marken Michel Marken Michel 1993-07-06 #> 2748 Kendrick Green Kendrick Green 1998-12-22 #> 2749 J.C. Hassenauer J.C. Hassenauer 1994-09-01 #> 2750 DeMarkus Acy DeMarkus Acy 1998-04-29 #> 2751 Justin Layne Justin Layne 1998-01-12 #> 2752 Cameron Sutton Cameron Sutton 1995-02-27 #> 2753 Joe Haden Joe Haden 1989-04-14 #> 2754 Shakur Brown Shakur Brown <NA> #> 2755 Mark Gilbert Mark Gilbert 1997-06-01 #> 2756 Jay Hughes Jay Hughes 1991-11-21 #> 2757 Tre Norwood Tre Norwood 1999-04-19 #> 2758 Terrell Edmunds Terrell Edmunds 1997-01-20 #> 2759 Lafayette Pitts Lafayette Pitts 1992-09-24 #> 2760 Lamont Wade Lamont Wade 1999-01-14 #> 2761 Donovan Stiner Donovan Stiner 1999-02-11 #> 2762 John Battle John Battle 1995-08-21 #> 2763 Antoine Brooks Antoine Brooks 1997-10-18 #> 2764 Minkah Fitzpatrick Minkah Fitzpatrick 1996-11-17 #> 2765 Arthur Maulet Arthur Maulet 1993-07-13 #> 2766 James Pierre James Pierre 1996-09-16 #> 2767 Stephen Denmark Stephen Denmark 1996-04-20 #> 2768 Cassius Marsh Cassius Marsh 1992-07-07 #> 2769 T.J. Carter T.J. Carter 1998-09-15 #> 2770 Henry Mondeaux Henry Mondeaux 1995-09-19 #> 2771 Jay Hayes Jay Hayes <NA> #> 2772 Isaiah Buggs Isaiah Buggs 1996-08-24 #> 2773 J.T. Jones J.T. Jones 1993-11-12 #> 2774 Isaiahh Loudermilk Isaiahh Loudermilk 1997-10-10 #> 2775 Tyson Alualu Tyson Alualu 1987-05-12 #> 2776 Abdullah Anderson Abdullah Anderson 1996-01-24 #> 2777 Stephon Tuitt Stephon Tuitt 1993-05-23 #> 2778 Calvin Taylor Calvin Taylor 1996-12-24 #> 2779 Cameron Heyward Cameron Heyward 1989-05-06 #> 2780 Carlos Davis Carlos Davis 1996-08-22 #> 2781 Demarcus Christmas Demarcus Christmas 1995-07-04 #> 2782 Derek Watt Derek Watt 1992-11-07 #> 2783 Chris Boswell Chris Boswell 1991-03-16 #> 2784 Sam Sloman Sam Sloman 1997-09-19 #> 2785 Calvin Bundage Calvin Bundage 1998-04-08 #> 2786 Miles Killebrew Miles Killebrew 1993-05-10 #> 2787 Joe Schobert Joe Schobert 1993-11-06 #> 2788 Melvin Ingram Melvin Ingram 1989-04-26 #> 2789 Buddy Johnson Buddy Johnson <NA> #> 2790 Robert Spillane Robert Spillane 1995-12-14 #> 2791 Jamar Watson Jamar Watson 1997-09-03 #> 2792 Quincy Roche Quincy Roche 1998-02-10 #> 2793 Jarvis Miller Jarvis Miller 1997-07-29 #> 2794 Tegray Scales Tegray Scales 1996-05-10 #> 2795 Devin Bush Devin Bush 1998-07-18 #> 2796 T.J. Watt T.J. Watt 1994-10-11 #> 2797 Jamir Jones Jamir Jones 1998-06-14 #> 2798 Alex Highsmith Alex Highsmith 1997-08-07 #> 2799 Marcus Allen Marcus Allen 1996-08-07 #> 2800 Ulysees Gilbert Ulysees Gilbert 1997-08-09 #> 2801 Christian Kuntz Christian Kuntz 1994-04-13 #> 2802 Kameron Canaday Kameron Canaday 1993-08-20 #> 2803 Chris Wormley Chris Wormley 1993-10-25 #> 2804 Trai Turner Trai Turner 1993-06-14 #> 2805 Malcolm Pridgeon Malcolm Pridgeon 1995-01-20 #> 2806 Kevin Dotson Kevin Dotson 1996-09-18 #> 2807 B.J. Finney B.J. Finney 1991-10-26 #> 2808 Ikenna Nwokeji Ikenna Nwokeji 1994-12-02 #> 2809 Jarron Jones Jarron Jones 1994-03-11 #> 2810 Chukwuma Okorafor Chukwuma Okorafor 1997-08-08 #> 2811 Aviante Collins Aviante Collins 1994-05-13 #> 2812 Rashaad Coward Rashaad Coward 1994-11-06 #> 2813 Zach Banner Zach Banner 1993-12-25 #> 2814 Anthony Coyle Anthony Coyle 1996-11-19 #> 2815 Dan Moore Dan Moore 1998-09-28 #> 2816 Chaz Green Chaz Green 1992-04-08 #> 2817 John Leglue John Leglue 1996-04-17 #> 2818 AJ Hughes AJ Hughes 1993-12-07 #> 2819 Pressley Harvin Pressley Harvin 1998-09-17 #> 2820 Jordan Berry Jordan Berry 1991-03-18 #> 2821 Joshua Dobbs Joshua Dobbs 1995-01-26 #> 2822 Ben Roethlisberger Ben Roethlisberger 1982-03-02 #> 2823 Roland Rivers Roland Rivers <NA> #> 2824 Mason Rudolph Mason Rudolph 1995-07-17 #> 2825 Dwayne Haskins Dwayne Haskins 1997-05-03 #> 2826 Nick Schuessler Nick Schuessler <NA> #> 2827 Jaylen Samuels Jaylen Samuels 1996-07-20 #> 2828 Rushel Shell III Rushel Shell III 1993-09-07 #> 2829 Pete Guerriero Pete Guerriero 1998-07-13 #> 2830 Tony Brooks-James Tony Brooks-James 1994-12-06 #> 2831 Anthony McFarland Anthony McFarland 1998-03-04 #> 2832 Benny Snell Benny Snell 1998-02-27 #> 2833 Trey Edmunds Trey Edmunds 1994-12-30 #> 2834 Kalen Ballage Kalen Ballage 1995-12-22 #> 2835 Najee Harris Najee Harris 1998-03-09 #> 2836 Joe Haeg Joe Haeg 1993-03-11 #> 2837 Eric Ebron Eric Ebron 1993-04-10 #> 2838 Marcus Baugh Marcus Baugh 1994-12-09 #> 2839 Pat Freiermuth Pat Freiermuth 1998-10-25 #> 2840 Kevin Rader Kevin Rader 1995-04-26 #> 2841 Zach Gentry Zach Gentry 1996-09-10 #> 2842 Dax Raymond Dax Raymond 1994-11-30 #> 2843 Charles Jones Charles Jones 1996-08-05 #> 2844 Mathew Sexton Mathew Sexton 1997-10-17 #> 2845 Chase Claypool Chase Claypool 1998-07-07 #> 2846 Diontae Johnson Diontae Johnson 1996-07-05 #> 2847 Anthony Johnson Anthony Johnson 1995-01-29 #> 2848 Rico Bussey Rico Bussey 1998-02-25 #> 2849 Isaiah McKoy Isaiah McKoy <NA> #> 2850 James Washington James Washington 1996-04-02 #> 2851 Cody White Cody White 1998-11-28 #> 2852 Tyler Simmons Tyler Simmons 1997-12-30 #> 2853 Ray-Ray McCloud Ray-Ray McCloud 1996-10-15 #> 2854 JuJu Smith-Schuster JuJu Smith-Schuster 1996-11-22 #> 2855 Brad Lundblade Brad Lundblade 1995-09-21 #> 2856 Ryan Neal Ryan Neal 1995-12-24 #> 2857 Ahkello Witherspoon Ahkello Witherspoon 1995-03-21 #> 2858 Pierre Desir Pierre Desir 1990-09-08 #> 2859 Will Sunderland Will Sunderland 1996-08-11 #> 2860 Gavin Heslop Gavin Heslop 1997-11-13 #> 2861 D.J. Reed D.J. Reed 1996-11-11 #> 2862 Damarious Randall Damarious Randall 1992-08-29 #> 2863 Tre Flowers Tre Flowers 1995-06-02 #> 2864 Tre Brown Tre Brown 1997-09-24 #> 2865 Marquise Blair Marquise Blair 1997-07-18 #> 2866 Jordan Miller Jordan Miller 1997-02-08 #> 2867 Ugochukwu Amadi Ugochukwu Amadi 1997-05-16 #> 2868 Aashari Crosswell Aashari Crosswell 2000-08-08 #> 2869 Aldon Smith Aldon Smith 1989-09-25 #> 2870 Marcus Webb Marcus Webb 1997-09-04 #> 2871 Darrell Taylor Darrell Taylor 1997-03-24 #> 2872 Alton Robinson Alton Robinson 1998-06-02 #> 2873 Branden Jackson Branden Jackson 1992-11-11 #> 2874 Eli Mencer Eli Mencer 1996-11-14 #> 2875 Rasheem Green Rasheem Green 1997-05-15 #> 2876 Carlos Dunlap Carlos Dunlap 1989-02-28 #> 2877 L.J. Collier L.J. Collier 1995-09-12 #> 2878 Benson Mayowa Benson Mayowa 1991-08-03 #> 2879 Kerry Hyder Kerry Hyder 1991-05-02 #> 2880 Al Woods Al Woods 1987-03-25 #> 2881 Myles Adams Myles Adams 1998-03-09 #> 2882 Bryan Mone Bryan Mone 1995-10-20 #> 2883 Cedrick Lattimore Cedrick Lattimore 1998-02-06 #> 2884 Jarrod Hewitt Jarrod Hewitt 1997-11-03 #> 2885 Robert Nkemdiche Robert Nkemdiche 1994-09-19 #> 2886 Poona Ford Poona Ford 1995-11-19 #> 2887 Nick Bellore Nick Bellore 1989-05-12 #> 2888 Damien Lewis Damien Lewis 1997-03-21 #> 2889 Chance Warmack Chance Warmack 1991-09-14 #> 2890 Jared Hocker Jared Hocker 1999-07-11 #> 2891 Kyle Fuller Kyle Fuller 1994-03-04 #> 2892 Jason Myers Jason Myers 1991-05-12 #> 2893 Ben Burr-Kirven Ben Burr-Kirven 1997-09-08 #> 2894 Jordyn Brooks Jordyn Brooks 1997-10-21 #> 2895 Cody Barton Cody Barton 1996-11-13 #> 2896 Lakiem Williams Lakiem Williams 1997-08-18 #> 2897 Aaron Donkor Aaron Donkor 1995-03-21 #> 2898 Bobby Wagner Bobby Wagner 1990-06-27 #> 2899 Jon Rhattigan Jon Rhattigan 1999-02-02 #> 2900 Michael Divinity Michael Divinity 1997-05-13 #> 2901 Tim Williams Tim Williams 1993-11-12 #> 2902 Alex Tchangam Alex Tchangam 1997-05-05 #> 2903 Nate Evans Nate Evans 1998-02-27 #> 2904 Keith Butler Keith Butler 1956-05-16 #> 2905 Tyler Ott Tyler Ott 1992-02-28 #> 2906 Gabe Jackson Gabe Jackson 1991-07-12 #> 2907 Phil Haynes Phil Haynes 1995-10-19 #> 2908 Ethan Pocic Ethan Pocic 1995-08-05 #> 2909 Jordan Simmons Jordan Simmons 1994-07-15 #> 2910 Pier-Olivier Lestage Pier-Olivier Lestage 1997-08-04 #> 2911 Jamarco Jones Jamarco Jones 1996-06-04 #> 2912 Stone Forsythe Stone Forsythe 1997-12-29 #> 2913 Greg Eiland Greg Eiland 1998-02-01 #> 2914 Cedric Ogbuehi Cedric Ogbuehi 1992-04-25 #> 2915 Duane Brown Duane Brown 1985-08-30 #> 2916 Brandon Shell Brandon Shell 1992-02-06 #> 2917 Lukayus McNeil Lukayus McNeil 1995-10-13 #> 2918 Jake Curhan Jake Curhan 1998-07-09 #> 2919 Michael Dickson Michael Dickson 1996-01-04 #> 2920 Alex McGough Alex McGough 1995-11-19 #> 2921 Skyler Howard Skyler Howard 1994-11-06 #> 2922 Geno Smith Geno Smith 1990-10-10 #> 2923 Sean Mannion Sean Mannion 1992-04-25 #> 2924 Russell Wilson Russell Wilson 1988-11-29 #> 2925 Marcelias Sutton Marcelias Sutton <NA> #> 2926 Rashaad Penny Rashaad Penny 1996-02-02 #> 2927 Alex Collins Alex Collins 1994-08-26 #> 2928 Patrick Carr Patrick Carr 1995-09-22 #> 2929 Cameron Scarlett Cameron Scarlett 1996-10-09 #> 2930 DeeJay Dallas DeeJay Dallas 1998-09-16 #> 2931 Josh Johnson Josh Johnson 1997-12-26 #> 2932 Travis Homer Travis Homer 1998-08-07 #> 2933 Chris Carson Chris Carson 1994-09-16 #> 2934 Jamal Adams Jamal Adams 1995-10-17 #> 2935 Joshua Moon Joshua Moon 1997-05-18 #> 2936 Quandre Diggs Quandre Diggs 1993-01-22 #> 2937 Tommy Champion Tommy Champion 1997-03-04 #> 2938 Gerald Everett Gerald Everett 1994-06-25 #> 2939 Tyler Mabry Tyler Mabry 1996-11-21 #> 2940 Dominick Wood-Anderson Dominick Wood-Anderson 1998-02-09 #> 2941 Colby Parkinson Colby Parkinson 1999-01-08 #> 2942 Michael Jacobson Michael Jacobson 1997-04-04 #> 2943 Cam Sutton Cam Sutton 1996-09-13 #> 2944 Will Dissly Will Dissly 1996-07-08 #> 2945 Travis Toivonen Travis Toivonen 1998-04-22 #> 2946 Connor Wedington Connor Wedington <NA> #> 2947 Tamorrion Terry Tamorrion Terry 1998-03-21 #> 2948 Darece Roberson Darece Roberson 1998-07-29 #> 2949 Tyler Lockett Tyler Lockett 1992-09-28 #> 2950 John Ursua John Ursua 1994-01-17 #> 2951 Aaron Fuller Aaron Fuller 1997-09-30 #> 2952 Freddie Swain Freddie Swain 1998-08-04 #> 2953 Anthony Ratliff-Williams Anthony Ratliff-Williams 1997-06-17 #> 2954 Penny Hart Penny Hart 1996-07-05 #> 2955 Darvin Kidsy Darvin Kidsy 1995-03-19 #> 2956 DK Metcalf DK Metcalf 1997-12-14 #> 2957 Cody Thompson Cody Thompson 1996-01-11 #> 2958 Speedy Noil Speedy Noil 1995-10-14 #> 2959 D'Wayne Eskridge D'Wayne Eskridge 1997-03-23 #> 2960 Josh Gordon Josh Gordon 1991-04-13 #> 2961 Cade Johnson Cade Johnson 1998-04-10 #> 2962 Weston Richburg Weston Richburg 1991-07-09 #> 2963 Alex Mack Alex Mack 1985-11-19 #> 2964 Jake Brendel Jake Brendel 1992-09-10 #> 2965 Spencer Long Spencer Long 1990-11-08 #> 2966 Zach Franklin Zach Franklin <NA> #> 2967 Alexander Myres Alexander Myres 1996-04-20 #> 2968 Emmanuel Moseley Emmanuel Moseley 1996-03-25 #> 2969 Ken Webster Ken Webster 1996-06-19 #> 2970 B.W. Webb B.W. Webb 1990-05-03 #> 2971 K'Waun Williams K'Waun Williams 1991-07-12 #> 2972 Jason Verrett Jason Verrett 1991-06-18 #> 2973 Mark Fields Mark Fields 1996-10-10 #> 2974 Davontae Harris Davontae Harris 1995-01-21 #> 2975 Ambry Thomas Ambry Thomas 1999-09-09 #> 2976 Dontae Johnson Dontae Johnson 1991-12-01 #> 2977 Tony Jefferson Tony Jefferson 1992-01-27 #> 2978 Ha Ha Clinton-Dix Ha Ha Clinton-Dix 1992-12-21 #> 2979 Tavon Wilson Tavon Wilson 1990-03-19 #> 2980 Jared Mayden Jared Mayden 1998-06-24 #> 2981 Marcell Harris Marcell Harris 1994-06-09 #> 2982 Tarvarius Moore Tarvarius Moore 1996-08-16 #> 2983 Jaquiski Tartt Jaquiski Tartt 1992-02-18 #> 2984 Deommodore Lenoir Deommodore Lenoir 1999-10-06 #> 2985 Talanoa Hufanga Talanoa Hufanga 1999-02-02 #> 2986 Jimmie Ward Jimmie Ward 1991-07-18 #> 2987 Kai Nacua Kai Nacua 1995-03-03 #> 2988 Shilique Calhoun Shilique Calhoun 1992-03-20 #> 2989 Jordan Willis Jordan Willis 1995-05-02 #> 2990 Zach Kerr Zach Kerr 1990-08-29 #> 2991 Arik Armstead Arik Armstead 1993-11-15 #> 2992 Anthony Zettel Anthony Zettel 1992-08-09 #> 2993 Alex Barrett Alex Barrett 1994-03-06 #> 2994 Arden Key Arden Key 1996-05-03 #> 2995 Nick Bosa Nick Bosa 1998-10-23 #> 2996 Samson Ebukam Samson Ebukam 1995-05-09 #> 2997 Eddie Yarbrough Eddie Yarbrough 1993-04-24 #> 2998 Adam Shuler Adam Shuler 1996-12-16 #> 2999 Dee Ford Dee Ford 1991-03-19 #> 3000 Daeshon Hall Daeshon Hall 1995-06-14 #> 3001 Javon Kinlaw Javon Kinlaw 1997-10-03 #> 3002 Kentavius Street Kentavius Street 1997-03-29 #> 3003 Maurice Hurst Maurice Hurst 1995-05-09 #> 3004 Darrion Daniels Darrion Daniels 1997-12-04 #> 3005 D.J. Jones D.J. Jones 1995-01-19 #> 3006 Eddie Vanderdoes Eddie Vanderdoes 1994-10-13 #> 3007 Kevin Givens Kevin Givens 1997-03-01 #> 3008 Josh Hokit Josh Hokit 1997-11-12 #> 3009 Kyle Juszczyk Kyle Juszczyk 1991-04-23 #> 3010 Robbie Gould Robbie Gould 1981-12-06 #> 3011 Kiko Alonso Kiko Alonso 1990-08-14 #> 3012 Demetrius Flannigan-Fowles Demetrius Flannigan-Fowles 1996-09-04 #> 3013 Fred Warner Fred Warner 1996-11-19 #> 3014 Justin Hilliard Justin Hilliard 1997-03-25 #> 3015 Jonas Griffith Jonas Griffith 1997-01-27 #> 3016 Azeez Al-Shaair Azeez Al-Shaair 1997-08-04 #> 3017 Mychal Kendricks Mychal Kendricks 1990-09-28 #> 3018 Elijah Sullivan Elijah Sullivan 1997-05-13 #> 3019 James Burgess James Burgess 1994-03-09 #> 3020 Dre Greenlaw Dre Greenlaw 1997-05-25 #> 3021 Donald Payne Donald Payne 1994-07-12 #> 3022 Taybor Pepper Taybor Pepper 1994-05-28 #> 3023 Laken Tomlinson Laken Tomlinson 1992-02-09 #> 3024 Aaron Banks Aaron Banks 1997-09-03 #> 3025 Dakoda Shepley Dakoda Shepley 1994-12-27 #> 3026 Corbin Kaufusi Corbin Kaufusi 1993-04-12 #> 3027 Jaylon Moore Jaylon Moore 1998-01-09 #> 3028 Senio Kelemete Senio Kelemete 1990-05-10 #> 3029 Tom Compton Tom Compton 1989-05-10 #> 3030 Colton McKivitz Colton McKivitz 1996-08-09 #> 3031 Alfredo Gutierrez Alfredo Gutierrez 1995-12-29 #> 3032 Daniel Brunskill Daniel Brunskill 1994-01-27 #> 3033 Trent Williams Trent Williams 1988-07-19 #> 3034 Justin Skule Justin Skule 1996-11-23 #> 3035 Mike McGlinchey Mike McGlinchey 1994-08-29 #> 3036 Shon Coleman Shon Coleman 1991-11-25 #> 3037 Mitch Wishnowsky Mitch Wishnowsky 1992-03-02 #> 3038 Nate Sudfeld Nate Sudfeld 1993-10-07 #> 3039 Jimmy Garoppolo Jimmy Garoppolo 1991-11-02 #> 3040 Trey Lance Trey Lance 2000-05-12 #> 3041 Glen Coffee Glen Coffee 1987-05-01 #> 3042 Elijah Mitchell Elijah Mitchell 1998-05-02 #> 3043 Jeffery Wilson Jeffery Wilson 1995-11-16 #> 3044 Wayne Gallman Wayne Gallman 1994-10-01 #> 3045 Raheem Mostert Raheem Mostert 1992-04-09 #> 3046 Trey Sermon Trey Sermon 1999-01-30 #> 3047 Jamycal Hasty Jamycal Hasty 1996-09-12 #> 3048 Corey Griffin Corey Griffin 1995-01-08 #> 3049 MyCole Pruitt MyCole Pruitt 1992-03-24 #> 3050 Ross Dwelley Ross Dwelley 1995-01-26 #> 3051 Chase Harrell Chase Harrell 1996-05-16 #> 3052 Joshua Perkins Joshua Perkins 1993-08-05 #> 3053 Jordan Matthews Jordan Matthews 1992-07-16 #> 3054 Charlie Woerner Charlie Woerner 1997-10-16 #> 3055 George Kittle George Kittle 1993-10-09 #> 3056 Jalen Hurd Jalen Hurd 1996-01-24 #> 3057 Bennie Fowler Bennie Fowler 1991-06-10 #> 3058 Shawn Poindexter Shawn Poindexter 1995-12-13 #> 3059 Mohamed Sanu Mohamed Sanu 1989-08-22 #> 3060 Deebo Samuel Deebo Samuel 1996-01-15 #> 3061 Jauan Jennings Jauan Jennings 1997-07-10 #> 3062 Travis Benjamin Travis Benjamin 1989-12-29 #> 3063 Richie James Richie James 1995-09-05 #> 3064 Austin Watkins Austin Watkins <NA> #> 3065 River Cracraft River Cracraft 1994-11-01 #> 3066 Brandon Aiyuk Brandon Aiyuk 1998-03-17 #> 3067 Nsimba Webster Nsimba Webster 1996-01-27 #> 3068 Marqise Lee Marqise Lee 1991-11-25 #> 3069 Chris Thompson Chris Thompson 1994-05-09 #> 3070 Trent Sherfield Trent Sherfield 1996-02-26 #> 3071 Zach Shackelford Zach Shackelford 1997-05-30 #> 3072 Donell Stanley Donell Stanley 1995-06-27 #> 3073 Ryan Jensen Ryan Jensen 1991-05-27 #> 3074 Antonio Hamilton Antonio Hamilton 1993-01-24 #> 3075 Nate Brooks Nate Brooks 1996-09-05 #> 3076 Sean Murphy-Bunting Sean Murphy-Bunting 1997-06-19 #> 3077 Dee Delaney Dee Delaney 1995-02-20 #> 3078 Chris Wilcox Chris Wilcox 1997-10-30 #> 3079 Herb Miller Herb Miller 1997-11-11 #> 3080 Cameron Kinley Cameron Kinley <NA> #> 3081 Jamel Dean Jamel Dean 1996-10-15 #> 3082 Carlton Davis Carlton Davis 1996-12-31 #> 3083 Ross Cockrell Ross Cockrell 1991-08-06 #> 3084 Lawrence White Lawrence White 1998-06-13 #> 3085 Jordan Whitehead Jordan Whitehead 1997-03-18 #> 3086 Augie Contressa Augie Contressa <NA> #> 3087 Javon Hagan Javon Hagan 1997-02-22 #> 3088 Curtis Riley Curtis Riley 1992-07-18 #> 3089 Chris Cooper Chris Cooper 1994-03-17 #> 3090 Raven Greene Raven Greene 1995-02-02 #> 3091 Mike Edwards Mike Edwards 1996-05-18 #> 3092 Antoine Winfield Antoine Winfield 1998-08-16 #> 3093 Deondre Barnett Deondre Barnett <NA> #> 3094 Pat O'Connor Pat O'Connor 1993-11-01 #> 3095 Joe Tryon Joe Tryon 1999-04-30 #> 3096 William Gholston William Gholston 1991-07-31 #> 3097 Jeremiah Ledbetter Jeremiah Ledbetter 1994-06-02 #> 3098 Sam Renner Sam Renner 1997-02-24 #> 3099 Elijah Ponder Elijah Ponder 1998-01-16 #> 3100 Benning Potoa'e Benning Potoa'e 1996-09-17 #> 3101 Steve McLendon Steve McLendon 1986-01-03 #> 3102 Ndamukong Suh Ndamukong Suh 1987-01-06 #> 3103 Kobe Smith Kobe Smith 1998-06-23 #> 3104 Vita Vea Vita Vea 1995-02-05 #> 3105 Khalil Davis Khalil Davis 1996-08-22 #> 3106 Rakeem Nunez-Roches Rakeem Nunez-Roches 1993-07-03 #> 3107 Alex Gray Alex Gray 1993-09-15 #> 3108 D'Cota Dixon D'Cota Dixon 1994-11-20 #> 3109 John Molchon John Molchon 1997-02-02 #> 3110 Nick Leverett Nick Leverett 1997-01-11 #> 3111 Jose Borregales Jose Borregales 1997-12-15 #> 3112 Ryan Succop Ryan Succop 1986-09-19 #> 3113 Grant Stuard Grant Stuard <NA> #> 3114 K.J. Britt K.J. Britt 1999-06-04 #> 3115 Kevin Minter Kevin Minter 1990-12-03 #> 3116 Deone Bucannon Deone Bucannon 1992-08-30 #> 3117 Anthony Nelson Anthony Nelson 1997-03-04 #> 3118 Shaquil Barrett Shaquil Barrett 1992-11-17 #> 3119 Cam Gill Cam Gill 1997-12-14 #> 3120 Devin White Devin White 1998-02-17 #> 3121 Lavonte David Lavonte David 1990-01-23 #> 3122 Leighton McCarthy Leighton McCarthy 1996-05-27 #> 3123 Joseph Jones Joseph Jones 1994-02-21 #> 3124 Jason Pierre-Paul Jason Pierre-Paul 1989-01-01 #> 3125 Quinton Bell Quinton Bell 1996-05-09 #> 3126 Ladarius Hamilton Ladarius Hamilton 1998-01-18 #> 3127 Garrison Sanborn Garrison Sanborn 1985-07-31 #> 3128 Zach Triner Zach Triner 1991-01-30 #> 3129 Dax Dellenbach Dax Dellenbach 1990-04-13 #> 3130 Sadarius Hutcherson Sadarius Hutcherson 1998-04-22 #> 3131 Aaron Stinnie Aaron Stinnie 1994-02-18 #> 3132 Ali Marpet Ali Marpet 1993-04-17 #> 3133 Alex Cappa Alex Cappa 1995-01-27 #> 3134 Austin Albrecht Austin Albrecht 1993-05-06 #> 3135 Earl Watford Earl Watford 1990-06-24 #> 3136 Jake Benzinger Jake Benzinger 1997-01-30 #> 3137 Donovan Smith Donovan Smith 1993-06-23 #> 3138 Jonathan Hubbard Jonathan Hubbard 1997-08-17 #> 3139 Josh Wells Josh Wells 1991-02-14 #> 3140 Brad Seaton Brad Seaton 1993-11-23 #> 3141 Tristan Wirfs Tristan Wirfs 1999-01-24 #> 3142 Chidi Okeke Chidi Okeke 1996-12-26 #> 3143 Brandon Walton Brandon Walton 1998-03-18 #> 3144 Calvin Ashley Calvin Ashley <NA> #> 3145 Robert Hainsey Robert Hainsey 1998-08-12 #> 3146 Bradley Pinion Bradley Pinion 1994-06-01 #> 3147 Hayden Hunt Hayden Hunt 1993-06-09 #> 3148 Matt Wile Matt Wile 1992-06-20 #> 3149 Ryan Griffin Ryan Griffin 1989-11-17 #> 3150 Drew Stanton Drew Stanton 1984-05-07 #> 3151 Blaine Gabbert Blaine Gabbert 1989-10-15 #> 3152 Tom Brady Tom Brady 1977-08-03 #> 3153 Kyle Trask Kyle Trask 1998-03-06 #> 3154 Ronald Jones Ronald Jones 1997-08-03 #> 3155 Ke'Shawn Vaughn Ke'Shawn Vaughn 1997-05-04 #> 3156 Aca'Cedric Ware Aca'Cedric Ware 1997-06-29 #> 3157 Giovani Bernard Giovani Bernard 1991-11-22 #> 3158 Troymaine Pope Troymaine Pope 1993-11-26 #> 3159 Leonard Fournette Leonard Fournette 1995-01-18 #> 3160 C.J. Prosise C.J. Prosise 1994-05-20 #> 3161 T.J. Logan T.J. Logan 1994-09-03 #> 3162 Aaron Davis Aaron Davis <NA> #> 3163 Justin Evans Justin Evans 1995-08-26 #> 3164 De'Quan Hampton De'Quan Hampton 1994-04-18 #> 3165 Jerell Adams Jerell Adams 1992-12-31 #> 3166 O.J. Howard O.J. Howard 1994-11-19 #> 3167 Tanner Hudson Tanner Hudson 1994-11-12 #> 3168 Cameron Brate Cameron Brate 1991-07-03 #> 3169 Rob Gronkowski Rob Gronkowski 1989-05-14 #> 3170 Codey McElroy Codey McElroy 1992-12-13 #> 3171 Jaydon Mickens Jaydon Mickens 1994-04-21 #> 3172 Cyril Grayson Cyril Grayson 1993-12-05 #> 3173 Chris Godwin Chris Godwin 1996-02-27 #> 3174 Josh Pearson Josh Pearson 1997-06-13 #> 3175 Antonio Brown Antonio Brown 1988-07-10 #> 3176 T.J. Simmons T.J. Simmons <NA> #> 3177 Thomas Sperbeck Thomas Sperbeck 1994-10-20 #> 3178 John Franklin John Franklin 1994-09-21 #> 3179 Travis Jonsen Travis Jonsen 1996-10-16 #> 3180 Tyler Johnson Tyler Johnson 1998-08-25 #> 3181 Mike Evans Mike Evans 1993-08-21 #> 3182 Jaelon Darden Jaelon Darden 1999-01-14 #> 3183 Scott Miller Scott Miller 1997-07-31 #> 3184 Justin Watson Justin Watson 1995-04-04 #> 3185 Evan Perroni Evan Perroni <NA> #> 3186 Spencer Pulley Spencer Pulley 1993-04-04 #> 3187 Patrick Morris Patrick Morris 1995-02-13 #> 3188 Ben Jones Ben Jones 1989-07-02 #> 3189 Daniel Munyer Daniel Munyer 1992-03-04 #> 3190 Aaron Brewer Aaron Brewer 1997-10-28 #> 3191 Breon Borders Breon Borders 1995-07-22 #> 3192 Greg Mabin Greg Mabin 1994-06-25 #> 3193 Kristian Fulton Kristian Fulton 1998-09-03 #> 3194 Kevin Peterson Kevin Peterson 1994-03-22 #> 3195 Janoris Jenkins Janoris Jenkins 1988-10-29 #> 3196 Ryan McKinley Ryan McKinley <NA> #> 3197 Quenton Meeks Quenton Meeks 1996-06-20 #> 3198 Chris Jones Chris Jones 1995-08-13 #> 3199 Caleb Farley Caleb Farley 1998-11-02 #> 3200 Elijah Molden Elijah Molden 1999-01-30 #> 3201 Matthias Farley Matthias Farley 1992-07-15 #> 3202 Amani Hooker Amani Hooker 1998-06-14 #> 3203 Jamal Carter Jamal Carter 1994-04-12 #> 3204 Chris Jackson Chris Jackson 1998-04-13 #> 3205 Tedric Thompson Tedric Thompson 1995-01-20 #> 3206 Briean Boddy-Calhoun Briean Boddy-Calhoun 1993-01-21 #> 3207 Maurice Smith Maurice Smith 1995-06-14 #> 3208 Reggie Floyd Reggie Floyd 1998-04-02 #> 3209 Dane Cruikshank Dane Cruikshank 1995-04-27 #> 3210 Brady Breeze Brady Breeze 1997-10-09 #> 3211 Clayton Geathers Clayton Geathers 1992-06-01 #> 3212 Kevin Byard Kevin Byard 1993-08-17 #> 3213 Bradley McDougald Bradley McDougald 1990-11-15 #> 3214 Freedom Akinmoladun Freedom Akinmoladun 1996-02-11 #> 3215 Denico Autry Denico Autry 1990-07-15 #> 3216 Wyatt Ray Wyatt Ray 1996-10-24 #> 3217 Woodrow Hamilton Woodrow Hamilton 1992-12-20 #> 3218 Anthony Rush Anthony Rush 1996-09-01 #> 3219 Trevon Coley Trevon Coley 1994-07-13 #> 3220 Roderick Henderson Roderick Henderson <NA> #> 3221 Naquan Jones Naquan Jones 1998-02-05 #> 3222 Jeffery Simmons Jeffery Simmons 1997-07-28 #> 3223 Teair Tart Teair Tart 1997-02-28 #> 3224 Daylon Mack Daylon Mack 1997-02-23 #> 3225 Jullian Taylor Jullian Taylor 1995-01-30 #> 3226 Kyle Peko Kyle Peko 1993-07-23 #> 3227 Larrell Murchison Larrell Murchison 1997-04-24 #> 3228 Tory Carter Tory Carter 1999-03-16 #> 3229 Elijaah Goins Elijaah Goins <NA> #> 3230 Adam Coon Adam Coon 1994-11-14 #> 3231 Cole Banwart Cole Banwart 1997-08-21 #> 3232 Johnny Ragin Johnny Ragin 1995-02-08 #> 3233 Giorgio Tavecchio Giorgio Tavecchio 1990-07-16 #> 3234 Tucker McCann Tucker McCann 1997-11-10 #> 3235 Blake Haubeil Blake Haubeil <NA> #> 3236 Sam Ficken Sam Ficken 1992-12-14 #> 3237 Derick Roberson Derick Roberson 1995-11-15 #> 3238 Nick Dzubnar Nick Dzubnar 1991-08-15 #> 3239 Olasunkanmi Adeniyi Olasunkanmi Adeniyi 1997-09-12 #> 3240 Justin March-Lillard Justin March-Lillard 1993-07-05 #> 3241 Rashad Weaver Rashad Weaver 1997-11-10 #> 3242 Monty Rice Monty Rice 1999-01-08 #> 3243 John Simon John Simon 1990-10-14 #> 3244 Bud Dupree Bud Dupree 1993-02-12 #> 3245 Harold Landry Harold Landry 1996-06-05 #> 3246 Jan Johnson Jan Johnson 1996-04-09 #> 3247 Rashaan Evans Rashaan Evans 1996-11-08 #> 3248 Jayon Brown Jayon Brown 1995-02-26 #> 3249 David Long David Long 1996-10-12 #> 3250 B.J. Bello B.J. Bello 1994-10-31 #> 3251 Morgan Cox Morgan Cox 1986-04-26 #> 3252 Rodger Saffold Rodger Saffold 1988-06-06 #> 3253 Ross Reynolds Ross Reynolds 1995-09-14 #> 3254 Jordan Roos Jordan Roos 1993-07-06 #> 3255 Chandon Herring Chandon Herring <NA> #> 3256 David Quessenberry David Quessenberry 1990-08-24 #> 3257 Nate Davis Nate Davis 1996-09-23 #> 3258 Brent Qvale Brent Qvale 1991-03-11 #> 3259 Taylor Lewan Taylor Lewan 1991-07-22 #> 3260 Dillon Radunz Dillon Radunz 1998-03-28 #> 3261 Christian DiLauro Christian DiLauro 1994-11-11 #> 3262 Paul Adams Paul Adams 1995-05-17 #> 3263 Ty Sambrailo Ty Sambrailo 1992-03-10 #> 3264 Kendall Lamm Kendall Lamm 1992-06-05 #> 3265 Elijah Nkansah Elijah Nkansah 1994-12-28 #> 3266 Anthony McKinney Anthony McKinney 1997-10-25 #> 3267 James Smith James Smith <NA> #> 3268 Brett Kern Brett Kern 1986-02-17 #> 3269 Matt Barkley Matt Barkley 1990-09-08 #> 3270 Ryan Tannehill Ryan Tannehill 1988-07-27 #> 3271 DeShone Kizer DeShone Kizer 1995-01-03 #> 3272 Logan Woodside Logan Woodside 1995-01-27 #> 3273 Darrynton Evans Darrynton Evans 1998-07-09 #> 3274 Jeremy McNichols Jeremy McNichols 1995-12-26 #> 3275 Khari Blasingame Khari Blasingame 1996-07-01 #> 3276 Derrick Henry Derrick Henry 1994-07-17 #> 3277 Brian Hill Brian Hill 1995-11-09 #> 3278 Mekhi Sargent Mekhi Sargent 1997-10-08 #> 3279 Brandon Kemp Brandon Kemp 1997-01-18 #> 3280 Deon Yelder Deon Yelder 1995-03-06 #> 3281 Luke Stocker Luke Stocker 1988-07-17 #> 3282 Geoff Swaim Geoff Swaim 1993-09-16 #> 3283 Briley Moore-McKinney Briley Moore-McKinney 1998-01-13 #> 3284 Anthony Firkser Anthony Firkser 1995-02-19 #> 3285 Gabe Holmes Gabe Holmes 1991-03-29 #> 3286 Jared Pinkney Jared Pinkney 1997-08-21 #> 3287 Donnie Ernsberger Donnie Ernsberger 1996-10-13 #> 3288 Tommy Hudson Tommy Hudson 1997-02-22 #> 3289 Miller Forristall Miller Forristall 1998-03-11 #> 3290 Cameron Batson Cameron Batson 1995-12-20 #> 3291 Fred Brown Fred Brown 1993-12-01 #> 3292 Rashard Davis Rashard Davis 1995-09-14 #> 3293 Julio Jones Julio Jones 1989-02-03 #> 3294 Chester Rogers Chester Rogers 1994-01-12 #> 3295 A.J. Brown A.J. Brown 1997-06-30 #> 3296 Kalija Lipscomb Kalija Lipscomb 1997-10-06 #> 3297 Marcus Johnson Marcus Johnson 1994-08-05 #> 3298 Nick Westbrook-Ikhine Nick Westbrook-Ikhine 1997-03-21 #> 3299 Racey McMath Racey McMath 1999-06-14 #> 3300 Josh Reynolds Josh Reynolds 1995-02-16 #> 3301 Cody Hollister Cody Hollister 1993-11-18 #> 3302 Dez Fitzpatrick Dez Fitzpatrick 1997-12-17 #> 3303 Mason Kinsey Mason Kinsey 1998-08-29 #> 3304 Jon Toth Jon Toth 1994-02-11 #> 3305 Chase Roullier Chase Roullier 1993-08-23 #> 3306 Keith Ismael Keith Ismael 1998-07-25 #> 3307 Quinton Schooley Quinton Schooley <NA> #> 3308 Tyler Larsen Tyler Larsen 1991-07-08 #> 3309 Bobby McCain Bobby McCain 1993-08-18 #> 3310 Aaron Colvin Aaron Colvin 1991-10-02 #> 3311 Darryl Roberts Darryl Roberts 1990-11-26 #> 3312 Greg Stroman Greg Stroman 1996-03-08 #> 3313 Simeon Thomas Simeon Thomas 1993-09-22 #> 3314 Torry McTyer Torry McTyer 1995-04-10 #> 3315 William Jackson William Jackson 1992-10-27 #> 3316 Danny Johnson Danny Johnson 1995-11-17 #> 3317 Linden Stephens Linden Stephens 1995-03-21 #> 3318 Cole Luke Cole Luke 1995-06-30 #> 3319 Jimmy Moreland Jimmy Moreland 1995-08-26 #> 3320 Kendall Fuller Kendall Fuller 1995-02-13 #> 3321 Chris Miller Chris Miller 1997-10-06 #> 3322 Landon Collins Landon Collins 1994-01-10 #> 3323 Darrick Forrest Darrick Forrest 1999-05-22 #> 3324 Deshazor Everett Deshazor Everett 1992-02-22 #> 3325 Kamren Curl Kamren Curl 1999-03-31 #> 3326 Benjamin St-Juste Benjamin St-Juste 1997-09-08 #> 3327 Jordan Brown Jordan Brown 1996-03-26 #> 3328 Jeremy Reaves Jeremy Reaves 1996-08-29 #> 3329 Troy Apke Troy Apke 1995-04-11 #> 3330 Bunmi Rotimi Bunmi Rotimi 1995-07-16 #> 3331 James Smith-Williams James Smith-Williams 1997-07-29 #> 3332 Montez Sweat Montez Sweat 1996-09-04 #> 3333 Casey Toohill Casey Toohill 1996-08-21 #> 3334 William Bradley-King William Bradley-King 1997-12-22 #> 3335 Justus Reed Justus Reed <NA> #> 3336 Chase Young Chase Young 1999-04-14 #> 3337 Caleb Brantley Caleb Brantley 1994-09-02 #> 3338 Jalen Jelks Jalen Jelks 1996-08-03 #> 3339 Shaka Toney Shaka Toney 1998-01-08 #> 3340 Matt Ioannidis Matt Ioannidis 1994-01-11 #> 3341 David Bada David Bada 1995-05-24 #> 3342 Daron Payne Daron Payne 1997-05-27 #> 3343 Daniel Wise Daniel Wise 1996-01-16 #> 3344 Tim Settle Tim Settle 1997-07-11 #> 3345 Devaroe Lawrence Devaroe Lawrence 1994-10-13 #> 3346 Gabe Wright Gabe Wright 1992-04-03 #> 3347 Jonathan Allen Jonathan Allen 1995-01-16 #> 3348 Michael Liedtke Michael Liedtke 1992-01-15 #> 3349 Sean Welsh Sean Welsh 1994-10-13 #> 3350 Najee Toran Najee Toran 1995-11-15 #> 3351 Dustin Hopkins Dustin Hopkins 1990-10-01 #> 3352 Kaare Vedvik Kaare Vedvik 1994-03-16 #> 3353 Jon Bostic Jon Bostic 1991-05-05 #> 3354 David Mayo David Mayo 1993-08-08 #> 3355 Jamin Davis Jamin Davis 1998-12-12 #> 3356 Jared Norris Jared Norris 1993-07-19 #> 3357 Reuben Foster Reuben Foster 1994-04-04 #> 3358 Jordan Kunaszyk Jordan Kunaszyk 1996-10-15 #> 3359 Khaleke Hudson Khaleke Hudson 1997-12-06 #> 3360 Justin Phillips Justin Phillips 1995-10-10 #> 3361 Joe Walker Joe Walker 1992-12-11 #> 3362 Cole Holcomb Cole Holcomb 1996-07-30 #> 3363 Camaron Cheeseman Camaron Cheeseman 1998-04-26 #> 3364 Wes Schweitzer Wes Schweitzer 1993-09-11 #> 3365 Wes Martin Wes Martin 1996-05-09 #> 3366 Beau Benzschawel Beau Benzschawel 1995-09-10 #> 3367 Brandon Scherff Brandon Scherff 1991-12-26 #> 3368 Samuel Cosmi Samuel Cosmi 1999-02-16 #> 3369 Rick Leonard Rick Leonard 1996-11-22 #> 3370 Cole Boozer Cole Boozer 1994-11-15 #> 3371 Charles Leno Charles Leno 1991-10-09 #> 3372 Saahdiq Charles Saahdiq Charles 1999-07-26 #> 3373 Ereck Flowers Ereck Flowers 1994-04-25 #> 3374 David Steinmetz David Steinmetz 1995-03-01 #> 3375 David Sharpe David Sharpe 1995-10-21 #> 3376 Cornelius Lucas Cornelius Lucas 1991-07-18 #> 3377 Tress Way Tress Way 1990-04-18 #> 3378 Taylor Heinicke Taylor Heinicke 1993-03-15 #> 3379 Kyle Allen Kyle Allen 1996-03-08 #> 3380 Steven Montez Steven Montez 1997-01-14 #> 3381 Ryan Fitzpatrick Ryan Fitzpatrick 1982-11-24 #> 3382 Lamar Miller Lamar Miller 1991-04-25 #> 3383 J.D. McKissic J.D. McKissic 1993-08-15 #> 3384 Jonathan Williams Jonathan Williams 1994-02-02 #> 3385 Peyton Barber Peyton Barber 1994-06-27 #> 3386 Antonio Gibson Antonio Gibson 1998-06-23 #> 3387 Jaret Patterson Jaret Patterson 1999-12-23 #> 3388 Sammis Reyes Sammis Reyes 1995-10-19 #> 3389 Nick Guggemos Nick Guggemos <NA> #> 3390 Ricky Seals-Jones Ricky Seals-Jones 1995-03-15 #> 3391 Kano Dillon Kano Dillon <NA> #> 3392 Logan Thomas Logan Thomas 1991-07-01 #> 3393 Dylan Cantrell Dylan Cantrell 1994-06-29 #> 3394 Caleb Wilson Caleb Wilson 1996-07-15 #> 3395 John Bates John Bates 1997-11-06 #> 3396 Temarrick Hemingway Temarrick Hemingway 1993-07-30 #> 3397 Tyrone Swoopes Tyrone Swoopes 1994-11-14 #> 3398 Antonio Gandy-Golden Antonio Gandy-Golden 1998-04-11 #> 3399 DeAndre Carter DeAndre Carter 1993-04-10 #> 3400 Dax Milne Dax Milne 1999-06-23 #> 3401 Mikah Holder Mikah Holder 1996-01-26 #> 3402 Curtis Samuel Curtis Samuel 1996-08-11 #> 3403 Terry McLaurin Terry McLaurin 1996-04-15 #> 3404 Cam Sims Cam Sims 1996-01-06 #> 3405 Tony Brown Tony Brown 1997-08-08 #> 3406 Kelvin Harmon Kelvin Harmon 1996-12-15 #> 3407 Adam Humphries Adam Humphries 1993-06-24 #> 3408 Emanuel Hall Emanuel Hall 1997-05-21 #> 3409 Isaiah Wright Isaiah Wright 1997-01-13 #> 3410 Steven Sims Steven Sims 1997-03-31 #> 3411 Dyami Brown Dyami Brown 1999-11-01 #> 3412 Mike Pouncey Mike Pouncey 1989-07-24 #> 3413 Demetrius Rhaney Demetrius Rhaney 1992-06-22 #> 3414 Erik Magnuson Erik Magnuson 1994-01-05 #> 3415 Aaron Neary Aaron Neary 1992-11-15 #> 3416 Kyle Friend Kyle Friend 1994-04-03 #> 3417 Ryan Kalil Ryan Kalil 1985-03-29 #> 3418 Cornelius Edison Cornelius Edison 1993-07-10 #> 3419 Tony Bergstrom Tony Bergstrom 1986-08-06 #> 3420 A.Q. Shipley A.Q. Shipley 1986-05-22 #> 3421 Casey Dunn Casey Dunn 1994-10-11 #> 3422 Toa Lobendahn Toa Lobendahn 1996-02-14 #> 3423 Bunchy Stallings Bunchy Stallings 1995-09-27 #> 3424 Maurkice Pouncey Maurkice Pouncey 1989-07-24 #> 3425 Jake Ohnesorge Jake Ohnesorge <NA> #> 3426 Vitas Hrynkiewicz Vitas Hrynkiewicz 1995-10-27 #> 3427 Gino Gradkowski Gino Gradkowski 1988-11-05 #> 3428 Nate Trewyn Nate Trewyn 1996-05-16 #> 3429 James Stone James Stone 1992-04-26 #> 3430 Nico Falah Nico Falah 1995-01-06 #> 3431 T.J. Johnson T.J. Johnson 1990-07-17 #> 3432 Cole Madison Cole Madison 1994-12-20 #> 3433 Andrew East Andrew East 1991-09-17 #> 3434 Daniel Kilgore Daniel Kilgore 1987-12-18 #> 3435 Chandler Miller Chandler Miller 1996-04-16 #> 3436 John Sullivan John Sullivan 1985-08-08 #> 3437 Wesley Johnson Wesley Johnson 1991-01-09 #> 3438 Lucas Gravelle Lucas Gravelle 1995-07-28 #> 3439 Travis Swanson Travis Swanson 1991-01-30 #> 3440 Tony Adams Tony Adams 1995-12-28 #> 3441 Kirk Barron Kirk Barron 1995-06-03 #> 3442 Dillon Day Dillon Day 1991-10-17 #> 3443 Skyler Phillips Skyler Phillips 1995-10-04 #> 3444 Deyshawn Bond Deyshawn Bond 1994-08-19 #> 3445 John Keenoy John Keenoy 1997-02-26 #> 3446 Keegan Render Keegan Render 1995-11-23 #> 3447 Hroniss Grasu Hroniss Grasu 1991-08-12 #> 3448 Ethan Cooper Ethan Cooper 1995-06-11 #> 3449 Tanner Volson Tanner Volson 1996-05-04 #> 3450 Brian Schwenke Brian Schwenke 1991-03-22 #> 3451 J.P. Quinn J.P. Quinn 1994-07-30 #> 3452 Parker Collins Parker Collins 1994-05-19 #> 3453 Tejan Koroma Tejan Koroma 1996-04-27 #> 3454 Mike Matthews Mike Matthews 1994-01-27 #> 3455 Luke Bowanko Luke Bowanko 1991-06-13 #> 3456 Austin Reiter Austin Reiter 1991-11-27 #> 3457 James O'Hagan James O'Hagan 1996-09-19 #> 3458 Austin Davis Austin Davis 1995-02-25 #> 3459 Max Unger Max Unger 1986-04-14 #> 3460 Marquez White Marquez White 1994-10-29 #> 3461 Davon House Davon House 1989-07-10 #> 3462 Dominique Hatfield Dominique Hatfield 1994-12-13 #> 3463 Marcus Cooper Marcus Cooper 1990-02-01 #> 3464 Prince Charles Iworah Prince Charles Iworah 1993-03-11 #> 3465 Kalan Reed Kalan Reed 1993-12-29 #> 3466 Buster Skrine Buster Skrine 1989-04-26 #> 3467 Jayson Stanley Jayson Stanley 1997-04-24 #> 3468 Josh Robinson Josh Robinson 1991-01-08 #> 3469 David Amerson David Amerson 1991-12-08 #> 3470 Derrick Jones Derrick Jones 1994-12-04 #> 3471 Marcus Sherels Marcus Sherels 1987-09-30 #> 3472 Dezmen Southward Dezmen Southward 1990-10-01 #> 3473 Malik Reaves Malik Reaves 1995-12-15 #> 3474 Coty Sensabaugh Coty Sensabaugh 1988-11-15 #> 3475 Leon McFadden Leon McFadden 1990-10-26 #> 3476 Vontae Davis Vontae Davis 1988-05-27 #> 3477 Antwon Blake Antwon Blake 1990-08-09 #> 3478 Clifton Duck Clifton Duck 1998-05-03 #> 3479 Richard Sherman Richard Sherman 1988-03-30 #> 3480 D.J. Hayden D.J. Hayden 1990-06-27 #> 3481 Alex Carter Alex Carter 1994-10-19 #> 3482 Bradford Lemmons Bradford Lemmons 1996-04-19 #> 3483 Dexter McDonald Dexter McDonald 1991-11-30 #> 3484 Josh Norman Josh Norman 1987-12-15 #> 3485 Ronald Zamort Ronald Zamort 1991-11-10 #> 3486 Chris Lewis-Harris Chris Lewis-Harris 1989-02-11 #> 3487 Donatello Brown Donatello Brown 1991-05-15 #> 3488 Trey Johnson Trey Johnson 1994-09-27 #> 3489 Mark Myers Mark Myers 1994-09-05 #> 3490 DeShawn Shead DeShawn Shead 1989-06-28 #> 3491 Bryce Canady Bryce Canady <NA> #> 3492 Xavier Coleman Xavier Coleman 1995-01-13 #> 3493 Juante Baldwin Juante Baldwin 1994-10-24 #> 3494 Brent Grimes Brent Grimes 1983-07-19 #> 3495 Taurean Nixon Taurean Nixon 1991-02-07 #> 3496 Travell Dixon Travell Dixon 1991-02-17 #> 3497 Tony Lippett Tony Lippett 1992-07-02 #> 3498 Bryce Jones Bryce Jones 1994-08-20 #> 3499 Orlando Scandrick Orlando Scandrick 1987-02-10 #> 3500 Brandon Carr Brandon Carr 1986-05-19 #> 3501 Tenny Adewusi Tenny Adewusi 1997-05-13 #> 3502 Demontre Hurst Demontre Hurst 1991-03-24 #> 3503 Trevor Williams Trevor Williams 1993-09-15 #> 3504 Channing Stribling Channing Stribling 1994-11-21 #> 3505 Makinton Dorleant Makinton Dorleant 1992-10-06 #> 3506 Nydair Rouse Nydair Rouse 1995-06-13 #> 3507 Ryan Pulley Ryan Pulley 1995-12-31 #> 3508 Adairius Barnes Adairius Barnes 1994-04-30 #> 3509 Christian Campbell Christian Campbell 1995-11-27 #> 3510 Kenneth Acker Kenneth Acker 1992-02-06 #> 3511 Marcus Williams Marcus Williams 1991-03-24 #> 3512 Jaylen Hill Jaylen Hill 1994-05-26 #> 3513 Morris Claiborne Morris Claiborne 1990-02-07 #> 3514 Reese Fleming Reese Fleming 1993-12-06 #> 3515 Tramaine Brock Tramaine Brock 1988-08-20 #> 3516 Joshua Simmons Joshua Simmons 1996-07-01 #> 3517 Elijah Battle Elijah Battle <NA> #> 3518 Byron Maxwell Byron Maxwell 1988-02-23 #> 3519 Jeremiah McKinnon Jeremiah McKinnon 1993-06-29 #> 3520 Joshua Holsey Joshua Holsey 1994-06-25 #> 3521 Tevin Mitchel Tevin Mitchel 1992-08-03 #> 3522 Tarvarus McFadden Tarvarus McFadden 1997-01-28 #> 3523 DaShaun Amos DaShaun Amos 1994-09-20 #> 3524 Terence Newman Terence Newman 1978-09-04 #> 3525 CJ Smith CJ Smith 1993-05-10 #> 3526 Dakari Monroe Dakari Monroe 1997-08-18 #> 3527 Jamar Taylor Jamar Taylor 1990-09-29 #> 3528 Treston Decoud Treston Decoud 1993-08-01 #> 3529 Davante Davis Davante Davis 1995-09-26 #> 3530 David Rivers David Rivers 1994-07-23 #> 3531 Sterling Moore Sterling Moore 1990-02-03 #> 3532 Trevon Mathis Trevon Mathis 1995-09-12 #> 3533 Taveze Calhoun Taveze Calhoun 1992-12-26 #> 3534 Keith Baxter Keith Baxter 1992-06-04 #> 3535 Quincy Redmon Quincy Redmon 1993-12-11 #> 3536 Kenneth Durden Kenneth Durden 1992-05-16 #> 3537 Jalen Myrick Jalen Myrick 1995-02-27 #> 3538 Step Durham Step Durham 1995-06-10 #> 3539 Howard Wilson Howard Wilson 1995-10-30 #> 3540 Lenzy Pipkins Lenzy Pipkins 1993-11-07 #> 3541 Jeremy Boykins Jeremy Boykins 1995-05-29 #> 3542 Javien Elliott Javien Elliott 1993-07-18 #> 3543 Lashard Durr Lashard Durr 1994-10-24 #> 3544 Anthony Cioffi Anthony Cioffi 1994-08-26 #> 3545 Mazzi Wilkins Mazzi Wilkins 1995-10-12 #> 3546 Sammy Seamster Sammy Seamster 1991-02-05 #> 3547 Mercy Maston Mercy Maston 1992-11-10 #> 3548 Neiko Thorpe Neiko Thorpe 1990-02-11 #> 3549 Jhavonte Dean Jhavonte Dean 1995-12-14 #> 3550 Demetri Goodson Demetri Goodson 1989-06-11 #> 3551 Kevin Toliver Kevin Toliver 1995-11-24 #> 3552 Brandon Boykin Brandon Boykin 1990-07-13 #> 3553 D'Andre Payne D'Andre Payne 1996-05-17 #> 3554 Kayvon Webster Kayvon Webster 1991-02-01 #> 3555 William Gay William Gay 1985-01-01 #> 3556 Mike Jones Mike Jones <NA> #> 3557 Doran Grant Doran Grant 1992-11-30 #> 3558 Dexter McDougle Dexter McDougle 1991-04-08 #> 3559 C.J. Reavis C.J. Reavis 1995-11-27 #> 3560 Leonard Johnson Leonard Johnson 1990-03-30 #> 3561 Michael Hunter Michael Hunter 1993-04-19 #> 3562 Johnathan Joseph Johnathan Joseph 1984-04-16 #> 3563 Ryan Lewis Ryan Lewis 1994-04-15 #> 3564 Ranthony Texada Ranthony Texada 1995-05-16 #> 3565 Shareece Wright Shareece Wright 1987-04-08 #> 3566 Denzel Rice Denzel Rice 1993-03-31 #> 3567 Elie Bouka Elie Bouka 1992-08-15 #> 3568 Tony McRae Tony McRae 1993-05-03 #> 3569 Josh Thornton Josh Thornton 1992-11-24 #> 3570 Aqib Talib Aqib Talib 1986-02-13 #> 3571 Rob Daniel Rob Daniel 1991-10-01 #> 3572 Adam Jones Adam Jones 1983-09-30 #> 3573 Jalen Collins Jalen Collins 1993-03-20 #> 3574 Jermaine Kelly Jermaine Kelly 1995-02-26 #> 3575 Marcus Burley Marcus Burley 1990-07-16 #> 3576 Tyler Patmon Tyler Patmon 1991-01-26 #> 3577 Cordrea Tankersley Cordrea Tankersley 1993-11-19 #> 3578 Craig Mager Craig Mager 1992-06-11 #> 3579 Jermaine Ponder Jermaine Ponder 1995-01-09 #> 3580 Captain Munnerlyn Captain Munnerlyn 1988-04-10 #> 3581 Rashard Fant Rashard Fant 1995-01-08 #> 3582 B.J. Clay B.J. Clay 1995-01-18 #> 3583 Trovon Reed Trovon Reed 1990-12-30 #> 3584 De'Vante Harris De'Vante Harris 1993-06-30 #> 3585 Jeff Richards Jeff Richards 1991-01-03 #> 3586 Derrick Baity Derrick Baity 1996-12-23 #> 3587 Ryan Carter Ryan Carter 1994-11-04 #> 3588 Harlan Miller Harlan Miller 1994-06-20 #> 3589 Dre Kirkpatrick Dre Kirkpatrick 1989-10-26 #> 3590 Cyrus Jones Cyrus Jones 1993-11-29 #> 3591 Bene' Benwikere Bene' Benwikere 1991-09-03 #> 3592 Robert Nelson Robert Nelson 1990-02-16 #> 3593 Javien Hamilton Javien Hamilton 1996-09-02 #> 3594 Tramon Williams Tramon Williams 1983-03-16 #> 3595 Leon Hall Leon Hall 1984-12-09 #> 3596 Johnthan Banks Johnthan Banks 1989-10-03 #> 3597 Deatrick Nichols Deatrick Nichols 1994-06-08 #> 3598 Stanley Jean-Baptiste Stanley Jean-Baptiste 1990-04-12 #> 3599 Dominique Rodgers-Cromartie Dominique Rodgers-Cromartie 1986-04-07 #> 3600 Phillip Gaines Phillip Gaines 1991-04-04 #> 3601 Ashton Lampkin Ashton Lampkin 1994-01-10 #> 3602 Kevin Johnson Kevin Johnson 1992-08-05 #> 3603 Quinten Rollins Quinten Rollins 1992-07-15 #> 3604 Antwuan Davis Antwuan Davis 1995-05-14 #> 3605 Rashard Causey Rashard Causey 1996-09-20 #> 3606 Lorenzo Doss Lorenzo Doss 1994-04-22 #> 3607 Trey Caldwell Trey Caldwell 1993-12-04 #> 3608 Jackson Porter Jackson Porter 1995-01-26 #> 3609 Marcus Rios Marcus Rios 1994-10-25 #> 3610 D'Montre Wade D'Montre Wade 1994-12-22 #> 3611 Curtis Mikell Curtis Mikell 1995-11-25 #> 3612 Dashaun Phillips Dashaun Phillips 1991-01-03 #> 3613 Ladarius Gunter Ladarius Gunter 1992-05-13 #> 3614 Michael Jordan Michael Jordan 1992-10-21 #> 3615 Sam Shields Sam Shields 1987-12-08 #> 3616 Jonathan Moxey Jonathan Moxey 1995-01-04 #> 3617 Darius Hillary Darius Hillary 1993-04-05 #> 3618 LeShaun Sims LeShaun Sims 1993-09-18 #> 3619 Horace Richardson Horace Richardson 1993-09-28 #> 3620 Jarell Carter Jarell Carter 1995-08-07 #> 3621 Keith Reaser Keith Reaser 1991-07-31 #> 3622 Amari Coleman Amari Coleman 1996-10-09 #> 3623 Alterraun Verner Alterraun Verner 1988-12-13 #> 3624 Christian Boutte Christian Boutte 1995-12-29 #> 3625 Rodney Randle Jr. Rodney Randle Jr. 1997-02-27 #> 3626 George Iloka George Iloka 1990-03-31 #> 3627 Marcus Gilchrist Marcus Gilchrist 1988-12-08 #> 3628 Jahleel Addae Jahleel Addae 1990-01-24 #> 3629 Andrew Soroh Andrew Soroh 1996-02-12 #> 3630 Arrion Springs Arrion Springs 1995-09-19 #> 3631 Rashaan Gaulden Rashaan Gaulden 1995-01-25 #> 3632 Jocquez Kalili Jocquez Kalili 1996-02-29 #> 3633 Tre Boston Tre Boston 1992-06-25 #> 3634 Sherrick McManis Sherrick McManis 1987-12-19 #> 3635 Jalen Harvey Jalen Harvey 1995-09-19 #> 3636 Tyler Sigler Tyler Sigler 1996-03-26 #> 3637 Chris Edwards Chris Edwards 1992-12-23 #> 3638 Henre' Toliver Henre' Toliver 1996-10-21 #> 3639 Rashard Robinson Rashard Robinson 1995-07-23 #> 3640 Isaiah Langley Isaiah Langley 1996-10-13 #> 3641 Marcus Edmond Marcus Edmond 1995-07-06 #> 3642 Andrew Sendejo Andrew Sendejo 1987-09-09 #> 3643 D.J. Swearinger D.J. Swearinger 1991-09-01 #> 3644 Deion Harris Deion Harris 1995-12-18 #> 3645 Jamalcolm Liggins Jamalcolm Liggins 1996-04-26 #> 3646 Jarvis Jenkins Jarvis Jenkins 1988-04-24 #> 3647 Connor Flagel Connor Flagel 1995-01-08 #> 3648 Vic Beasley Vic Beasley 1992-07-08 #> 3649 Alex Jenkins Alex Jenkins 1993-01-15 #> 3650 Jojo Wicker Jojo Wicker 1996-06-09 #> 3651 Jake Ceresna Jake Ceresna 1995-07-21 #> 3652 Marcell Dareus Marcell Dareus 1990-03-13 #> 3653 Tyrone Holmes Tyrone Holmes 1993-09-10 #> 3654 Chris Long Chris Long 1985-03-28 #> 3655 Yurik Bethune Yurik Bethune 1997-04-05 #> 3656 Blaine Woodson Blaine Woodson 1995-10-30 #> 3657 Kendall Langford Kendall Langford 1986-01-27 #> 3658 Michael Johnson Michael Johnson 1987-02-07 #> 3659 Mychealon Thomas Mychealon Thomas 1994-10-02 #> 3660 Frostee Rucker Frostee Rucker 1983-09-14 #> 3661 Adam Reth Adam Reth 1994-08-06 #> 3662 Mackendy Cheridor Mackendy Cheridor 1994-09-20 #> 3663 Alec James Alec James 1994-09-30 #> 3664 Anthony Johnson Anthony Johnson 1993-01-24 #> 3665 Kendall Reyes Kendall Reyes 1989-09-26 #> 3666 William Hayes William Hayes 1985-05-02 #> 3667 Charles Tapper Charles Tapper 1993-05-07 #> 3668 Ziggy Hood Ziggy Hood 1987-02-16 #> 3669 Ryan Delaire Ryan Delaire 1992-01-17 #> 3670 George Johnson George Johnson 1987-12-11 #> 3671 Andrew Trumbetti Andrew Trumbetti 1996-03-14 #> 3672 Ryan Russell Ryan Russell 1992-01-17 #> 3673 Zach Moore Zach Moore 1990-09-05 #> 3674 Jerel Worthy Jerel Worthy 1990-04-26 #> 3675 Tomasi Laulile Tomasi Laulile 1995-05-22 #> 3676 Nordly Capi Nordly Capi 1992-07-11 #> 3677 Carroll Phillips Carroll Phillips 1992-09-02 #> 3678 Anree Saint-Amour Anree Saint-Amour 1996-09-18 #> 3679 David Irving David Irving 1993-08-18 #> 3680 Leterrius Walton Leterrius Walton 1992-03-31 #> 3681 Ondre Pipkins Ondre Pipkins 1994-02-25 #> 3682 Cornellius Carradine Cornellius Carradine 1990-02-18 #> 3683 Marcus Smith Marcus Smith 1992-03-31 #> 3684 Geneo Grissom Geneo Grissom 1992-06-04 #> 3685 Kony Ealy Kony Ealy 1991-12-21 #> 3686 Francis Kallon Francis Kallon 1994-02-02 #> 3687 Dee Liner Dee Liner 1993-10-29 #> 3688 Kiante Anderson Kiante Anderson 1995-05-27 #> 3689 Simeyon Robinson Simeyon Robinson <NA> #> 3690 Julius Peppers Julius Peppers 1980-01-18 #> 3691 Pasoni Tasini Pasoni Tasini 1993-05-31 #> 3692 Casey Sayles Casey Sayles 1995-09-04 #> 3693 Mitchell Loewen Mitchell Loewen 1993-02-14 #> 3694 Hau'oli Kikaha Hau'oli Kikaha 1992-07-24 #> 3695 Destiny Vaeao Destiny Vaeao 1994-01-15 #> 3696 Kevin Wilkins Kevin Wilkins 1995-04-10 #> 3697 Derrick Shelby Derrick Shelby 1989-03-04 #> 3698 Peli Anau Peli Anau 1993-10-26 #> 3699 Jonathan Woodard Jonathan Woodard 1993-09-19 #> 3700 Izaah Lunsford Izaah Lunsford 1993-10-21 #> 3701 Sterling Bailey Sterling Bailey 1992-09-13 #> 3702 Andrew Ankrah Andrew Ankrah 1996-12-31 #> 3703 Kasim Edebali Kasim Edebali 1989-08-17 #> 3704 Chris McCain Chris McCain 1991-11-21 #> 3705 Ezekiel Ansah Ezekiel Ansah 1989-05-29 #> 3706 Eric Cotton Eric Cotton 1995-02-28 #> 3707 Jacquies Smith Jacquies Smith 1990-03-18 #> 3708 Cameron Wake Cameron Wake 1982-01-30 #> 3709 Winston Craig Winston Craig 1995-07-25 #> 3710 Jabaal Sheard Jabaal Sheard 1989-05-10 #> 3711 Ryan Davis Ryan Davis 1989-02-24 #> 3712 Ade Aruna Ade Aruna 1994-04-27 #> 3713 Darius Jackson Darius Jackson 1994-11-20 #> 3714 Myquon Stout Myquon Stout 1996-02-22 #> 3715 Wes Horton Wes Horton 1990-01-18 #> 3716 Olivier Vernon Olivier Vernon 1990-10-07 #> 3717 Mat Boesen Mat Boesen 1995-01-31 #> 3718 Dare Odeyingbo Dare Odeyingbo 1996-11-25 #> 3719 Durrant Miles Durrant Miles 1994-11-20 #> 3720 Shakir Soto Shakir Soto 1994-02-12 #> 3721 Karter Schult Karter Schult 1993-12-21 #> 3722 Dante Sawyer Dante Sawyer 1994-12-17 #> 3723 Immanuel Turner Immanuel Turner 1996-12-16 #> 3724 Keionta Davis Keionta Davis 1994-03-01 #> 3725 Lenny Jones Lenny Jones 1991-08-08 #> 3726 Owen Obasuyi Owen Obasuyi 1996-05-07 #> 3727 Trent Murphy Trent Murphy 1990-12-22 #> 3728 Dion Jordan Dion Jordan 1990-03-05 #> 3729 Michael Bennett Michael Bennett 1985-11-13 #> 3730 Jonathan Bonner Jonathan Bonner 1996-06-17 #> 3731 Terrence Fede Terrence Fede 1991-11-19 #> 3732 Clinton McDonald Clinton McDonald 1987-01-06 #> 3733 Garrett Sickels Garrett Sickels 1994-09-24 #> 3734 Muhammad Wilkerson Muhammad Wilkerson 1989-10-22 #> 3735 Brandon Banks Brandon Banks 1994-07-13 #> 3736 Chuck Harris Chuck Harris 1997-11-23 #> 3737 Eric Lee Eric Lee 1994-08-06 #> 3738 Josh Forrest Josh Forrest 1992-02-24 #> 3739 Jarrell Owens Jarrell Owens 1994-10-11 #> 3740 Anthony Winbush Anthony Winbush 1994-12-18 #> 3741 Mitch Unrein Mitch Unrein 1987-03-25 #> 3742 Ronald Ollie Ronald Ollie 1996-05-19 #> 3743 Armonty Bryant Armonty Bryant 1990-05-20 #> 3744 Nate Orchard Nate Orchard 1993-01-05 #> 3745 Pat Afriyie Pat Afriyie 1996-07-20 #> 3746 Albert Havili Albert Havili 1995-08-07 #> 3747 Avery Moss Avery Moss 1994-09-16 #> 3748 Myles Humphrey Myles Humphrey 1995-09-07 #> 3749 David King David King 1989-12-27 #> 3750 Chad Thomas Chad Thomas 1995-10-12 #> 3751 Kerry Wynn Kerry Wynn 1991-02-12 #> 3752 Cam Johnson Cam Johnson 1990-05-24 #> 3753 Whitney Richardson Whitney Richardson 1992-07-26 #> 3754 Stacy Keely Stacy Keely 1995-05-15 #> 3755 Allen Bailey Allen Bailey 1989-03-25 #> 3756 Tyrone Crawford Tyrone Crawford 1989-11-22 #> 3757 Evan Perrizo Evan Perrizo 1995-05-26 #> 3758 Adrian Clayborn Adrian Clayborn 1988-07-06 #> 3759 Fadol Brown Fadol Brown 1993-04-15 #> 3760 Brian Robison Brian Robison 1983-04-27 #> 3761 Claudy Mathieu Claudy Mathieu 1993-01-18 #> 3762 Mathieu Betts Mathieu Betts 1995-03-22 #> 3763 Antonio Simmons Antonio Simmons 1996-02-10 #> 3764 Khairi Clark Khairi Clark 1994-10-31 #> 3765 Anthony Moten Anthony Moten 1995-07-12 #> 3766 Richard Jarvis Richard Jarvis 1995-04-20 #> 3767 Justin Alexandre Justin Alexandre 1997-11-12 #> 3768 Kingsley Opara Kingsley Opara 1994-10-13 #> 3769 Ricky Walker Ricky Walker 1996-04-18 #> 3770 Johnathan Calvin Johnathan Calvin 1993-11-28 #> 3771 Braxton Hoyett Braxton Hoyett 1996-02-05 #> 3772 Jay Bromley Jay Bromley 1992-05-28 #> 3773 Stefan Charles Stefan Charles 1988-06-09 #> 3774 Zay Henderson Zay Henderson 1994-12-06 #> 3775 Tom Johnson Tom Johnson 1984-08-30 #> 3776 Datone Jones Datone Jones 1990-07-24 #> 3777 Dontari Poe Dontari Poe 1990-08-18 #> 3778 Josh Banks Josh Banks 1994-06-13 #> 3779 Lewis Neal Lewis Neal 1995-05-17 #> 3780 Josh Fatu Josh Fatu 1996-03-08 #> 3781 Cavon Walker Cavon Walker 1994-07-04 #> 3782 Earl Mitchell Earl Mitchell 1987-09-25 #> 3783 Joey Mbu Joey Mbu 1993-03-28 #> 3784 Kalani Vakameilalo Kalani Vakameilalo 1996-04-30 #> 3785 Sealver Siliga Sealver Siliga 1990-04-25 #> 3786 Billy Winn Billy Winn 1989-04-15 #> 3787 Davonte Lambert Davonte Lambert 1994-06-23 #> 3788 Ricky Jean-Francois Ricky Jean-Francois 1986-11-23 #> 3789 Haloti Ngata Haloti Ngata 1984-01-21 #> 3790 Parker Cothren Parker Cothren 1994-01-23 #> 3791 Michael Bennett Michael Bennett 1993-02-24 #> 3792 Abry Jones Abry Jones 1991-09-08 #> 3793 Garrison Smith Garrison Smith 1991-10-09 #> 3794 Kapron Lewis-Moore Kapron Lewis-Moore 1990-01-24 #> 3795 Nigel Williams Nigel Williams 1993-12-20 #> 3796 Toby Johnson Toby Johnson 1991-09-01 #> 3797 Kyle Williams Kyle Williams 1983-06-10 #> 3798 Sylvester Williams Sylvester Williams 1988-11-21 #> 3799 Jamie Meder Jamie Meder 1991-04-12 #> 3800 Timmy Jernigan Timmy Jernigan 1992-09-24 #> 3801 Julius Warmsley Julius Warmsley 1990-05-16 #> 3802 Jeremy Faulk Jeremy Faulk 1993-09-13 #> 3803 Chris Jones Chris Jones 1990-07-12 #> 3804 Boogie Roberts Boogie Roberts 1996-01-19 #> 3805 Geno Atkins Geno Atkins 1988-03-28 #> 3806 Olsen Pierre Olsen Pierre 1991-08-27 #> 3807 McKay Murphy McKay Murphy 1991-09-05 #> 3808 Tyrunn Walker Tyrunn Walker 1990-03-18 #> 3809 Nathan Bazata Nathan Bazata 1994-07-15 #> 3810 Lord Hyeamang Lord Hyeamang 1996-12-31 #> 3811 P.J. Hall P.J. Hall 1995-04-05 #> 3812 Rickey Hatley Rickey Hatley 1994-03-29 #> 3813 Sterling Shippy Sterling Shippy 1995-08-24 #> 3814 Jamiyus Pittman Jamiyus Pittman 1994-10-23 #> 3815 Du'vonta Lampkin Du'vonta Lampkin 1997-01-07 #> 3816 Tito Odenigbo Tito Odenigbo 1996-07-13 #> 3817 Lavon Hooks Lavon Hooks 1992-01-23 #> 3818 Damon Harrison Damon Harrison 1988-11-29 #> 3819 Tracy Sprinkle Tracy Sprinkle 1995-04-18 #> 3820 Corey Liuget Corey Liuget 1990-03-18 #> 3821 A.J. Francis A.J. Francis 1990-05-07 #> 3822 Dequinton Osborne Dequinton Osborne <NA> #> 3823 Kristjan Sokoli Kristjan Sokoli 1991-09-24 #> 3824 Johnny Maxey Johnny Maxey 1993-10-19 #> 3825 Aziz Shittu Aziz Shittu 1994-07-27 #> 3826 Domata Peko Domata Peko 1984-11-27 #> 3827 Ahtyba Rubin Ahtyba Rubin 1986-07-25 #> 3828 Marcus Hardison Marcus Hardison 1992-02-14 #> 3829 Adolphus Washington Adolphus Washington 1993-11-30 #> 3830 Greg Gilmore Greg Gilmore 1994-11-28 #> 3831 Jon Cunningham Jon Cunningham 1995-08-31 #> 3832 Ra'Shede Hageman Ra'Shede Hageman 1990-08-08 #> 3833 Cedric Thornton Cedric Thornton 1988-06-21 #> 3834 Ricky Ali'fua Ricky Ali'fua 1991-12-02 #> 3835 Eddy Wilson Eddy Wilson 1997-02-13 #> 3836 Caushaud Lyons Caushaud Lyons 1993-01-03 #> 3837 Terrell McClain Terrell McClain 1988-07-20 #> 3838 Kawann Short Kawann Short 1989-02-02 #> 3839 Brian Price Brian Price 1994-06-24 #> 3840 Xavier Cooper Xavier Cooper 1991-11-30 #> 3841 Stacy McGee Stacy McGee 1990-01-17 #> 3842 Reggie Howard Reggie Howard 1996-03-26 #> 3843 Robert Thomas Robert Thomas 1991-02-18 #> 3844 Kaleb Eulls Kaleb Eulls 1991-06-28 #> 3845 Will Sutton Will Sutton 1991-10-03 #> 3846 T.J. Barnes T.J. Barnes 1990-06-14 #> 3847 Jurrell Casey Jurrell Casey 1989-12-05 #> 3848 Steven Richardson Steven Richardson 1996-02-28 #> 3849 Fredrick Jones Fredrick Jones 1996-08-25 #> 3850 Cory Thomas Cory Thomas 1995-08-02 #> 3851 Kyle Coleman Kyle Coleman 1993-09-30 #> 3852 Ricky Ortiz Ricky Ortiz 1994-04-15 #> 3853 Shane Smith Shane Smith 1993-08-21 #> 3854 Joe Kerridge Joe Kerridge 1992-09-17 #> 3855 Glenn Gronkowski Glenn Gronkowski 1993-03-25 #> 3856 Algernon Brown Algernon Brown 1991-11-29 #> 3857 Khalid Hill Khalid Hill 1995-06-04 #> 3858 Jay Prosch Jay Prosch 1992-08-21 #> 3859 Sam Rogers Sam Rogers 1995-04-12 #> 3860 Jalston Fowler Jalston Fowler 1990-07-26 #> 3861 Derrick Coleman Derrick Coleman 1990-10-18 #> 3862 James Develin James Develin 1988-07-23 #> 3863 George Aston George Aston 1996-02-01 #> 3864 Alan Cross Alan Cross 1993-07-02 #> 3865 Henry Poggi Henry Poggi 1994-08-09 #> 3866 Zach Line Zach Line 1990-04-26 #> 3867 Austin Johnson Austin Johnson 1989-06-16 #> 3868 Aaron Ripkowski Aaron Ripkowski 1992-12-20 #> 3869 Dimitri Flowers Dimitri Flowers 1996-01-20 #> 3870 Roosevelt Nix Roosevelt Nix 1992-03-30 #> 3871 Patrick DiMarco Patrick DiMarco 1989-04-30 #> 3872 Elijah Wellman Elijah Wellman 1994-09-20 #> 3873 Chandler Cox Chandler Cox 1996-07-29 #> 3874 Malcolm Johnson Malcolm Johnson 1992-08-11 #> 3875 Daniel Marx Daniel Marx 1995-10-07 #> 3876 Luke McNitt Luke McNitt 1994-04-20 #> 3877 Taniela Tupou Taniela Tupou 1992-12-13 #> 3878 Andre Hal Andre Hal 1992-05-30 #> 3879 Keith Tandy Keith Tandy 1989-02-12 #> 3880 David Jones David Jones 1993-12-04 #> 3881 Charlie Miller Charlie Miller 1994-05-15 #> 3882 Chris Conte Chris Conte 1989-02-23 #> 3883 Jojo Tillery Jojo Tillery 1997-06-22 #> 3884 Tim Scott Tim Scott 1993-01-25 #> 3885 Terrell Williams Terrell Williams 1996-06-29 #> 3886 Jack Tocho Jack Tocho 1995-11-02 #> 3887 Dymonte Thomas Dymonte Thomas 1993-11-30 #> 3888 Jonathon Mincy Jonathon Mincy 1992-09-05 #> 3889 Marwin Evans Marwin Evans 1993-04-10 #> 3890 Nat Berhe Nat Berhe 1991-07-06 #> 3891 Jermaine Whitehead Jermaine Whitehead 1993-03-12 #> 3892 Kendrick Lewis Kendrick Lewis 1988-06-16 #> 3893 Dominick Sanders Dominick Sanders <NA> #> 3894 Isaiah Johnson Isaiah Johnson 1992-10-14 #> 3895 Colin Jones Colin Jones 1987-10-27 #> 3896 Jeremy Clark Jeremy Clark 1994-06-29 #> 3897 Abraham Wallace Abraham Wallace 1996-06-09 #> 3898 Corey Moore Corey Moore 1993-01-28 #> 3899 Kurt Coleman Kurt Coleman 1988-07-01 #> 3900 Marqueston Huff Marqueston Huff 1992-04-06 #> 3901 Corey Graham Corey Graham 1985-07-25 #> 3902 Earl Thomas Earl Thomas 1989-05-07 #> 3903 Will Blackmon Will Blackmon 1984-10-27 #> 3904 Mike Adams Mike Adams 1981-03-24 #> 3905 Zedrick Woods Zedrick Woods 1997-08-03 #> 3906 Micah Hannemann Micah Hannemann 1994-08-15 #> 3907 Lukas Denis Lukas Denis 1997-04-13 #> 3908 Darian Stewart Darian Stewart 1988-08-04 #> 3909 Brynden Trawick Brynden Trawick 1989-10-23 #> 3910 Derrick Kindred Derrick Kindred 1993-12-15 #> 3911 Fish Smithson Fish Smithson 1994-03-18 #> 3912 Rontez Miles Rontez Miles 1988-11-25 #> 3913 Lorenzo Jerome Lorenzo Jerome 1995-01-20 #> 3914 Quin Blanding Quin Blanding 1996-05-01 #> 3915 Steven Terrell Steven Terrell 1990-09-21 #> 3916 Antoine Bethea Antoine Bethea 1984-07-27 #> 3917 Marcus Cromartie Marcus Cromartie 1990-12-03 #> 3918 Don Carey Don Carey 1987-02-14 #> 3919 Glover Quin Glover Quin 1986-01-15 #> 3920 Tray Matthews Tray Matthews 1994-10-18 #> 3921 Isaiah Johnson Isaiah Johnson 1992-05-16 #> 3922 Eric Weddle Eric Weddle 1985-01-04 #> 3923 Santos Ramirez Santos Ramirez 1996-04-22 #> 3924 Reggie Nelson Reggie Nelson 1983-09-21 #> 3925 Michael Mitchell Michael Mitchell 1987-06-10 #> 3926 Jordan Moore Jordan Moore 1993-12-13 #> 3927 Jordan Sterns Jordan Sterns 1994-05-28 #> 3928 Tyrice Beverette Tyrice Beverette 1995-01-28 #> 3929 Reshad Jones Reshad Jones 1988-02-25 #> 3930 Micah Abernathy Micah Abernathy 1997-02-10 #> 3931 Austin Exford Austin Exford 1996-05-16 #> 3932 Kamrin Moore Kamrin Moore 1996-10-01 #> 3933 Robert Blanton Robert Blanton 1989-09-07 #> 3934 Kameron Kelly Kameron Kelly 1996-08-19 #> 3935 Doyin Jibowu Doyin Jibowu 1996-07-01 #> 3936 Jamar Summers Jamar Summers 1995-06-14 #> 3937 Ron Parker Ron Parker 1987-08-17 #> 3938 Kenny Ladler Kenny Ladler 1992-06-23 #> 3939 Leon McQuay III Leon McQuay III 1994-11-21 #> 3940 Johnathan Alston Johnathan Alston 1994-10-17 #> 3941 Afolabi Laguda Afolabi Laguda 1995-07-28 #> 3942 Austin Droogsma Austin Droogsma 1995-03-04 #> 3943 Jordan Agasiva Jordan Agasiva 1997-05-21 #> 3944 Adam Gettis Adam Gettis 1988-12-09 #> 3945 Chris Schleuger Chris Schleuger 1995-05-12 #> 3946 Brandon Thomas Brandon Thomas 1991-02-18 #> 3947 JP Flynn JP Flynn 1993-08-30 #> 3948 Jason King Jason King 1993-11-18 #> 3949 Garrett Brumfield Garrett Brumfield 1996-06-23 #> 3950 Cameron Lee Cameron Lee 1993-12-28 #> 3951 Mike Person Mike Person 1988-05-17 #> 3952 Ryan Anderson Ryan Anderson 1994-12-30 #> 3953 Nate Theaker Nate Theaker 1993-10-06 #> 3954 Alex Balducci Alex Balducci 1994-03-01 #> 3955 Leonard Wester Leonard Wester 1993-01-03 #> 3956 Cody Wichmann Cody Wichmann 1992-03-02 #> 3957 Josh LeRibeus Josh LeRibeus 1989-07-02 #> 3958 Nico Siragusa Nico Siragusa 1994-05-10 #> 3959 Kofi Amichia Kofi Amichia 1994-07-29 #> 3960 Ronald Leary Ronald Leary 1989-04-29 #> 3961 Taylor Hearn Taylor Hearn 1996-01-11 #> 3962 Mike Iupati Mike Iupati 1987-05-12 #> 3963 Josh Allen Josh Allen 1991-12-30 #> 3964 Greg Pyke Greg Pyke 1993-06-04 #> 3965 Jermon Bushrod Jermon Bushrod 1984-08-19 #> 3966 Ramon Foster Ramon Foster 1986-01-07 #> 3967 Avery Gennesy Avery Gennesy 1994-02-06 #> 3968 Jerald Foster Jerald Foster 1995-09-14 #> 3969 Zane Beadles Zane Beadles 1986-11-19 #> 3970 Blake Blackmar Blake Blackmar 1995-08-03 #> 3971 Tyler Catalina Tyler Catalina 1993-01-24 #> 3972 Menelik Watson Menelik Watson 1988-12-22 #> 3973 Beau Nunn Beau Nunn 1995-06-12 #> 3974 Cole Croston Cole Croston 1993-12-25 #> 3975 Josh James Josh James 1993-05-09 #> 3976 Byron Bell Byron Bell 1989-01-17 #> 3977 JJ Dielman JJ Dielman 1993-12-16 #> 3978 Brendan Mahon Brendan Mahon 1995-01-17 #> 3979 Evan Smith Evan Smith 1986-07-19 #> 3980 Clint Boling Clint Boling 1989-05-09 #> 3981 Ryan Groy Ryan Groy 1990-09-30 #> 3982 Amini Silatolu Amini Silatolu 1988-09-16 #> 3983 Cameron Hunt Cameron Hunt 1994-12-17 #> 3984 Damien Mama Damien Mama 1995-06-27 #> 3985 James Carpenter James Carpenter 1989-03-22 #> 3986 Kaleb Johnson Kaleb Johnson 1993-02-22 #> 3987 Connor Hilland Connor Hilland 1995-06-18 #> 3988 Vladimir Ducasse Vladimir Ducasse 1987-10-15 #> 3989 Rishard Cook Rishard Cook 1997-06-25 #> 3990 Andrew Tiller Andrew Tiller 1989-03-13 #> 3991 Jonathan Cooper Jonathan Cooper 1990-01-19 #> 3992 Larry Williams Larry Williams 1995-02-22 #> 3993 Dorian Johnson Dorian Johnson 1994-10-21 #> 3994 Chris Brown Chris Brown 1996-04-26 #> 3995 Ryan Crozier Ryan Crozier 1995-10-31 #> 3996 Andy Levitre Andy Levitre 1986-05-15 #> 3997 Matt Slauson Matt Slauson 1986-02-18 #> 3998 Jeremiah Sirles Jeremiah Sirles 1991-08-08 #> 3999 Denver Kirkland Denver Kirkland 1994-03-06 #> 4000 Oni Omoile Oni Omoile 1993-06-24 #> 4001 Ian Silberman Ian Silberman 1992-10-10 #> 4002 Jordan McCray Jordan McCray 1991-11-11 #> 4003 Rick Wagner Rick Wagner 1989-10-21 #> 4004 Jamon Brown Jamon Brown 1993-03-15 #> 4005 Micah St. Andrew Micah St. Andrew 1996-01-10 #> 4006 Christian Westerman Christian Westerman 1993-02-23 #> 4007 Spencer Drango Spencer Drango 1992-10-15 #> 4008 Kadeem Edwards Kadeem Edwards 1991-01-24 #> 4009 Brandon Fusco Brandon Fusco 1988-07-26 #> 4010 Fisayo Awolaja Fisayo Awolaja 1996-08-20 #> 4011 Isaac Asiata Isaac Asiata 1992-12-29 #> 4012 Darius James Darius James 1993-11-30 #> 4013 Kevin Pamphile Kevin Pamphile 1990-11-27 #> 4014 Tariq Cole Tariq Cole 1996-02-09 #> 4015 Josh Kline Josh Kline 1989-12-29 #> 4016 Maurquice Shakir Maurquice Shakir 1993-10-14 #> 4017 Landon Turner Landon Turner 1993-05-15 #> 4018 John Montelus John Montelus 1995-09-08 #> 4019 Darrell Greene Darrell Greene 1992-10-29 #> 4020 Zac Kerin Zac Kerin 1991-08-13 #> 4021 Fred Lauina Fred Lauina 1995-05-17 #> 4022 Givens Price Givens Price 1994-10-03 #> 4023 Aaron Evans Aaron Evans 1995-01-07 #> 4024 Larry Warford Larry Warford 1991-06-18 #> 4025 Malcolm Bunche Malcolm Bunche 1991-10-16 #> 4026 Dejon Allen Dejon Allen 1994-05-05 #> 4027 Jordan Morgan Jordan Morgan 1994-05-13 #> 4028 Zack Golditch Zack Golditch 1995-02-22 #> 4029 Darrell Williams Darrell Williams 1993-03-24 #> 4030 Ruben Holcomb Ruben Holcomb 1994-11-25 #> 4031 Demetrius Knox Demetrius Knox 1995-10-23 #> 4032 Joe Dahl Joe Dahl 1993-04-09 #> 4033 Tyler Jones Tyler Jones 1995-10-27 #> 4034 Kyle Kalis Kyle Kalis 1993-12-21 #> 4035 Arie Kouandjio Arie Kouandjio 1992-04-23 #> 4036 Matt Tobin Matt Tobin 1990-06-05 #> 4037 Joseph Cheek Joseph Cheek 1992-12-02 #> 4038 Kitt O'Brien Kitt O'Brien 1990-04-29 #> 4039 Austin Pasztor Austin Pasztor 1990-11-26 #> 4040 Joe Lowery Joe Lowery 1996-05-20 #> 4041 Mason Gentry Mason Gentry 1994-02-24 #> 4042 T.J. Lang T.J. Lang 1987-09-20 #> 4043 Patrick Vahe Patrick Vahe 1996-04-03 #> 4044 Abdul Beecham Abdul Beecham 1997-03-05 #> 4045 Marshal Yanda Marshal Yanda 1984-09-15 #> 4046 Salesi Uhatafe Salesi Uhatafe 1994-10-25 #> 4047 Erick Wren Erick Wren <NA> #> 4048 Cedrick Lang Cedrick Lang 1992-05-12 #> 4049 John Greco John Greco 1985-03-24 #> 4050 Leon Johnson Leon Johnson 1995-06-04 #> 4051 Josh Walker Josh Walker 1991-06-02 #> 4052 Josh Sitton Josh Sitton 1986-06-16 #> 4053 Shawn Lauvao Shawn Lauvao 1987-10-26 #> 4054 Don Barclay Don Barclay 1989-04-18 #> 4055 Brandon Greene Brandon Greene 1994-03-01 #> 4056 John Jerry John Jerry 1986-06-14 #> 4057 Will Pericak Will Pericak 1989-12-30 #> 4058 Kareem Are Kareem Are 1994-03-14 #> 4059 Will House Will House 1995-05-14 #> 4060 Kyle Bosch Kyle Bosch 1994-11-11 #> 4061 Jeremy Vujnovich Jeremy Vujnovich 1990-10-12 #> 4062 Hugh Thornton Hugh Thornton 1991-06-28 #> 4063 Jeff Allen Jeff Allen 1990-01-08 #> 4064 Nick Callender Nick Callender 1994-06-16 #> 4065 Dustin Stanton Dustin Stanton 1994-02-20 #> 4066 Nick Easton Nick Easton 1992-06-16 #> 4067 Joshua Garnett Joshua Garnett 1994-02-21 #> 4068 Chris Gonzalez Chris Gonzalez 1995-07-03 #> 4069 Larry Allen Jr. Larry Allen Jr. 1996-07-21 #> 4070 Chris Scott Chris Scott 1987-08-04 #> 4071 Josiah Tauaefa Josiah Tauaefa 1997-03-05 #> 4072 Scooby Wright Scooby Wright 1994-08-28 #> 4073 Andrew Motuapuaka Andrew Motuapuaka 1995-06-29 #> 4074 Bam Bradley Bam Bradley 1994-06-26 #> 4075 Kyle Queiro Kyle Queiro 1994-12-18 #> 4076 Jameer Thurman Jameer Thurman 1995-01-20 #> 4077 DeMarquis Gates DeMarquis Gates 1996-03-07 #> 4078 Jerrol Garcia-Williams Jerrol Garcia-Williams 1993-12-24 #> 4079 Naashon Hughes Naashon Hughes 1995-07-15 #> 4080 Alvin Jones Alvin Jones 1994-12-02 #> 4081 Zaire Anderson Zaire Anderson 1992-08-18 #> 4082 Chris Worley Chris Worley 1995-09-15 #> 4083 Marcus Porter Marcus Porter 1996-08-30 #> 4084 Tre' Crawford Tre' Crawford 1996-09-06 #> 4085 Otha Peters Otha Peters 1994-02-27 #> 4086 Brandon Bell Brandon Bell 1995-01-09 #> 4087 Raymond Davison Raymond Davison 1995-03-25 #> 4088 Drew Lewis Drew Lewis 1995-09-07 #> 4089 Ahmad Thomas Ahmad Thomas 1994-12-15 #> 4090 Carl Bradford Carl Bradford 1992-08-15 #> 4091 Gary Johnson Gary Johnson 1996-08-02 #> 4092 Adam Bighill Adam Bighill 1988-10-16 #> 4093 Junior Joseph Junior Joseph 1994-09-07 #> 4094 Darnell Sankey Darnell Sankey 1994-10-11 #> 4095 Jeff Allison Jeff Allison 1997-03-20 #> 4096 Riley Bullough Riley Bullough 1993-11-23 #> 4097 Nyles Morgan Nyles Morgan <NA> #> 4098 Tre Lamar Tre Lamar 1997-10-08 #> 4099 Kendell Beckwith Kendell Beckwith 1994-12-02 #> 4100 Airius Moore Airius Moore 1995-11-14 #> 4101 Marquis Flowers Marquis Flowers 1992-02-16 #> 4102 Connor Strachan Connor Strachan 1995-06-30 #> 4103 Matt Galambos Matt Galambos 1995-03-21 #> 4104 Anthony Wint Anthony Wint 1995-09-14 #> 4105 Dedrick Young Dedrick Young 1996-11-07 #> 4106 Nigel Harris Nigel Harris 1994-12-07 #> 4107 BJ Blunt BJ Blunt 1995-04-21 #> 4108 Trevor Bates Trevor Bates 1993-08-28 #> 4109 Tre Watson Tre Watson 1996-07-05 #> 4110 Joe Dineen Jr. Joe Dineen Jr. 1996-03-26 #> 4111 Elijah Norris Elijah Norris 1994-07-04 #> 4112 Emmanuel Beal Emmanuel Beal 1995-06-26 #> 4113 Antonio Morrison Antonio Morrison 1994-12-06 #> 4114 Kentrell Brothers Kentrell Brothers 1993-02-08 #> 4115 Keishawn Bierria Keishawn Bierria 1995-07-26 #> 4116 Keith Kelsey Keith Kelsey 1995-03-17 #> 4117 Sebastian Janikowski Sebastian Janikowski 1978-03-02 #> 4118 Nick Rose Nick Rose 1994-05-05 #> 4119 Dan Bailey Dan Bailey 1988-01-26 #> 4120 Phil Dawson Phil Dawson 1975-01-23 #> 4121 Travis Coons Travis Coons 1992-02-06 #> 4122 Mike Nugent Mike Nugent 1982-03-02 #> 4123 Stephen Hauschka Stephen Hauschka 1985-06-29 #> 4124 David Marvin David Marvin 1995-04-05 #> 4125 Jon Brown Jon Brown 1992-12-07 #> 4126 Cole Hedlund Cole Hedlund 1995-03-15 #> 4127 Elliott Fry Elliott Fry 1994-12-12 #> 4128 Caleb Sturgis Caleb Sturgis 1989-08-09 #> 4129 Marshall Koehn Marshall Koehn 1992-08-29 #> 4130 Kai Forbath Kai Forbath 1987-09-02 #> 4131 Adam Vinatieri Adam Vinatieri 1972-12-28 #> 4132 Chandler Catanzaro Chandler Catanzaro 1991-02-26 #> 4133 Connor Barth Connor Barth 1986-04-11 #> 4134 Stephen Gostkowski Stephen Gostkowski 1984-01-28 #> 4135 Matt Bryant Matt Bryant 1975-05-29 #> 4136 Nick Novak Nick Novak 1981-08-21 #> 4137 Mark Herzlich Mark Herzlich 1987-09-01 #> 4138 LaRoy Reynolds LaRoy Reynolds 1990-11-03 #> 4139 Dylan Cole Dylan Cole 1994-05-19 #> 4140 Jeremiah George Jeremiah George 1992-01-24 #> 4141 Brady Sheldon Brady Sheldon 1993-02-23 #> 4142 Cameron Lynch Cameron Lynch 1993-08-04 #> 4143 Jack Cichy Jack Cichy 1995-05-05 #> 4144 Mark Nzeocha Mark Nzeocha 1990-01-19 #> 4145 Tahir Whitehead Tahir Whitehead 1990-04-02 #> 4146 Brock Coyle Brock Coyle 1990-10-12 #> 4147 Bruce Carter Bruce Carter 1988-02-19 #> 4148 Lamin Barrow Lamin Barrow 1990-11-27 #> 4149 Mason Foster Mason Foster 1989-03-01 #> 4150 Frank Zombo Frank Zombo 1987-03-05 #> 4151 Wesley Woodyard Wesley Woodyard 1986-07-21 #> 4152 Chris Frey Chris Frey 1995-06-23 #> 4153 Ramik Wilson Ramik Wilson 1992-08-19 #> 4154 Sam Barrington Sam Barrington 1990-10-05 #> 4155 Nathan Stupar Nathan Stupar 1988-03-14 #> 4156 Patrick Onwuasor Patrick Onwuasor 1992-08-22 #> 4157 Brian Peters Brian Peters 1988-10-31 #> 4158 Juwan Foggie Juwan Foggie 1995-11-02 #> 4159 Thurston Armbrister Thurston Armbrister 1992-12-25 #> 4160 Josh Martin Josh Martin 1991-11-07 #> 4161 Emmanuel Lamur Emmanuel Lamur 1989-06-08 #> 4162 Reggie Hunter Reggie Hunter 1994-01-02 #> 4163 Ramon Humber Ramon Humber 1987-08-10 #> 4164 Erik Walden Erik Walden 1985-08-21 #> 4165 Zach Brown Zach Brown 1989-10-23 #> 4166 Mark Barron Mark Barron 1989-10-27 #> height weight college #> 1 6-4 305 Penn State #> 2 6-2 303 Boise State #> 3 6-2 315 Florida State #> 4 5-11 190 Washington #> 5 5-11 190 West Alabama #> 6 5-10 195 Southern Mississippi #> 7 5-11 185 Arizona #> 8 6-1 215 West Virginia #> 9 5-11 205 Michigan State #> 10 6-1 191 Florida #> 11 6-1 175 San Diego State #> 12 5-10 186 Southeastern Louisiana #> 13 5-9 188 Appalachian State #> 14 6-2 185 UCF #> 15 6-0 205 Cincinnati #> 16 5-11 190 Washington State #> 17 5-10 192 Fresno State #> 18 6-0 210 Georgia #> 19 6-1 196 Alabama #> 20 5-10 207 Southern Methodist #> 21 6-2 265 Duke #> 22 6-3 275 no college #> 23 6-4 281 Boston College #> 24 6-6 341 Oklahoma #> 25 6-8 295 Southern Methodist #> 26 6-5 288 Wisconsin #> 27 6-7 280 Marshall #> 28 6-3 284 Temple #> 29 6-6 290 Stanford #> 30 6-3 335 Kentucky #> 31 6-2 317 Stanford #> 32 6-5 335 Utah #> 33 6-2 309 Northern Iowa #> 34 6-2 308 Louisiana State #> 35 6-5 288 Penn State #> 36 6-3 312 Maryland #> 37 6-1 251 None #> 38 5-11 200 Louisiana Tech #> 39 5-10 200 Oregon #> 40 5-10 201 Central Florida #> 41 6-0 232 Sioux Falls #> 42 6-3 256 Southern California #> 43 6-3 245 Clemson #> 44 6-2 214 Washington #> 45 6-3 260 Utah #> 46 6-1 236 Texas #> 47 6-1 210 Georgia Southern #> 48 6-1 228 Boise State #> 49 6-3 260 Missouri #> 50 6-8 255 Alabama-Birmingham #> 51 6-0 244 Kansas State #> 52 6-5 265 Syracuse #> 53 6-2 250 Kansas State #> 54 6-4 260 Tulsa #> 55 6-4 242 Oregon #> 56 6-2 235 Florida State #> 57 6-3 245 California #> 58 6-3 225 Clemson #> 59 6-2 190 None #> 60 6-5 232 San Diego State #> 61 6-5 311 Syracuse #> 62 6-4 309 Florida #> 63 6-2 294 Oklahoma State #> 64 6-7 310 Houston #> 65 6-7 315 Ohio State #> 66 6-3 310 Mississippi State #> 67 6-5 315 None #> 68 6-4 284 Oregon State #> 69 6-4 320 Kent State #> 70 6-3 308 Southern Methodist #> 71 6-5 314 Morgan State #> 72 6-5 315 Cincinnati #> 73 6-6 330 Florida #> 74 6-6 304 Syracuse #> 75 6-5 307 Florida #> 76 6-5 217 Pittsburgh #> 77 6-3 222 Houston #> 78 6-3 214 Notre Dame #> 79 6-1 185 Pittsburgh #> 80 6-1 212 Texas #> 81 6-4 220 Hawaii #> 82 5-10 207 Oklahoma #> 83 6-3 215 South Dakota #> 84 5-9 210 Fordham #> 85 5-7 174 California #> 86 5-10 210 Arizona State #> 87 6-1 233 Pittsburgh #> 88 6-0 221 South Carolina #> 89 6-0 202 Central Michigan #> 90 6-1 200 Southern California #> 91 5-10 195 Washington #> 92 6-6 248 Penn State #> 93 6-3 256 Washington #> 94 6-6 248 California #> 95 6-3 245 Mississippi State #> 96 6-5 262 <NA> #> 97 6-3 241 Rutgers #> 98 6-4 252 Minnesota #> 99 6-4 248 Cincinnati #> 100 6-7 230 Wisconsin-Milwaukee #> 101 6-4 210 Georgia #> 102 5-7 173 Wake Forest #> 103 6-4 206 Texas Tech #> 104 6-1 199 Fresno State #> 105 6-2 204 Southern California #> 106 5-10 175 Washington #> 107 5-9 180 Purdue #> 108 6-3 205 Clemson #> 109 5-9 190 Massachusetts #> 110 6-1 212 Clemson #> 111 6-0 212 Boise State #> 112 5-10 187 Brigham Young #> 113 5-11 200 Texas A&amp;M #> 114 <NA> NA New Mexico #> 115 6-3 286 Stanford #> 116 6-2 298 Oregon State #> 117 6-3 303 Portland State #> 118 6-4 290 Temple #> 119 6-0 180 San Diego State #> 120 6-0 204 UCLA #> 121 6-0 205 Minnesota #> 122 5-11 195 James Madison #> 123 5-9 195 Boise State #> 124 5-10 190 None #> 125 6-2 190 Clemson #> 126 6-0 210 Colorado #> 127 6-2 215 San Diego State #> 128 6-1 210 Northwestern #> 129 6-3 185 Colorado #> 130 6-3 215 Clemson #> 131 6-1 205 Rutgers #> 132 6-0 194 Florida #> 133 6-1 200 Mississippi State #> 134 5-10 212 Ohio State #> 135 6-2 220 California, Pa. #> 136 6-0 194 UCF #> 137 6-3 263 Buffalo #> 138 6-3 296 Florida #> 139 6-5 285 Charleston, W. Va. #> 140 6-3 279 Auburn #> 141 6-4 280 Texas Tech #> 142 6-4 252 Notre Dame #> 143 6-1 305 South Florida #> 144 6-2 331 Wisconsin #> 145 6-3 325 UCLA #> 146 6-4 309 Syracuse #> 147 6-3 320 Georgia #> 148 6-4 271 BYU #> 149 6-0 305 Clemson #> 150 6-2 309 Fresno State #> 151 6-4 294 Texas #> 152 6-2 230 Northwestern #> 153 6-0 240 San Jose State #> 154 5-10 195 Georgia Southern #> 155 6-3 219 Fresno State #> 156 6-3 230 Louisville #> 157 6-2 249 Auburn #> 158 6-3 255 Florida #> 159 6-1 227 Louisiana State #> 160 6-2 285 UCLA #> 161 6-1 250 Mississippi State #> 162 6-4 256 Penn State #> 163 6-3 240 Sacramento State #> 164 6-3 246 Toledo #> 165 6-2 235 Adams State #> 166 6-1 235 Rice #> 167 6-3 225 LIU Post #> 168 6-2 215 Yale #> 169 6-4 260 Mississippi State #> 170 6-3 263 Pennsylvania #> 171 6-1 224 Auburn #> 172 6-5 322 Western Michigan #> 173 6-4 307 Boston College #> 174 6-4 320 Pittsburgh #> 175 6-8 285 South Dakota Mines #> 176 6-6 301 Indiana #> 177 6-6 313 North Carolina #> 178 6-3 307 North Carolina State #> 179 6-3 290 Appalachian State #> 180 6-5 290 Arizona State #> 181 6-3 300 Tulsa #> 182 6-5 295 Fayetteville State #> 183 6-5 320 Michigan #> 184 6-4 305 Wesley #> 185 6-5 309 Texas A&amp;M #> 186 6-6 306 Washington #> 187 6-2 200 Georgia #> 188 5-9 199 Syracuse #> 189 6-3 190 Wake Forest #> 190 6-4 217 Boston College #> 191 6-7 234 Arkansas #> 192 6-3 220 Alabama #> 193 6-4 226 UCLA #> 194 5-10 229 Ball State #> 195 5-8 183 Louisville #> 196 6-1 233 Texas #> 197 5-9 221 South Carolina #> 198 6-2 238 Tennessee #> 199 6-1 232 Pittsburgh #> 200 6-0 212 Georgia Southern #> 201 6-2 218 Florida State #> 202 6-2 210 California #> 203 6-6 240 Florida #> 204 6-3 261 Iowa #> 205 6-5 248 Southern Methodist #> 206 6-5 255 San Diego State #> 207 6-4 245 South Carolina #> 208 6-4 250 Yale #> 209 6-6 265 Marshall #> 210 6-1 190 Alabama #> 211 5-8 193 Virginia #> 212 6-2 194 Massachusetts #> 213 6-0 187 Albany, N.Y. #> 214 6-3 210 Georgia #> 215 5-8 180 Tennessee State #> 216 6-1 200 Arizona State #> 217 6-3 205 Missouri #> 218 6-1 181 Northern Illinois #> 219 6-0 184 Louisiana State #> 220 5-11 200 Buffalo #> 221 5-11 182 Oklahoma #> 222 6-1 188 California #> 223 5-10 185 Rice #> 224 6-4 315 Missouri #> 225 6-0 197 Washington #> 226 5-9 185 Temple #> 227 6-2 210 Colorado #> 228 5-9 170 Northern Arizona #> 229 6-1 210 Southern California #> 230 6-0 197 Alabama #> 231 5-11 178 Alabama #> 232 6-4 197 Kentucky #> 233 6-1 195 Ohio State #> 234 5-11 187 Tennessee #> 235 5-8 178 TCU #> 236 6-0 206 SMU #> 237 5-11 215 Stanford #> 238 5-11 207 Tennessee State #> 239 6-1 210 Texas #> 240 6-0 205 Virginia Tech #> 241 5-11 210 Iowa #> 242 6-4 230 Massachusetts #> 243 6-1 266 Arkansas #> 244 6-8 300 Miami #> 245 6-2 271 Indiana #> 246 6-5 285 Cincinnati #> 247 6-3 300 Texas A&amp;M #> 248 6-2 290 North Carolina #> 249 6-3 305 Texas Tech #> 250 6-5 311 Arkansas #> 251 6-2 322 Kent State #> 252 6-2 350 Louisiana Tech #> 253 6-1 246 Wake Forest #> 254 6-3 311 Maine #> 255 6-1 196 New Mexico #> 256 6-2 293 Elon #> 257 6-2 305 Merrimack #> 258 6-1 183 Texas #> 259 6-1 201 East Carolina #> 260 6-5 253 Penn State #> 261 6-3 270 Notre Dame #> 262 6-3 240 Texas A&amp;M #> 263 6-3 239 Iowa #> 264 6-3 265 Mississippi State #> 265 6-1 227 Louisiana State #> 266 6-3 270 Georgia #> 267 6-5 275 Louisiana Tech #> 268 6-2 208 None #> 269 6-3 240 Houston #> 270 6-3 245 Ohio State #> 271 6-2 239 Illinois #> 272 6-0 232 Northern Iowa #> 273 6-2 230 North Dakota State #> 274 6-3 250 Georgia #> 275 6-1 336 Missouri Southern #> 276 6-4 310 Toledo #> 277 6-4 310 Oklahoma #> 278 6-4 325 Michigan #> 279 6-4 315 Wisconsin #> 280 6-5 345 Mississippi State #> 281 6-6 335 Georgia #> 282 6-4 308 California #> 283 6-5 317 Alabama #> 284 6-4 330 Alabama #> 285 6-6 327 Oklahoma #> 286 6-6 315 Notre Dame #> 287 6-7 315 Stanford #> 288 6-9 320 Army #> 289 6-6 301 Michigan #> 290 6-6 312 Tennessee #> 291 6-1 205 Florida #> 292 6-1 222 Nebraska #> 293 6-1 206 Western Michigan #> 294 6-1 205 Utah #> 295 6-2 212 Louisville #> 296 6-3 200 Monmouth #> 297 6-1 230 Northern Iowa #> 298 6-0 202 Penn State #> 299 6-0 220 Brigham Young #> 300 6-1 238 Rutgers #> 301 5-10 214 Ohio State #> 302 5-10 200 Oklahoma State #> 303 6-0 213 Saginaw Valley State #> 304 6-5 250 Oregon #> 305 6-3 254 Michigan #> 306 6-5 255 Oklahoma #> 307 6-7 265 Virginia #> 308 6-4 236 Georgia #> 309 6-5 250 San Jose State #> 310 6-6 263 Texas-El Paso #> 311 6-4 270 Delaware #> 312 6-4 261 Southern California #> 313 6-4 250 Appalachian State #> 314 6-4 220 Notre Dame #> 315 6-1 211 Clemson #> 316 6-0 193 Southern Methodist #> 317 6-0 195 Alabama #> 318 6-2 185 Graceland (IA) #> 319 5-9 170 Oklahoma #> 320 6-2 202 Clemson #> 321 6-1 210 Georgetown, D.C. #> 322 5-10 185 Missouri Western #> 323 6-2 190 Tennessee-Martin #> 324 5-8 176 Oregon #> 325 6-2 195 Utah State #> 326 6-0 185 Oklahoma State #> 327 6-0 192 Cincinnati #> 328 6-4 199 Ohio State #> 329 6-2 210 Minnesota #> 330 5-11 210 Texas #> 331 6-6 305 Missouri #> 332 5-11 192 Louisiana State #> 333 6-2 197 Virginia #> 334 5-11 184 Texas #> 335 5-11 185 Pittsburgh #> 336 6-1 185 Florida International #> 337 6-0 192 Notre Dame #> 338 5-9 185 Buffalo #> 339 5-10 185 Missouri #> 340 5-11 197 Wisconsin #> 341 6-0 179 Alabama #> 342 6-0 205 Jacksonville State #> 343 6-0 175 USC #> 344 5-11 192 Weber State #> 345 6-1 195 Pittsburgh #> 346 5-10 190 Miami #> 347 6-0 197 Iowa #> 348 6-0 191 Oregon State #> 349 6-0 210 San Diego State #> 350 6-0 205 Appalachian State #> 351 6-5 285 Wake Forest #> 352 6-6 253 North Carolina A&amp;T #> 353 6-2 254 Texas Christian #> 354 6-6 260 Miami (FL) #> 355 6-5 280 Iowa #> 356 6-3 255 South Florida #> 357 6-3 260 Troy #> 358 6-3 270 Florida #> 359 6-6 265 No College #> 360 6-2 318 Utah #> 361 6-5 292 North Carolina #> 362 6-3 307 Stanford #> 363 6-3 294 Florida Atlantic #> 364 6-4 291 Alabama-Birmingham #> 365 6-4 330 Louisiana Tech #> 366 6-3 292 Ferris State #> 367 6-1 287 Houston #> 368 6-3 301 Florida #> 369 6-2 304 Toledo #> 370 6-1 245 Florida #> 371 5-10 185 Georgia Southern #> 372 6-5 250 Virginia Tech #> 373 6-0 240 North Carolina #> 374 6-2 234 Duke #> 375 6-3 207 Fresno State #> 376 6-2 228 West Georgia #> 377 6-2 245 Samford #> 378 6-0 237 Texas A&amp;M #> 379 6-1 240 Iowa State #> 380 6-1 235 Temple #> 381 6-3 235 Wake Forest #> 382 6-0 223 Boston College #> 383 6-2 235 Louisiana State #> 384 6-4 323 Miami #> 385 6-5 315 Texas Tech #> 386 6-6 318 Fresno State #> 387 6-4 341 Penn State #> 388 6-6 318 Iowa #> 389 6-4 309 Western Kentucky #> 390 6-3 329 Oklahoma #> 391 6-6 330 Oklahoma #> 392 6-4 300 Penn State #> 393 6-4 308 Arizona State #> 394 6-6 320 Memphis #> 395 6-8 327 Washington #> 396 6-5 320 Temple #> 397 6-9 321 Northern Iowa #> 398 6-5 310 Florida State #> 399 6-8 326 Miami (OH) #> 400 6-5 305 Miami #> 401 6-0 205 Arizona State #> 402 6-2 222 Georgia #> 403 6-2 215 North Carolina #> 404 6-5 225 California #> 405 6-5 237 Wyoming #> 406 5-10 215 Utah #> 407 5-10 190 Georgia Southern #> 408 5-10 204 Florida Atlantic #> 409 6-0 195 Eastern Washington #> 410 5-9 196 No College #> 411 5-11 210 North Carolina #> 412 5-7 203 Florida Atlantic #> 413 6-5 316 Oklahoma State #> 414 6-4 254 Mississippi #> 415 6-5 264 Miami, O. #> 416 6-4 251 Bowling Green #> 417 6-1 255 Toledo #> 418 6-5 251 Boston College #> 419 6-5 210 North Carolina #> 420 6-4 245 Wyoming #> 421 6-3 225 Auburn #> 422 5-8 173 Georgia #> 423 5-11 180 San Jose State #> 424 6-4 209 Wisconsin-Whitewater #> 425 6-0 191 Maryland #> 426 6-0 190 Houston #> 427 6-1 193 Wyoming #> 428 6-0 201 Western Illinois #> 429 5-8 174 Southern Methodist #> 430 5-10 185 Wyoming #> 431 5-11 180 Southern Methodist #> 432 5-8 189 Florida #> 433 6-3 213 Central Florida #> 434 6-4 209 Oregon State #> 435 6-3 300 Boise State #> 436 6-4 310 Baylor #> 437 6-1 205 South Carolina #> 438 5-10 180 Louisiana State #> 439 6-2 196 Northern Illinois #> 440 6-3 196 Washington #> 441 6-2 213 Montana #> 442 5-10 192 Mississippi #> 443 5-11 194 Notre Dame #> 444 6-2 184 Florida International #> 445 6-0 191 Central Florida #> 446 6-3 210 Temple #> 447 6-2 202 West Virginia #> 448 6-1 216 Michigan #> 449 6-0 212 North Carolina State #> 450 6-2 210 Mississippi State #> 451 5-11 211 Mississippi #> 452 5-10 205 Temple #> 453 6-1 210 Vanderbilt #> 454 6-0 210 Appalachian State #> 455 5-10 195 South Carolina #> 456 6-3 190 Baylor #> 457 6-3 275 Colorado State-Pueblo #> 458 6-5 258 Baylor #> 459 6-2 235 Mississippi #> 460 6-3 265 Purdue #> 461 6-4 271 Oklahoma #> 462 6-5 264 Penn State #> 463 6-4 305 Louisiana State #> 464 6-5 250 Florida State #> 465 6-2 248 Southeast Missouri #> 466 6-4 260 Vanderbilt #> 467 6-4 322 Penn State #> 468 6-5 315 Kentucky #> 469 6-5 318 Auburn #> 470 6-2 292 Princeton #> 471 6-3 305 Iowa #> 472 6-4 300 Michigan State #> 473 6-4 320 Missouri #> 474 6-1 333 Baylor #> 475 6-2 239 Wisconsin #> 476 6-3 309 Auburn #> 477 6-4 325 Auburn #> 478 6-2 190 Utah State #> 479 5-11 213 Virginia Tech #> 480 6-2 230 Virginia #> 481 6-3 238 Boston College #> 482 6-2 224 Northwestern #> 483 6-1 235 Temple #> 484 6-1 235 Auburn #> 485 6-3 235 Washington State #> 486 6-3 244 Alabama #> 487 6-1 230 Wagner #> 488 6-0 230 Washington #> 489 5-11 240 Miami #> 490 6-0 225 Maryland #> 491 6-1 232 Baylor #> 492 6-1 232 Minnesota #> 493 6-4 240 Northwestern #> 494 6-3 252 Tennessee #> 495 6-3 212 Southern Illinois #> 496 6-2 235 Notre Dame #> 497 6-2 231 Alabama #> 498 6-4 350 Alabama #> 499 6-3 315 Louisville #> 500 6-6 324 South Carolina #> 501 6-5 313 Florida State #> 502 6-3 303 Ohio State #> 503 6-6 315 Boston College #> 504 6-5 320 Grambling #> 505 6-5 325 Western Michigan #> 506 6-5 306 Florida #> 507 6-7 325 Dartmouth #> 508 6-6 300 Brigham Young #> 509 6-0 182 Washington State #> 510 6-5 190 South Carolina #> 511 5-11 212 Temple #> 512 6-1 220 West Virginia #> 513 6-3 225 Southern California #> 514 6-0 201 Oklahoma State #> 515 6-0 215 Louisville #> 516 6-0 220 South Florida #> 517 5-11 185 Virginia State #> 518 5-11 210 Minnesota #> 519 5-11 205 Stanford #> 520 6-3 235 Ohio State #> 521 6-0 235 South Dakota State #> 522 6-2 210 Newberry #> 523 6-3 260 Indiana #> 524 6-4 255 Temple #> 525 6-5 242 Louisiana State #> 526 6-3 240 Western Michigan #> 527 6-5 249 LSU #> 528 6-5 255 Utah State #> 529 6-3 233 Notre Dame #> 530 6-6 220 Wisconsin-Platteville #> 531 5-10 190 Ohio State #> 532 5-11 191 West Virginia #> 533 6-3 217 Marian, Ind. #> 534 6-3 200 LSU #> 535 6-3 207 Arkansas State #> 536 6-2 215 Concordia, Minn #> 537 5-10 190 South Carolina #> 538 6-0 196 James Madison #> 539 6-3 190 Temple #> 540 6-3 205 Temple #> 541 6-0 215 East Central #> 542 5-11 215 Maryland #> 543 6-3 210 Temple #> 544 6-1 195 Brigham Young #> 545 6-3 309 Kansas State #> 546 5-8 183 Kansas State #> 547 6-0 205 Illinois State #> 548 6-0 195 Utah #> 549 5-9 168 Wisconsin #> 550 6-0 190 Washington #> 551 6-0 194 Dubuque #> 552 5-11 190 Georgia Southern #> 553 6-0 200 None #> 554 6-0 202 Alabama #> 555 5-11 185 Central Michigan #> 556 6-1 212 Wyoming #> 557 6-0 197 Miami #> 558 6-0 200 Miami #> 559 6-1 190 Penn State #> 560 5-11 185 Western Kentucky #> 561 5-11 207 Midwestern State #> 562 6-0 202 William &amp; Mary #> 563 6-0 191 Florida #> 564 5-11 193 Oregon #> 565 6-7 301 Stanford #> 566 6-4 318 Auburn #> 567 6-3 280 Florida State #> 568 6-7 240 Virginia #> 569 6-3 279 Michigan #> 570 6-3 313 Delaware #> 571 6-3 320 Florida State #> 572 6-4 332 Colorado State-Pueblo #> 573 6-2 275 Stony Brooky #> 574 6-4 295 Missouri #> 575 6-4 321 Brigham Young #> 576 6-6 300 Temple #> 577 6-4 352 Regina, Can. #> 578 6-5 280 Western Illinois #> 579 6-5 340 None #> 580 5-8 160 Tulane #> 581 6-1 185 Virginia Tech #> 582 6-1 240 Buffalo #> 583 6-2 235 Georgia #> 584 6-0 230 Georgia #> 585 6-4 268 Tulsa #> 586 6-1 226 Western Kentucky #> 587 6-2 220 Houston Baptist #> 588 6-1 254 Stanford #> 589 6-0 239 Kentucky #> 590 6-1 236 Maryland #> 591 6-3 269 Buffalo #> 592 6-3 252 Georgia Tech #> 593 6-0 240 Villanova #> 594 6-1 241 Notre Dame #> 595 6-4 257 North Carolina #> 596 6-3 250 Florida State #> 597 6-3 228 Utah State #> 598 6-4 355 Mississippi State #> 599 6-3 305 Iowa #> 600 6-4 300 Yale #> 601 6-6 332 Missouri #> 602 6-5 325 Texas A&amp;M #> 603 6-5 315 Tennessee State #> 604 6-6 300 Harvard #> 605 6-3 325 Clemson #> 606 6-6 329 Massachusetts #> 607 6-6 265 Stony Brook (NY) #> 608 6-5 314 Notre Dame #> 609 6-2 311 Notre Dame #> 610 6-5 300 Colorado #> 611 6-6 320 Oklahoma State #> 612 6-4 328 Arkansas #> 613 6-7 320 Louisiana State #> 614 6-4 212 Miami #> 615 6-2 220 Texas Christian #> 616 6-6 243 Arizona #> 617 6-3 228 Ohio State #> 618 6-2 237 Oregon State #> 619 5-9 212 Virginia Tech #> 620 5-11 224 Oklahoma #> 621 5-10 200 Coastal Carolina #> 622 5-11 208 Oregon State #> 623 5-6 191 North Carolina A&amp;T #> 624 5-10 222 Iowa State #> 625 5-10 224 Louisiana State #> 626 6-6 247 Ball State #> 627 6-7 235 Grand Canyon #> 628 6-3 240 Pittsburgh #> 629 6-7 250 Penn State #> 630 6-6 250 Michigan #> 631 6-5 250 Stanford #> 632 6-6 258 Notre Dame #> 633 6-3 237 Princeton #> 634 6-7 265 Miami #> 635 6-3 205 Oklahoma State #> 636 6-2 170 West Georgia #> 637 5-9 179 Texas #> 638 6-3 210 Pittsburgh #> 639 6-1 200 Georgia #> 640 5-9 180 South Carolina #> 641 6-2 221 Georgia #> 642 5-11 185 Georgia #> 643 6-3 190 Rhode Island #> 644 6-1 189 South Florida #> 645 5-11 172 Tulane #> 646 6-0 192 Toledo #> 647 6-4 218 Colgate #> 648 5-11 190 North Carolina #> 649 6-2 220 Penn State #> 650 5-10 192 East Carolina #> 651 5-11 180 None #> 652 6-3 316 Texas #> 653 6-3 305 Georgia #> 654 6-4 312 Ohio State #> 655 6-4 330 Georgia #> 656 6-0 190 Michigan State #> 657 6-0 195 Tulane #> 658 6-0 180 New Mexico State #> 659 5-9 186 Miami #> 660 6-0 202 Colorado #> 661 6-0 198 Alabama #> 662 5-10 190 Western Michigan #> 663 6-0 191 Ball State #> 664 5-10 185 Utah State #> 665 6-1 203 Ohio State #> 666 6-0 220 Central Michigan #> 667 5-10 200 Houston #> 668 5-9 184 Mississippi #> 669 5-11 205 Ohio State #> 670 5-9 186 Purdue #> 671 6-0 205 Hawaii #> 672 6-1 200 Wake Forest #> 673 6-2 245 Marshall #> 674 6-4 253 Texas #> 675 6-4 270 Florida Atlantic #> 676 6-5 265 Ohio State #> 677 6-2 251 Eastern Kentucky #> 678 6-3 270 Kansas State #> 679 6-4 265 Notre Dame #> 680 6-3 280 Tulane #> 681 6-4 280 Oklahoma #> 682 6-3 345 Colorado #> 683 6-3 347 Clemson #> 684 6-0 310 Iowa #> 685 6-3 346 LSU #> 686 6-5 315 Arizona State #> 687 6-3 320 Tennessee #> 688 6-3 305 North Carolina-Charlotte #> 689 6-3 320 None #> 690 5-9 214 Oklahoma #> 691 5-11 185 Florida #> 692 6-2 215 Appalachian State #> 693 6-2 245 North Carolina State #> 694 6-1 240 Purdue #> 695 6-3 220 Maryland #> 696 6-3 242 Oklahoma #> 697 6-2 235 Michigan State #> 698 6-2 250 Wyoming #> 699 6-5 250 Rutgers #> 700 6-3 240 Indiana #> 701 6-4 330 West Virginia #> 702 6-5 300 Kansas #> 703 6-5 345 Clemson #> 704 6-5 315 Texas A&amp;M #> 705 6-6 315 Ohio State #> 706 6-4 310 UCLA #> 707 6-7 305 Ohio State #> 708 6-4 305 Alabama #> 709 6-6 305 Iowa #> 710 6-4 274 East Carolina #> 711 6-7 326 Florida #> 712 6-6 310 Northwestern #> 713 6-3 222 Ohio State #> 714 6-1 211 Cincinnati #> 715 6-4 225 Vanderbilt #> 716 6-4 226 Syracuse #> 717 6-4 216 Louisiana State #> 718 6-2 209 Arkansas #> 719 6-4 222 South Carolina #> 720 5-10 170 Kansas #> 721 5-8 206 Texas A&amp;M #> 722 6-3 234 Florida State #> 723 5-11 240 Oklahoma #> 724 6-1 220 Oklahoma #> 725 5-11 216 Michigan #> 726 6-5 305 Iowa State #> 727 6-6 335 Louisiana Tech #> 728 6-5 252 Buffalo #> 729 6-3 249 Louisiana State #> 730 6-6 260 Auburn #> 731 6-4 259 Washington #> 732 6-4 256 Arkansas #> 733 6-4 250 TCU #> 734 6-4 245 South Florida #> 735 5-8 181 Louisiana Tech #> 736 6-0 200 Northwestern #> 737 6-2 186 - #> 738 6-0 205 Nebraska #> 739 6-5 228 Florida State #> 740 6-5 225 Wake Forest #> 741 6-4 210 Clemson #> 742 6-0 208 LSU #> 743 6-2 203 Pittsburgh #> 744 6-1 189 Southern Mississippi #> 745 6-2 207 Stanford #> 746 6-3 215 Indianapolis #> 747 6-1 207 Michigan State #> 748 6-4 307 Cornell #> 749 6-3 307 Mississippi #> 750 6-4 303 Harvard #> 751 6-1 180 Northwestern #> 752 6-2 205 Nevada-Las Vegas #> 753 6-2 184 Louisiana State #> 754 5-11 184 Oregon #> 755 6-3 215 Utah #> 756 5-11 191 Ohio State #> 757 6-1 185 Oklahoma State #> 758 6-0 186 Kansas State #> 759 5-11 205 North Carolina #> 760 5-11 194 Miami (OH) #> 761 6-3 203 Louisiana State #> 762 6-0 210 Middle Tennessee #> 763 6-0 209 Boston College #> 764 6-1 205 Liberty #> 765 5-10 185 New Hampshire #> 766 6-3 214 Alabama #> 767 5-11 190 Georgia #> 768 6-0 196 Miami #> 769 6-5 265 Houston #> 770 6-5 260 Southern California #> 771 6-4 275 Miami #> 772 6-5 255 South Carolina #> 773 6-3 265 Boise State #> 774 6-4 240 Akron #> 775 6-4 272 Texas A&amp;M #> 776 6-5 276 NW Missouri State #> 777 6-2 265 UCLA #> 778 6-5 260 Illinois State #> 779 6-3 288 None #> 780 6-6 299 Michigan State #> 781 6-1 328 Baylor #> 782 6-4 315 Missouri #> 783 6-4 303 Florida State #> 784 6-2 293 Alabama #> 785 6-1 294 Notre Dame #> 786 6-5 290 Tennessee #> 787 6-2 300 Ohio State #> 788 6-2 245 Nevada-Las Vegas #> 789 6-1 238 Nebraska #> 790 6-3 287 Memphis #> 791 5-10 165 Kansas State #> 792 5-11 187 Illinois #> 793 6-0 190 Auburn #> 794 6-1 220 West Virginia #> 795 6-1 240 Alabama #> 796 6-0 225 Southern California #> 797 6-2 229 Kansas State #> 798 6-2 215 Grambling #> 799 6-4 233 Louisiana State #> 800 6-1 230 Northwestern #> 801 5-11 230 Iowa State #> 802 6-1 215 Notre Dame #> 803 6-4 259 Louisville #> 804 6-1 238 Brigham Young #> 805 6-4 248 Central Florida #> 806 6-4 320 Nevada #> 807 6-5 310 Northwestern #> 808 6-4 315 Virginia Tech #> 809 6-5 331 Appalachian State #> 810 6-5 307 Maryland #> 811 6-3 311 Texas Christian #> 812 6-5 305 Southeast Missouri #> 813 6-1 302 Washington #> 814 6-5 310 Cincinnati #> 815 6-6 305 Wagner #> 816 6-5 304 None #> 817 6-5 320 Alabama #> 818 6-4 295 Alabama-Birmingham #> 819 6-9 294 South Carolina State #> 820 6-6 308 Michigan State #> 821 6-1 207 Arkansas-Pine Bluff #> 822 5-10 229 San Jose State #> 823 6-2 222 Richmond #> 824 6-1 215 Houston #> 825 6-1 215 Oklahoma #> 826 5-9 186 UCLA #> 827 5-10 205 Tennessee #> 828 6-0 225 Michigan State #> 829 5-11 215 Charlotte #> 830 5-11 225 Georgia #> 831 5-10 208 South Florida #> 832 5-10 215 Tulsa #> 833 5-11 216 Toledo #> 834 6-7 311 Oregon #> 835 6-6 320 Southern Mississippi #> 836 6-5 240 Florida Atlantic #> 837 6-4 254 Stanford #> 838 6-8 260 Stony Brook #> 839 6-4 240 Princeton #> 840 6-4 246 Miami #> 841 6-4 239 Central Florida #> 842 5-7 153 Akron #> 843 6-4 207 Texas Tech #> 844 5-8 185 North Carolina #> 845 5-11 198 Louisiana State #> 846 6-1 215 Kent State #> 847 6-2 205 Prairie View #> 848 5-11 196 Louisiana State #> 849 6-2 208 Michigan #> 850 5-9 175 Hawaii #> 851 6-1 198 Colorado State #> 852 6-1 166 Eastern Illinois #> 853 6-0 179 Auburn #> 854 5-11 195 Sam Houston State #> 855 6-1 195 Louisiana-Lafayette #> 856 6-3 320 Wisconsin #> 857 6-4 320 Wisconsin #> 858 6-1 193 Virginia #> 859 6-4 205 South Carolina #> 860 6-1 195 Akron #> 861 6-2 207 Alabama #> 862 5-11 196 Purdue #> 863 6-1 192 Kentucky #> 864 6-2 205 Kansas State #> 865 6-4 188 Oregon State #> 866 6-3 190 California, Pa. #> 867 5-10 195 Michigan #> 868 6-0 187 Alabama State #> 869 6-1 197 Tulsa #> 870 5-11 190 San Diego State #> 871 6-4 215 Clemson #> 872 6-1 210 Oklahoma #> 873 6-2 215 Purdue #> 874 6-2 213 Boise State #> 875 6-0 204 Texas A&amp;M #> 876 6-1 212 Ohio State #> 877 6-5 270 Iowa #> 878 6-4 266 Ohio #> 879 6-3 269 James Madison #> 880 6-3 265 Boise State #> 881 6-3 265 Utah #> 882 6-3 297 Clemson #> 883 6-5 255 Nebraska #> 884 6-7 300 Virginia #> 885 6-4 255 Kansas #> 886 6-4 357 Kentucky #> 887 6-3 308 Central Florida #> 888 6-3 300 Oregon #> 889 6-2 279 UCLA #> 890 6-2 315 Louisiana-Lafayette #> 891 6-2 302 Oklahoma #> 892 6-1 240 Louisiana-Lafayette #> 893 6-3 240 Texas Christian #> 894 6-1 240 North Texas #> 895 6-6 335 Nebraska #> 896 5-11 215 Western Ontario, Can. #> 897 6-0 191 Missouri Western #> 898 6-4 256 Boise State #> 899 6-2 245 Notre Dame #> 900 6-3 245 Nebraska #> 901 6-1 235 Utah #> 902 6-4 235 Kansas #> 903 5-11 230 None #> 904 6-3 245 Penn State #> 905 6-1 216 Florida #> 906 6-3 226 Texas A&M #> 907 6-4 231 LSU #> 908 6-2 235 Ohio State #> 909 6-4 315 Notre Dame #> 910 6-5 308 Penn State #> 911 6-5 298 Texas #> 912 6-2 300 None #> 913 6-5 305 Clemson #> 914 6-4 315 Houston #> 915 6-6 310 Texas Tech #> 916 6-8 309 Marshall #> 917 6-5 314 Indiana #> 918 6-4 308 Virginia #> 919 6-7 301 No College #> 920 6-5 320 Southern California #> 921 6-5 308 None #> 922 6-4 320 Louisiana State #> 923 6-8 330 Texas State #> 924 6-5 243 Northwestern #> 925 6-3 205 California #> 926 6-3 225 Central Michigan #> 927 6-4 240 Florida #> 928 6-3 210 James Madison #> 929 6-2 238 Mississippi State #> 930 6-4 230 Southern Methodist #> 931 6-0 209 Memphis #> 932 5-10 225 Tiffin (OH) #> 933 6-0 215 South Carolina #> 934 6-0 228 Ohio State #> 935 6-0 223 Marshall #> 936 6-6 258 TCU #> 937 6-5 256 Michigan #> 938 6-5 255 Arkansas #> 939 6-5 260 Oklahoma State #> 940 6-5 242 Stanford #> 941 6-5 246 Michigan #> 942 6-2 200 Illinois #> 943 6-4 229 Texas #> 944 6-5 188 Boise State #> 945 6-2 225 Ohio State #> 946 6-1 211 Alabama #> 947 6-4 220 Stanford #> 948 6-1 200 Colorado State #> 949 5-11 198 Ohio State #> 950 6-3 319 Iowa #> 951 6-2 189 Oklahoma #> 952 6-5 210 Mississippi State #> 953 6-4 200 Mississippi State #> 954 5-9 178 Central Florida #> 955 6-2 216 None #> 956 6-6 215 Texas Tech #> 957 6-3 191 Rhode Island #> 958 6-4 315 Louisiana State #> 959 6-3 320 Wisconsin-Whitewater #> 960 6-2 315 Regina, Can. #> 961 5-11 193 Florida State #> 962 5-9 188 Rice #> 963 5-10 189 LSU #> 964 6-0 175 Oklahoma #> 965 6-1 200 Alabama #> 966 5-11 194 Virginia Tech #> 967 5-10 190 Wake Forest #> 968 6-0 175 North Carolina A&T #> 969 6-1 200 Iowa #> 970 6-0 185 Temple #> 971 6-2 202 Alabama #> 972 5-10 198 Florida #> 973 5-10 202 Texas #> 974 6-0 180 Hawaii #> 975 5-10 185 Alabama #> 976 6-2 202 Boston College #> 977 6-1 207 Texas #> 978 6-1 197 Indiana #> 979 6-3 281 Ohio State #> 980 6-2 290 Illinois State #> 981 6-4 300 Mississippi State #> 982 6-4 257 Ohio State #> 983 6-3 286 Washington #> 984 6-4 280 Colorado State-Pueblo #> 985 6-1 292 Clemson #> 986 6-3 325 Purdue #> 987 6-5 295 Lindenwood #> 988 6-1 299 Chattanooga #> 989 6-5 310 Connecticut #> 990 6-3 300 Arkansas #> 991 6-0 245 South Carolina #> 992 6-3 255 Texas #> 993 6-3 307 Fresno State #> 994 6-6 316 Rutgers #> 995 6-5 312 Kansas State #> 996 6-6 310 Michigan #> 997 6-3 201 Temple #> 998 6-3 240 Ohio State #> 999 6-3 254 Stanford #> 1000 6-2 235 Nevada #> 1001 6-3 250 Texas A&amp;M #> 1002 6-1 243 Utah #> 1003 6-3 235 Wake Forest #> 1004 6-3 242 Georgia #> 1005 6-3 249 Vanderbilt #> 1006 6-1 236 Iowa #> 1007 6-3 235 Stanford #> 1008 6-2 240 Colorado State #> 1009 6-4 275 North Carolina State #> 1010 6-1 232 Iowa #> 1011 6-5 246 North Dakota State #> 1012 6-2 255 Tennessee #> 1013 6-2 235 Northern Colorado #> 1014 6-3 328 Wyoming #> 1015 6-3 315 Air Force #> 1016 6-6 300 Texas Christian #> 1017 6-3 315 Florida #> 1018 6-6 296 Syracuse #> 1019 6-3 239 Nebraska #> 1020 6-10 325 Illinois State #> 1021 6-6 323 Arizona State #> 1022 6-6 320 Stanford #> 1023 6-6 325 Mississippi #> 1024 6-5 300 Texas #> 1025 6-5 300 Utah #> 1026 6-1 211 Appalachian State #> 1027 6-0 181 Kentucky #> 1028 6-2 215 Louisville #> 1029 6-4 228 Missouri #> 1030 6-2 200 Boise State #> 1031 5-11 225 Missouri #> 1032 5-9 188 Western Michigan #> 1033 6-2 231 Indiana #> 1034 5-8 164 Central Florida #> 1035 6-1 215 Wisconsin #> 1036 6-0 238 Oregon #> 1037 5-10 220 North Carolina #> 1038 5-10 205 Cincinnati #> 1039 6-0 207 Florida State #> 1040 6-5 253 Drake #> 1041 6-5 210 Iowa #> 1042 6-4 249 Iowa #> 1043 6-5 255 Missouri #> 1044 6-4 244 Wyoming #> 1045 6-5 250 Jacksonville State #> 1046 6-5 258 Clemson #> 1047 5-9 195 Nebraska #> 1048 6-2 219 Michigan #> 1049 6-4 216 Southern Methodist #> 1050 6-4 216 USF #> 1051 6-5 220 Temple #> 1052 6-1 192 Alabama #> 1053 6-1 206 Penn State #> 1054 6-4 212 Utah #> 1055 6-0 195 Wake Forest #> 1056 6-0 180 East Central #> 1057 6-2 205 Florida #> 1058 5-9 176 Penn State #> 1059 6-3 211 Auburn #> 1060 5-8 170 McNeese State #> 1061 6-2 302 Southern Methodist #> 1062 6-3 321 Missouri #> 1063 6-3 308 North Carolina #> 1064 6-2 203 Penn State #> 1065 6-1 200 Ohio State #> 1066 5-10 189 East Carolina #> 1067 6-2 202 Florida #> 1068 5-11 170 South Carolina State #> 1069 5-8 178 Southern California #> 1070 6-0 196 Southeast Missouri #> 1071 5-11 178 Kansas State #> 1072 5-10 185 Miami #> 1073 5-11 203 Arkansas #> 1074 6-4 205 Norfolk State #> 1075 5-11 197 None #> 1076 6-2 188 Stanford #> 1077 6-0 210 Notre Dame #> 1078 6-1 185 Virginia #> 1079 6-1 210 Louisiana-Lafayette #> 1080 6-1 207 Boston College #> 1081 5-11 195 Mississippi #> 1082 6-1 208 James Madison #> 1083 6-3 213 Syracuse #> 1084 6-0 212 Northwestern #> 1085 6-5 241 Notre Dame #> 1086 6-6 300 Michigan State #> 1087 6-3 250 Missouri #> 1088 6-6 261 Clemson #> 1089 6-4 263 Notre Dame #> 1090 6-2 265 Arkansas #> 1091 6-2 280 Indiana #> 1092 6-2 296 South Florida #> 1093 6-3 285 Ohio State #> 1094 6-2 320 North Carolina State #> 1095 6-5 305 Louisiana State #> 1096 6-3 288 Washington #> 1097 6-2 333 Utah #> 1098 6-4 316 Mississippi State #> 1099 6-3 297 Alabama #> 1100 6-4 304 Georgia #> 1101 6-4 285 Texas-San Antonio #> 1102 6-4 309 Samford #> 1103 6-3 320 Arizona #> 1104 6-1 235 Penn State #> 1105 6-2 245 San Diego State #> 1106 6-1 237 None #> 1107 6-0 202 Arizona State #> 1108 6-0 179 Central Florida #> 1109 5-9 210 Texas A&amp;M #> 1110 6-3 240 Wayne State, Mich. #> 1111 6-1 245 Purdue #> 1112 6-0 233 Tennessee #> 1113 6-2 250 Hawaii #> 1114 5-10 214 Marshall #> 1115 6-0 235 Alabama #> 1116 6-3 261 Arizona #> 1117 6-3 255 Southern Mississippi #> 1118 6-3 240 Florida #> 1119 6-4 255 Ohio State #> 1120 6-1 250 Notre Dame #> 1121 6-4 258 Texas A&amp;M #> 1122 6-2 320 Wofford #> 1123 6-4 305 Minnesota State-Mankato #> 1124 6-5 311 Arkansas #> 1125 6-4 305 Ohio State #> 1126 6-5 317 Notre Dame #> 1127 6-6 320 Kentucky #> 1128 6-4 310 Oregon #> 1129 6-9 325 Arkansas #> 1130 6-6 330 Oregon #> 1131 6-5 305 None #> 1132 6-6 320 Texas Christian #> 1133 6-7 299 Iowa #> 1134 6-7 318 Ohio State #> 1135 6-5 315 Utah #> 1136 6-2 224 Rice #> 1137 6-4 233 Eastern Kentucky #> 1138 6-3 221 Mississippi #> 1139 6-0 200 Purdue #> 1140 6-4 223 California #> 1141 5-11 224 Cincinnati #> 1142 5-10 211 Georgia #> 1143 6-0 206 Arkansas #> 1144 6-0 206 Maryland #> 1145 6-0 213 Brigham Young #> 1146 5-7 185 Colorado State #> 1147 5-11 215 Kutztown #> 1148 5-11 220 Nebraska #> 1149 5-10 217 Oregon State #> 1150 6-4 253 Bowie State #> 1151 6-4 255 Notre Dame #> 1152 6-5 247 Notre Dame #> 1153 6-2 239 Washington #> 1154 6-6 260 Utah #> 1155 6-3 245 Portland State #> 1156 6-5 248 Iowa #> 1157 6-7 270 California-Irvine #> 1158 6-2 215 Notre Dame #> 1159 5-10 194 Bryant #> 1160 6-1 195 USC #> 1161 6-2 202 California #> 1162 6-2 200 Texas A&amp;M #> 1163 6-4 205 Western Oregon #> 1164 6-1 205 Wisconsin #> 1165 5-8 178 Oregon State #> 1166 5-8 182 Holy Cross #> 1167 6-1 215 Wake Forest #> 1168 6-2 215 Central Florida #> 1169 6-2 210 Arkansas State #> 1170 6-3 202 Illinois #> 1171 5-10 180 Virginia #> 1172 6-5 297 Oregon #> 1173 5-11 189 Georgia State #> 1174 6-1 185 Georgia #> 1175 5-10 180 Tarleton State #> 1176 6-3 200 Washington #> 1177 5-11 190 Appalachian State #> 1178 5-10 196 Louisville #> 1179 6-2 185 Florida State #> 1180 6-1 187 Colorado #> 1181 6-2 207 Texas Christian #> 1182 5-11 200 Maryland #> 1183 6-0 214 Penn State #> 1184 6-1 190 Boston College #> 1185 5-11 204 Baylor #> 1186 6-2 206 Texas Christian #> 1187 5-11 186 Mississippi State #> 1188 6-3 195 Illinois State #> 1189 6-6 296 Northwestern #> 1190 6-5 250 Southern Methodist #> 1191 6-3 275 Mississippi State #> 1192 6-3 314 UCLA #> 1193 6-3 288 Texas A&amp;M #> 1194 6-4 280 Arizona #> 1195 6-5 340 Florida #> 1196 6-4 319 Iowa #> 1197 6-5 295 Rutgers #> 1198 6-2 285 None #> 1199 6-3 315 Northwestern #> 1200 6-4 320 Southeast Missouri #> 1201 6-6 329 Michigan #> 1202 6-6 315 North Dakota State #> 1203 6-5 321 Michigan #> 1204 6-1 207 Colorado #> 1205 6-1 197 UCLA #> 1206 6-0 244 Arkansas #> 1207 6-5 265 Mississippi State #> 1208 6-5 277 Michigan #> 1209 6-4 224 Ball State #> 1210 6-4 250 Miami #> 1211 6-3 233 Vanderbilt #> 1212 6-1 240 Texas Christian #> 1213 6-4 272 Kentucky #> 1214 6-4 232 Minnesota #> 1215 6-5 235 Utah State #> 1216 6-1 235 UCLA #> 1217 6-3 245 Minnesota #> 1218 6-1 224 Boston College #> 1219 6-3 236 Arkansas #> 1220 6-3 286 Michigan #> 1221 6-3 240 Mississippi State #> 1222 6-5 240 Delaware #> 1223 6-5 310 North Dakota State #> 1224 6-5 310 Mississippi State #> 1225 6-3 313 Duke #> 1226 6-4 311 Indiana #> 1227 6-5 312 Wisconsin #> 1228 6-4 300 San Diego State #> 1229 6-6 310 Ole Miss #> 1230 6-5 312 Ohio State #> 1231 6-6 319 Wisconsin #> 1232 6-4 318 Iowa #> 1233 6-8 321 Purdue #> 1234 6-7 314 Virginia Tech #> 1235 6-4 310 Colorado #> 1236 6-6 208 Alabama #> 1237 6-2 225 California #> 1238 6-5 236 Central Florida #> 1239 6-4 220 Utah State #> 1240 6-4 215 Virginia #> 1241 6-7 242 Central Connecticut State #> 1242 5-11 212 Notre Dame #> 1243 6-3 223 Memphis #> 1244 5-9 208 Texas-El Paso #> 1245 6-1 250 Boston College #> 1246 5-11 210 Mississippi State #> 1247 6-6 267 UCLA #> 1248 6-4 250 Texas A&amp;M #> 1249 6-3 235 Indiana State #> 1250 6-3 240 Cincinnati #> 1251 6-3 246 Georgia #> 1252 6-6 275 Brigham Young #> 1253 6-5 237 Indiana State #> 1254 6-4 240 Duke #> 1255 6-2 251 Northern Illinois #> 1256 5-10 192 Kentucky #> 1257 6-1 215 Fresno State #> 1258 5-11 188 Penn State #> 1259 6-2 216 Ferris State #> 1260 6-2 200 Lamar #> 1261 6-3 200 Alcorn State #> 1262 6-5 214 Notre Dame #> 1263 6-1 182 San Jose State #> 1264 5-10 210 Clemson #> 1265 6-5 227 Iowa State #> 1266 6-4 207 South Florida #> 1267 6-3 215 Colorado #> 1268 6-4 225 Michigan #> 1269 6-3 215 Missouri #> 1270 6-2 292 Kentucky #> 1271 5-10 204 Florida #> 1272 5-10 181 Penn State #> 1273 6-2 213 Kentucky #> 1274 5-11 194 Ohio State #> 1275 6-0 196 Toledo #> 1276 6-0 190 Ohio State #> 1277 5-11 199 Minnesota #> 1278 5-10 201 Iowa #> 1279 5-11 210 Missouri Western #> 1280 6-0 190 Central Arkansas #> 1281 6-0 191 Alabama #> 1282 5-11 190 Oregon #> 1283 6-1 204 Stanford #> 1284 5-11 205 Florida State #> 1285 5-11 202 Mississippi #> 1286 6-0 185 Southern Mississippi #> 1287 5-10 205 Ferris State #> 1288 6-5 250 Youngstown State #> 1289 6-3 267 Clemson #> 1290 6-5 280 Texas #> 1291 6-3 259 Georgia #> 1292 6-4 280 Florida State #> 1293 6-6 273 Oregon #> 1294 6-2 226 East Carolina #> 1295 6-2 318 Arizona #> 1296 6-4 305 Texas Christian #> 1297 6-3 311 Oklahoma State #> 1298 6-4 320 West Georgia #> 1299 6-3 316 Iowa #> 1300 6-2 308 Nebraska #> 1301 6-0 183 UCLA #> 1302 6-2 230 TCU #> 1303 6-0 235 Illinois #> 1304 6-2 242 Temple #> 1305 6-2 234 Marshall #> 1306 6-2 230 Eastern Illinois #> 1307 6-3 238 Vanderbilt #> 1308 6-4 258 Illinois #> 1309 6-1 232 South Carolina State #> 1310 6-3 259 Florida #> 1311 6-4 255 Wake Forest #> 1312 6-0 230 Boston College #> 1313 6-1 224 Chattanooga #> 1314 6-2 235 Iowa #> 1315 6-2 223 Arizona State #> 1316 6-3 220 Lake Erie #> 1317 5-10 242 Baylor #> 1318 6-2 310 Louisville #> 1319 6-5 310 Arkansas #> 1320 6-3 306 Miami #> 1321 6-3 324 Oklahoma State #> 1322 6-6 315 Louisville #> 1323 6-6 315 Missouri #> 1324 6-5 300 Texas A&M #> 1325 6-6 325 Northern Illinois #> 1326 6-6 320 Texas A&M #> 1327 6-7 300 Harvard #> 1328 6-6 335 Texas Christian #> 1329 6-3 317 Central Florida #> 1330 6-5 305 Northern Illinois #> 1331 6-5 322 Alabama State #> 1332 6-6 306 Florida State #> 1333 6-5 313 Mississippi #> 1334 6-8 315 North Carolina #> 1335 5-11 194 Ohio State #> 1336 6-4 212 Stanford #> 1337 6-2 221 Clemson #> 1338 6-1 215 Virginia Tech #> 1339 6-4 235 Louisiana Tech #> 1340 5-11 202 Tulane #> 1341 5-9 215 Alabama #> 1342 5-10 215 Nebraska #> 1343 5-8 190 Colorado #> 1344 6-1 218 Florida Atlantic #> 1345 6-1 224 Northern Iowa #> 1346 5-8 211 Mississippi #> 1347 6-0 220 Eastern Michigan #> 1348 6-4 321 Louisiana State #> 1349 6-6 256 Laval, Can. #> 1350 6-4 243 Central Florida #> 1351 6-3 245 Miami (FL) #> 1352 6-5 255 Florida State #> 1353 6-6 258 Oregon #> 1354 6-2 251 Navy #> 1355 5-11 203 Western Kentucky #> 1356 6-1 200 Cincinnati #> 1357 5-11 180 Texas Tech #> 1358 6-3 221 California #> 1359 6-4 222 Michigan #> 1360 6-0 195 Wisconsin #> 1361 6-3 205 Georgia #> 1362 5-11 195 Clemson #> 1363 5-10 183 Oregon State #> 1364 6-2 216 Mississippi #> 1365 5-11 199 Memphis #> 1366 5-11 195 Citadel #> 1367 6-0 215 UCF #> 1368 6-4 309 Alabama #> 1369 6-2 299 Texas Christian #> 1370 6-0 195 San Jose State #> 1371 6-0 204 Ohio #> 1372 6-0 190 Temple #> 1373 6-1 218 Florida State #> 1374 6-0 190 Coastal Carolina #> 1375 6-2 196 Texas #> 1376 5-10 170 Massachusetts #> 1377 5-9 190 Valdosta State #> 1378 6-2 198 Southern California #> 1379 5-11 215 Michigan State #> 1380 5-11 208 Northwestern #> 1381 5-11 205 Wisconsin #> 1382 6-1 204 Utah #> 1383 6-1 202 Central Arkansas #> 1384 5-10 200 Toledo #> 1385 6-0 206 Florida #> 1386 6-1 202 Maryland #> 1387 6-2 190 Hampton #> 1388 6-4 272 Michigan #> 1389 6-5 248 Rutgers #> 1390 6-4 280 Notre Dame #> 1391 6-4 250 Miami #> 1392 6-6 276 Vanderbilt #> 1393 6-3 252 Texas Christian #> 1394 6-4 260 Texas A&amp;M #> 1395 6-2 305 Wagner #> 1396 6-3 277 Ohio State #> 1397 6-1 318 Southern California #> 1398 6-4 270 South Dakota #> 1399 6-2 305 South Carolina #> 1400 6-4 315 Albany State, Ga. #> 1401 6-5 290 Penn State #> 1402 6-3 290 Virginia #> 1403 6-7 300 Oregon #> 1404 6-4 300 Ball State #> 1405 6-1 191 Georgia #> 1406 5-11 178 Florida #> 1407 6-0 228 Oklahoma #> 1408 6-2 240 Texas #> 1409 6-2 230 South Carolina State #> 1410 6-2 220 BYU #> 1411 6-0 229 Houston #> 1412 6-0 244 West Virginia #> 1413 6-2 225 South Carolina #> 1414 6-1 234 Stanford #> 1415 6-1 230 Liberty #> 1416 6-1 226 Michigan #> 1417 6-2 245 Indiana #> 1418 6-4 230 Tarleton State #> 1419 6-0 236 Syracuse #> 1420 6-2 238 William &amp; Mary #> 1421 6-4 310 West Virginia #> 1422 6-6 307 Penn State #> 1423 6-6 315 Auburn #> 1424 6-4 320 Minn. State-Mankato #> 1425 6-5 300 Washington #> 1426 6-5 330 Notre Dame #> 1427 6-5 315 Utah #> 1428 6-7 325 Bucknell #> 1429 6-7 315 Central Michigan #> 1430 6-7 312 Vanderbilt #> 1431 6-3 213 Idaho #> 1432 6-0 195 Hawaii #> 1433 6-3 225 Texas #> 1434 6-2 216 Mississippi #> 1435 6-3 226 UCLA #> 1436 6-4 226 Prairie View #> 1437 6-5 237 North Dakota State #> 1438 6-6 227 Washington #> 1439 6-0 220 Duke #> 1440 5-9 198 North Carolina State #> 1441 6-1 217 Mississippi #> 1442 5-11 212 Texas Christian #> 1443 5-11 221 Wisconsin #> 1444 5-11 210 North Dakota State #> 1445 6-0 210 South Florida #> 1446 5-11 213 UCLA #> 1447 5-9 218 North Carolina-Charlotte #> 1448 6-6 315 Alberta, Can. #> 1449 6-3 235 SMU #> 1450 6-4 255 Princeton #> 1451 6-5 277 Mississippi State #> 1452 6-5 245 Weber State #> 1453 6-6 262 Western Kentucky #> 1454 6-5 267 Virginia Commonwealth #> 1455 6-4 246 Oregon State #> 1456 6-4 240 Mississippi State #> 1457 6-4 220 Washington State #> 1458 6-0 205 Ohio State #> 1459 5-9 175 Southern Mississippi #> 1460 6-2 200 Texas A&amp;M #> 1461 6-5 226 Charleston #> 1462 5-10 160 Alabama-Birmingham #> 1463 5-10 212 LA-Lafayette #> 1464 6-1 215 Malone #> 1465 6-1 215 West Virginia #> 1466 6-2 214 Old Dominion #> 1467 5-10 183 Florida International #> 1468 6-3 217 Texas #> 1469 6-2 190 USC #> 1470 6-4 220 Southern California #> 1471 6-0 198 Central Florida #> 1472 5-11 175 Arizona #> 1473 5-11 198 Michigan #> 1474 5-10 183 Louisiana-Monroe #> 1475 6-0 181 Washington #> 1476 6-1 191 Florida #> 1477 5-11 200 Baylor #> 1478 6-1 185 Georgia #> 1479 6-0 176 Memphis #> 1480 6-2 185 Georgia #> 1481 5-11 185 Vanderbilt #> 1482 6-2 210 Michigan #> 1483 5-11 209 Auburn #> 1484 6-0 204 Auburn #> 1485 6-0 209 Wyoming #> 1486 6-0 209 Syracuse #> 1487 6-2 220 North Carolina State #> 1488 6-1 220 Miami #> 1489 6-4 245 Eastern Kentucky #> 1490 6-5 287 Illinois #> 1491 6-4 291 Florida #> 1492 6-4 287 Georgia Tech #> 1493 6-7 255 UAB #> 1494 6-5 262 Kentucky #> 1495 6-5 294 Texas-El Paso #> 1496 6-3 264 Illinois #> 1497 6-5 305 Delaware State #> 1498 6-3 249 Florida #> 1499 6-3 300 Washington State #> 1500 6-2 295 Miami, O. #> 1501 6-4 300 Charleston #> 1502 6-2 320 Texas #> 1503 6-3 305 N.E. Mississippi CC #> 1504 6-4 310 Ohio State #> 1505 6-3 305 USC #> 1506 6-0 215 Texas A&amp;M #> 1507 6-1 230 Temple #> 1508 6-1 235 Miami #> 1509 5-11 226 Murray State #> 1510 6-1 232 Texas Tech #> 1511 6-0 243 Minnesota #> 1512 6-3 240 Alabama #> 1513 6-4 250 Louisiana State #> 1514 6-2 245 Wisconsin #> 1515 6-1 244 UCLA #> 1516 6-0 235 Baylor #> 1517 6-3 320 Auburn #> 1518 6-3 325 South Carolina #> 1519 6-6 325 Ohio State #> 1520 6-3 310 Clemson #> 1521 6-6 305 St. John's, Minn. #> 1522 6-6 315 Miami #> 1523 6-5 311 Miami #> 1524 6-4 336 Missouri #> 1525 6-7 312 Ohio #> 1526 6-6 302 East Carolina #> 1527 6-7 313 Stanford #> 1528 6-6 303 North Carolina State #> 1529 6-4 320 Maryland #> 1530 6-6 320 Alabama #> 1531 6-5 312 Florida #> 1532 6-5 200 Mississippi State #> 1533 6-6 236 Oregon State #> 1534 6-6 220 Clemson #> 1535 6-1 225 Washington State #> 1536 6-2 215 Iowa #> 1537 6-0 225 Nebraska #> 1538 5-11 193 Georgia Tech #> 1539 6-0 229 Ohio State #> 1540 5-10 210 Clemson #> 1541 5-10 220 Illinois State #> 1542 5-10 205 Wisconsin #> 1543 6-7 316 Washington #> 1544 6-4 245 Illinois State #> 1545 6-6 260 Pittsburgh #> 1546 6-6 258 Ohio State #> 1547 6-6 255 Canisius #> 1548 6-3 250 North Dakota State #> 1549 6-4 250 Georgia Tech #> 1550 6-3 236 Florida #> 1551 5-10 190 San Diego #> 1552 5-11 185 Georgia #> 1553 6-2 225 Memphis #> 1554 6-2 198 California #> 1555 6-2 204 Idaho #> 1556 5-11 207 South Carolina #> 1557 5-11 216 None #> 1558 6-2 220 Illinois #> 1559 6-0 194 Florida #> 1560 5-10 192 Miami #> 1561 6-2 215 Mississippi #> 1562 5-8 179 West Virginia #> 1563 6-2 220 Colorado #> 1564 6-4 198 Louisiana State #> 1565 6-1 202 Southern Miss #> 1566 6-2 220 Georgia Tech #> 1567 6-6 215 Texas #> 1568 6-0 205 Central Florida #> 1569 6-3 300 Iowa #> 1570 6-4 335 None #> 1571 6-2 305 Mississippi State #> 1572 6-1 200 Tulane #> 1573 5-11 188 South Carolina #> 1574 5-10 190 South Carolina #> 1575 6-1 195 Middle Tennessee #> 1576 5-11 180 Georgia #> 1577 6-1 210 Western Kentucky #> 1578 5-10 183 Marshall #> 1579 6-1 194 Arizona #> 1580 6-0 205 Virginia #> 1581 5-10 191 Central Florida #> 1582 5-10 180 Maine #> 1583 5-11 205 Texas A&amp;M #> 1584 6-2 208 Brigham Young #> 1585 6-1 193 Louisiana Tech #> 1586 6-2 210 BYU #> 1587 5-10 195 Nebraska #> 1588 6-0 205 Southern Methodist #> 1589 6-1 195 Louisville #> 1590 5-9 190 Louisiana State #> 1591 6-4 260 Texas #> 1592 6-6 255 Old Dominion #> 1593 6-7 265 Florida State #> 1594 6-6 270 Michigan #> 1595 6-3 260 Michigan #> 1596 6-4 272 Buffalo #> 1597 6-2 255 Michigan #> 1598 6-3 280 Georgia #> 1599 6-5 280 Ferris State #> 1600 6-0 324 Western Illinois #> 1601 6-4 300 Georgia #> 1602 6-4 255 Missouri S&amp;T #> 1603 6-3 306 Alabama #> 1604 6-1 310 Florida State #> 1605 6-6 308 Mississippi State #> 1606 6-0 240 Rutgers #> 1607 6-7 320 South Dakota State #> 1608 6-4 205 Georgia Tech #> 1609 6-1 220 Clemson #> 1610 6-3 225 South Alabama #> 1611 6-2 235 Mississippi State #> 1612 6-0 235 Iowa #> 1613 6-2 233 Iowa #> 1614 6-2 240 Vanderbilt #> 1615 6-2 238 Middle Tennessee #> 1616 6-0 232 Missouri #> 1617 6-4 223 Marshall #> 1618 6-3 240 Oklahoma #> 1619 6-1 209 Kansas State #> 1620 6-6 309 Eastern Michigan #> 1621 6-6 332 Oregon #> 1622 6-5 321 McGill #> 1623 6-5 308 North Carolina State #> 1624 6-4 320 Illinois #> 1625 6-5 307 Oklahoma #> 1626 6-6 330 Tennessee #> 1627 6-5 310 Oregon State #> 1628 6-7 328 Texas Christian #> 1629 6-8 345 Oklahoma #> 1630 6-6 299 Southern Illinois #> 1631 6-4 306 Central Florida #> 1632 6-2 176 Florida #> 1633 6-3 210 Washington State #> 1634 6-3 230 Texas Tech #> 1635 6-3 222 Michigan #> 1636 6-1 207 SMU #> 1637 6-4 230 Wagner #> 1638 5-9 205 Georgia Southern #> 1639 5-8 200 Utah State #> 1640 5-10 214 Louisiana-Lafayette #> 1641 5-10 212 Louisiana-Monroe #> 1642 5-11 224 Louisiana State #> 1643 5-8 209 Louisiana State #> 1644 6-7 330 Missouri #> 1645 6-7 310 Auburn #> 1646 6-4 240 Duke #> 1647 6-5 260 Cincinnati #> 1648 6-6 252 Oklahoma #> 1649 6-5 250 Oregon #> 1650 6-4 251 Grand Valley State #> 1651 6-1 203 Florida #> 1652 6-0 210 Clemson #> 1653 5-11 200 Pittsburgh #> 1654 5-11 182 Northern Arizona #> 1655 6-1 209 Kansas State #> 1656 6-1 204 Grambling #> 1657 6-6 230 Valdosta State #> 1658 5-11 200 Florida #> 1659 5-10 187 Georgia #> 1660 6-2 210 Northern Iowa #> 1661 6-6 230 Valdosta State #> 1662 5-11 188 North Dakota State #> 1663 5-9 184 Notre Dame #> 1664 5-10 167 Fresno State #> 1665 6-3 207 Alabama #> 1666 6-3 190 Sacramento State #> 1667 6-1 205 Kansas State #> 1668 5-10 185 West Alabama #> 1669 5-11 215 West Florida #> 1670 6-4 210 Hawaii #> 1671 6-2 302 Michigan State #> 1672 5-11 196 Michigan #> 1673 5-9 158 Boise State #> 1674 6-1 208 Florida State #> 1675 5-9 187 Alabama-Birmingham #> 1676 6-2 205 Portland State #> 1677 5-11 188 Fresno State #> 1678 5-11 200 Brigham Young #> 1679 6-2 206 Louisville #> 1680 5-10 190 UAB #> 1681 6-1 200 BYU #> 1682 6-2 195 Central Arkansas #> 1683 6-0 190 Pittsburgh #> 1684 6-1 210 Merrimack #> 1685 5-11 200 Penn State #> 1686 6-2 205 Ohio State #> 1687 6-0 208 Washington #> 1688 6-1 212 Iowa #> 1689 5-10 190 Wyoming #> 1690 6-1 195 Georgia #> 1691 5-10 187 Georgia #> 1692 6-0 198 Utah #> 1693 5-11 195 Chattanooga #> 1694 6-2 227 James Madison #> 1695 6-5 275 Weber State #> 1696 6-5 270 Northwestern #> 1697 6-3 271 None #> 1698 6-4 270 Texas-San Antonio #> 1699 6-1 312 Washington #> 1700 6-4 310 Rutgers #> 1701 6-1 280 Pittsburgh #> 1702 6-4 330 Alabama #> 1703 6-4 325 Texas A&M #> 1704 6-4 290 Tarleton State #> 1705 6-4 310 Brown #> 1706 6-2 285 Cincinnati #> 1707 6-5 285 Air Force #> 1708 6-4 305 Nevada #> 1709 6-1 308 New Mexico State #> 1710 5-10 185 Kentucky #> 1711 6-0 232 Utah #> 1712 6-1 235 UCLA #> 1713 6-1 250 Boston College #> 1714 6-2 220 Oklahoma State #> 1715 6-4 245 Concordia-St. Paul #> 1716 6-3 245 Delaware #> 1717 6-2 230 South Carolina #> 1718 6-1 253 Oklahoma #> 1719 6-5 240 Georgia #> 1720 6-0 244 Virginia #> 1721 6-4 265 Southern Methodist #> 1722 6-5 248 Oregon #> 1723 6-2 230 South Dakota State #> 1724 6-5 252 Alabama #> 1725 6-1 219 Texas Christian #> 1726 6-4 235 Iowa State #> 1727 6-3 245 Azusa Pacific #> 1728 6-5 321 Maine #> 1729 6-3 316 San Jose State #> 1730 6-5 321 Texas Christian #> 1731 6-8 328 Wisconsin #> 1732 6-6 319 Middle Tennessee #> 1733 6-6 308 Wisconsin #> 1734 6-7 300 <NA> #> 1735 6-3 300 Western Kentucky #> 1736 6-2 315 Clemson #> 1737 6-5 285 Washington #> 1738 6-4 312 Oklahoma #> 1739 6-7 285 Iowa #> 1740 6-7 315 San Diego State #> 1741 6-7 330 Louisiana State #> 1742 6-0 208 New Mexico #> 1743 5-10 182 Georgia State #> 1744 6-5 241 Oregon State #> 1745 6-1 200 Wake Forest #> 1746 6-1 210 Samford #> 1747 6-3 220 Georgia #> 1748 6-3 215 Virginia #> 1749 5-11 174 UCF #> 1750 5-11 212 Florida State #> 1751 5-9 185 Louisiana-Lafayette #> 1752 5-11 208 Southern Methodist #> 1753 5-8 200 Memphis #> 1754 5-10 203 Maryland #> 1755 6-5 245 Purdue #> 1756 6-5 211 UCF #> 1757 6-6 257 Western Kentucky #> 1758 6-4 250 South Carolina #> 1759 6-6 260 Missouri #> 1760 6-4 232 Oregon #> 1761 6-0 193 Southern California #> 1762 6-0 191 Iowa State #> 1763 <NA> NA <NA> #> 1764 6-0 170 Texas State #> 1765 6-3 224 Notre Dame #> 1766 5-10 176 None #> 1767 6-2 197 Florida #> 1768 6-1 191 Syracuse #> 1769 6-1 195 Cal Poly #> 1770 5-10 175 California #> 1771 6-2 208 Eastern Washington #> 1772 6-1 221 Kennesaw State #> 1773 6-3 201 Cal Lutheran #> 1774 5-9 165 Louisville #> 1775 6-3 301 Ohio State #> 1776 6-6 300 Florida Atlantic #> 1777 6-0 200 Regina, Can. #> 1778 6-2 197 Virginia Tech #> 1779 5-10 184 Florida State #> 1780 5-11 190 North Carolina Central #> 1781 6-2 196 Brigham Young #> 1782 6-2 195 Western Carolina #> 1783 6-2 212 Notre Dame #> 1784 5-10 199 Kansas #> 1785 5-11 190 North Texas #> 1786 6-0 206 Delaware #> 1787 6-1 215 Charlotte #> 1788 5-11 202 Notre Dame #> 1789 6-1 200 Georgia #> 1790 5-11 180 South Florida #> 1791 6-2 215 Florida State #> 1792 6-3 240 Liberty #> 1793 6-3 225 Duke #> 1794 6-5 280 Ohio State #> 1795 6-4 275 Northwestern #> 1796 6-3 285 None #> 1797 6-6 295 Notre Dame #> 1798 6-4 329 East Carolina #> 1799 6-2 305 Rice #> 1800 6-6 320 Ferris State #> 1801 6-0 322 Arkansas State #> 1802 6-3 290 Arkansas #> 1803 6-3 309 North Carolina State #> 1804 6-2 293 Cincinnati #> 1805 6-2 285 Wake Forest #> 1806 6-6 305 Louisville #> 1807 6-3 243 Florida State #> 1808 5-10 183 Miami #> 1809 6-2 205 Washington #> 1810 6-3 190 Pittsburgh #> 1811 6-2 234 Notre Dame #> 1812 6-1 235 Oklahoma State #> 1813 6-2 216 West Virginia #> 1814 6-3 234 Oklahoma #> 1815 6-5 259 Georgia #> 1816 6-0 0 IUP (PA) #> 1817 6-2 251 Southern California #> 1818 6-2 225 Army #> 1819 6-2 245 Houston #> 1820 6-4 233 Iowa #> 1821 6-5 245 Utah State #> 1822 6-1 247 Alabama #> 1823 6-1 225 Georgia Southern #> 1824 6-1 243 Western Washington #> 1825 6-2 295 Louisiana State #> 1826 6-5 300 Wake Forest #> 1827 6-5 315 Virginia #> 1828 6-6 330 Bloomsburg #> 1829 6-3 310 UCLA #> 1830 6-6 305 San Diego State #> 1831 6-7 308 Cincinnati #> 1832 6-3 316 Bowling Green #> 1833 6-3 315 Northwestern #> 1834 6-6 300 Nebraska #> 1835 6-6 307 Sioux Falls #> 1836 6-7 317 Toledo #> 1837 6-5 314 Iowa #> 1838 6-5 315 Miami #> 1839 6-4 209 Sam Houston State #> 1840 6-2 205 Alabama-Birmingham #> 1841 6-5 225 Mississippi State #> 1842 6-2 205 Jacksonville State #> 1843 6-0 229 Missouri #> 1844 6-1 224 North Dakota State #> 1845 6-6 237 Oregon #> 1846 5-11 219 UCLA #> 1847 5-10 200 Western State, Colo. #> 1848 6-1 230 Tulane #> 1849 5-10 210 Missouri #> 1850 6-0 200 Northwestern #> 1851 6-4 252 Michigan State #> 1852 6-4 240 Oregon #> 1853 6-5 245 Georgia #> 1854 6-8 237 Stetson University #> 1855 6-6 260 Michigan State #> 1856 6-5 254 South Carolina #> 1857 6-3 230 California #> 1858 <NA> NA <NA> #> 1859 6-2 190 West Georgia #> 1860 6-1 193 Oklahoma State #> 1861 6-3 215 Findlay #> 1862 6-2 211 California #> 1863 6-0 197 Ohio State #> 1864 6-2 210 Tennessee #> 1865 5-10 190 San Diego #> 1866 5-10 175 North Carolina #> 1867 6-0 191 Auburn #> 1868 6-1 215 Virginia #> 1869 6-1 212 North Texas #> 1870 6-4 218 Clemson #> 1871 6-3 305 Pittsburgh #> 1872 6-4 300 Notre Dame #> 1873 5-10 200 South Carolina #> 1874 6-0 195 Illinois #> 1875 5-9 183 Louisiana Tech #> 1876 6-2 190 Pittsburg State #> 1877 5-11 193 Georgia Tech #> 1878 6-0 195 Ohio State #> 1879 5-10 195 Central Florida #> 1880 6-2 200 Clemson #> 1881 5-11 192 Vanderbilt #> 1882 6-2 210 Houston #> 1883 6-2 209 West Virginia #> 1884 5-9 192 Utah State #> 1885 5-9 180 Notre Dame #> 1886 6-1 190 Connecticut #> 1887 5-10 185 Stony Brook #> 1888 6-0 205 Tulane #> 1889 6-1 200 Oklahoma State #> 1890 6-2 208 TCU #> 1891 6-0 210 Missouri #> 1892 5-10 195 Utah State #> 1893 6-0 205 Mississippi State #> 1894 5-10 200 West Virginia #> 1895 6-3 223 Virginia Tech #> 1896 6-7 275 Penn State #> 1897 6-1 300 Arkansas #> 1898 6-4 265 Clemson #> 1899 6-3 250 Buffalo #> 1900 6-2 246 Maryland #> 1901 6-3 295 Tennessee #> 1902 6-5 255 Eastern Michigan #> 1903 6-4 252 Mississippi State #> 1904 6-1 285 West Virginia #> 1905 6-4 291 Maryland #> 1906 6-2 305 Mississippi State #> 1907 6-4 287 West Texas A&M #> 1908 6-3 340 Ohio State #> 1909 6-2 280 Stanford #> 1910 6-5 290 UCLA #> 1911 6-3 320 Frostburg State #> 1912 6-4 300 Oklahoma #> 1913 6-1 242 Wisconsin #> 1914 6-1 237 None #> 1915 6-3 311 Oklahoma #> 1916 6-4 330 Clemson #> 1917 6-5 215 Auburn #> 1918 6-2 227 Notre Dame #> 1919 6-0 225 Greenville #> 1920 6-3 205 Nevada-Las Vegas #> 1921 6-2 242 West Virginia #> 1922 6-0 230 Boston College #> 1923 6-3 225 Clemson #> 1924 6-1 232 Ohio State #> 1925 6-3 228 Washington #> 1926 6-1 230 Notre Dame #> 1927 6-2 239 Georgia Southern #> 1928 6-1 235 Notre Dame #> 1929 6-2 237 Ohio State #> 1930 6-3 240 Colorado State #> 1931 6-2 247 California #> 1932 6-3 325 Nebraska #> 1933 6-6 310 Cincinnati #> 1934 6-4 335 Alabama #> 1935 6-5 340 Mars Hill #> 1936 6-5 335 Utah #> 1937 6-4 327 Michigan #> 1938 6-7 345 Pittsburgh #> 1939 6-8 320 North Carolina A&amp;T #> 1940 6-6 310 Rutgers #> 1941 6-4 300 UCLA #> 1942 6-4 315 Utah State #> 1943 6-6 312 Alabama #> 1944 6-8 325 UCLA #> 1945 6-8 302 Notre Dame #> 1946 5-9 310 Duke #> 1947 6-4 220 North Carolina State #> 1948 6-2 210 South Alabama #> 1949 6-3 210 Fresno State #> 1950 6-4 205 Northern Arizona #> 1951 6-5 218 Northern Colorado #> 1952 6-2 225 Pittsburgh #> 1953 6-4 222 Oregon #> 1954 6-1 235 Alabama #> 1955 5-10 220 Alabama #> 1956 6-1 211 Alabama #> 1957 6-0 220 Florida Atlantic #> 1958 5-8 207 Southern Mississippi #> 1959 5-9 201 Notre Dame #> 1960 5-10 230 Louisiana-Lafayette #> 1961 5-11 195 Wisconsin #> 1962 6-5 240 BYU #> 1963 6-4 260 Penn State #> 1964 6-5 240 Western Kentucky #> 1965 6-3 252 Florida State #> 1966 6-6 255 Georgia Tech #> 1967 6-3 240 Beloit #> 1968 6-4 245 Tennessee #> 1969 6-4 250 Louisiana State #> 1970 6-3 210 Georgia State #> 1971 6-0 190 Alabama #> 1972 6-2 202 Vanderbilt #> 1973 6-0 202 Southern Methodist #> 1974 5-9 205 Pittsburgh #> 1975 5-11 179 Pittsburg State #> 1976 6-2 200 East Carolina #> 1977 5-10 200 Ohio State #> 1978 5-10 185 Clemson #> 1979 6-4 215 Oklahoma State #> 1980 6-3 215 South Carolina #> 1981 6-0 200 Oklahoma State #> 1982 6-3 215 California-Davis #> 1983 5-11 205 Ball State #> 1984 6-4 300 Southern Mississippi #> 1985 6-3 313 Duke #> 1986 5-10 180 Iowa State #> 1987 6-2 198 Syracuse #> 1988 6-0 205 Connecticut #> 1989 6-1 215 San Jose State #> 1990 5-11 185 Georgia Tech #> 1991 5-8 182 Tennessee State #> 1992 5-10 186 Auburn #> 1993 6-1 205 Utah #> 1994 5-11 195 Rutgers #> 1995 6-0 193 Texas-El Paso #> 1996 5-10 190 Florida Atlantic #> 1997 6-1 200 Baylor #> 1998 5-11 190 Tennessee #> 1999 6-1 195 Maryland #> 2000 6-1 200 Oregon #> 2001 6-0 205 Texas #> 2002 5-11 196 Auburn #> 2003 5-10 198 Kent State #> 2004 6-5 282 Auburn #> 2005 6-4 256 Middle Tennessee #> 2006 6-4 275 Oklahoma State #> 2007 6-5 280 North Carolina #> 2008 6-4 280 Georgia #> 2009 6-4 330 No College #> 2010 6-6 290 Ferris State #> 2011 6-1 329 Mississippi #> 2012 6-3 327 Georgia #> 2013 6-4 315 Clemson #> 2014 6-1 310 Boston College #> 2015 6-5 300 Vanderbilt #> 2016 6-3 304 Indiana #> 2017 6-7 310 Alabama #> 2018 6-2 248 Alabama #> 2019 6-7 316 Wisconsin #> 2020 6-5 330 Middle Tennessee State #> 2021 5-11 186 New Mexico #> 2022 6-4 257 Mississippi State #> 2023 6-4 242 Wisconsin #> 2024 6-4 245 Louisville #> 2025 6-3 246 Wisconsin #> 2026 6-1 230 Louisiana State #> 2027 6-0 245 San Diego State #> 2028 6-0 229 Central Florida #> 2029 6-1 236 Texas Tech #> 2030 6-2 230 Pittsburgh #> 2031 6-2 225 Ohio State #> 2032 6-0 238 Houston #> 2033 6-5 266 Miami (FL) #> 2034 6-4 263 Stanford #> 2035 6-6 242 West Virginia #> 2036 6-3 235 Louisiana State #> 2037 6-6 325 Idaho #> 2038 6-5 342 Alabama #> 2039 6-5 322 Louisiana-Lafayette #> 2040 6-4 335 Texas A&amp;M #> 2041 6-4 335 Georgia #> 2042 6-6 310 Wisconsin #> 2043 6-5 310 Mississippi #> 2044 6-5 313 West Virginia #> 2045 6-7 300 Massachusetts #> 2046 6-6 310 Southern California #> 2047 6-6 305 Notre Dame #> 2048 6-6 315 Stony Brook #> 2049 5-11 200 Tennessee #> 2050 6-4 235 North Carolina State #> 2051 6-1 218 Alabama #> 2052 6-4 225 San Diego #> 2053 6-0 205 California #> 2054 5-11 196 Washington #> 2055 5-10 200 Washington #> 2056 6-0 230 Cincinnati #> 2057 5-11 210 Florida #> 2058 5-11 222 Texas #> 2059 6-0 205 Illinois #> 2060 6-3 248 Nebraska #> 2061 6-5 255 Grambling State #> 2062 6-5 228 Auburn #> 2063 6-6 260 Notre Dame #> 2064 6-6 257 Ashland #> 2065 6-7 230 North Carolina Central #> 2066 6-5 255 Temple #> 2067 6-5 254 Oklahoma #> 2068 6-6 252 Penn State #> 2069 6-5 253 Boston College #> 2070 5-9 195 Georgia State #> 2071 6-0 210 Arkansas State #> 2072 5-10 182 Alabama #> 2073 6-4 222 Troy #> 2074 5-9 190 Navy #> 2075 6-4 221 North Carolina #> 2076 5-7 169 Texas Tech #> 2077 6-3 216 Louisville #> 2078 6-3 195 Miami #> 2079 6-0 201 Kentucky #> 2080 6-2 194 Alabama #> 2081 6-0 184 Notre Dame #> 2082 6-3 202 Texas-El Paso #> 2083 6-2 195 Virginia Tech #> 2084 6-5 218 Colorado State #> 2085 6-5 295 Arizona State #> 2086 6-3 305 North Carolina State #> 2087 6-2 185 Mississippi State #> 2088 6-0 200 California #> 2089 5-10 180 Tulane #> 2090 6-1 180 Wake Forest #> 2091 6-0 192 Temple #> 2092 6-0 183 Texas Christian #> 2093 5-11 195 Clemson #> 2094 5-10 192 Clemson #> 2095 6-1 195 Fordham #> 2096 6-0 195 Towson #> 2097 5-10 175 West Georgia #> 2098 6-1 203 Louisiana State #> 2099 5-11 201 Texas #> 2100 5-11 202 Louisiana Tech #> 2101 6-2 210 North Carolina #> 2102 6-0 210 Michigan #> 2103 6-2 214 Notre Dame #> 2104 6-2 195 Illinois State #> 2105 6-5 252 Louisiana State #> 2106 6-2 252 Washington State #> 2107 6-5 260 Florida State #> 2108 6-5 265 Vanderbilt #> 2109 6-5 260 Pittsburgh #> 2110 6-5 283 Ohio State #> 2111 6-4 250 Michigan State #> 2112 6-3 252 Oklahoma State #> 2113 6-5 260 South Carolina #> 2114 6-3 273 Southern California #> 2115 6-4 295 Baylor #> 2116 6-2 290 Pittsburgh #> 2117 6-4 290 California #> 2118 6-3 318 Alabama #> 2119 6-3 294 Missouri #> 2120 6-0 340 Samford #> 2121 6-1 311 Oregon #> 2122 6-5 295 Arkansas #> 2123 6-2 250 North Carolina #> 2124 5-11 235 Augustana, S.D. #> 2125 6-3 310 Washburn #> 2126 6-0 190 Memphis #> 2127 5-9 188 Texas A&amp;M #> 2128 6-0 210 Florida Atlantic #> 2129 6-2 225 North Carolina #> 2130 6-2 235 Southern California #> 2131 6-0 232 UCLA #> 2132 6-3 233 Idaho #> 2133 6-1 234 Ohio State #> 2134 6-3 225 Baylor #> 2135 6-2 244 Michigan #> 2136 6-2 235 Utah State #> 2137 6-2 242 Wisconsin #> 2138 6-5 255 UCLA #> 2139 6-4 225 Oregon #> 2140 6-8 311 UTEP #> 2141 6-1 230 San Diego State #> 2142 6-2 230 Rutgers #> 2143 6-5 308 Oklahoma #> 2144 6-4 315 Ohio State #> 2145 6-4 313 Furman #> 2146 6-5 292 Michigan #> 2147 6-5 299 South Carolina #> 2148 6-6 310 Boise State #> 2149 6-6 313 Southern Mississippi #> 2150 6-7 297 Pittsburgh #> 2151 6-5 311 Virginia Tech #> 2152 6-5 323 Elon #> 2153 6-6 310 Buffalo #> 2154 6-3 210 Tennessee #> 2155 6-5 245 LSU #> 2156 6-2 209 Washington #> 2157 6-3 202 Michigan State #> 2158 6-4 222 Illinois #> 2159 6-3 220 Louisiana State #> 2160 6-4 243 Iowa #> 2161 6-3 217 Texas A&M #> 2162 6-0 233 None #> 2163 5-9 203 Nebraska #> 2164 5-9 195 Southern Mississippi #> 2165 6-1 214 Kentucky #> 2166 5-10 210 Florida State #> 2167 5-11 220 Boise State #> 2168 6-1 210 Iowa State #> 2169 6-7 307 Oregon State #> 2170 6-5 250 Marian, Ind. #> 2171 6-2 240 Alabama #> 2172 6-5 215 Minnesota State-Mankato #> 2173 6-3 254 Central Michigan #> 2174 6-7 245 Central Missouri #> 2175 6-1 179 Iowa #> 2176 5-10 185 Northern Illinois #> 2177 5-11 180 Indiana #> 2178 5-11 209 Texas #> 2179 6-6 219 Colorado State #> 2180 6-0 200 Miami #> 2181 6-2 200 Minn. State-Mankato #> 2182 6-1 180 UAB #> 2183 6-0 203 Colorado State #> 2184 6-1 186 East Carolina #> 2185 6-0 176 Oklahoma #> 2186 6-3 202 Penn State #> 2187 6-3 192 Louisiana State #> 2188 6-3 300 Georgia #> 2189 6-3 330 Southern California #> 2190 6-1 202 South Carolina #> 2191 6-1 210 Miami #> 2192 6-3 212 Vanderbilt #> 2193 6-0 191 Louisiana State #> 2194 6-0 200 Presbyterian #> 2195 6-2 216 Lenoir-Rhyne #> 2196 5-8 180 Washington #> 2197 6-2 205 Miami #> 2198 5-9 190 New Mexico #> 2199 6-2 203 Texas Tech #> 2200 6-2 203 Marshall #> 2201 5-10 190 Auburn #> 2202 5-10 195 Rutgers #> 2203 5-11 210 Texas #> 2204 6-0 200 Missouri #> 2205 6-1 198 Maryland #> 2206 5-9 195 West Alabama #> 2207 6-5 275 Arkansas #> 2208 6-3 251 Michigan #> 2209 6-6 301 Stanford #> 2210 6-5 250 Louisiana State #> 2211 6-4 305 Houston #> 2212 6-5 310 Alabama #> 2213 6-5 320 Iowa #> 2214 6-4 304 Auburn #> 2215 6-4 280 William &amp; Mary #> 2216 6-4 315 Arizona State #> 2217 6-1 307 Illinois #> 2218 6-3 311 Louisiana State #> 2219 6-3 300 Maryland #> 2220 6-0 239 Northwestern #> 2221 6-3 255 Tennessee #> 2222 6-1 222 Arizona #> 2223 6-3 230 Marshall #> 2224 6-1 204 Florida State #> 2225 6-1 196 Michigan #> 2226 6-2 235 Missouri #> 2227 6-3 259 Alabama #> 2228 6-1 220 Miami #> 2229 6-2 220 Auburn #> 2230 6-0 248 Wyoming #> 2231 6-2 250 Michigan #> 2232 6-3 250 Brigham Young #> 2233 6-1 236 Michigan #> 2234 6-2 242 Ohio State #> 2235 6-2 252 Brigham Young #> 2236 6-2 255 Purdue #> 2237 6-3 260 Alabama #> 2238 6-3 247 Oklahoma #> 2239 6-3 261 Grand Valley State #> 2240 6-3 245 Navy #> 2241 6-4 245 Carnegie Mellon #> 2242 6-1 240 Nevada #> 2243 6-3 327 Wisconsin #> 2244 6-6 311 North Carolina #> 2245 6-5 320 UCLA #> 2246 6-2 291 Memphis #> 2247 6-5 290 Wake Forest #> 2248 6-2 300 Iowa #> 2249 6-1 310 Georgia Tech #> 2250 6-5 310 West Virginia #> 2251 6-6 305 Cincinnati #> 2252 6-3 350 Michigan #> 2253 6-4 305 Illinois #> 2254 6-2 310 Georgia #> 2255 6-6 305 Louisiana State #> 2256 6-8 380 Florida #> 2257 6-4 310 Colorado #> 2258 6-2 205 Stanford #> 2259 6-5 245 Auburn #> 2260 6-2 215 Michigan State #> 2261 6-3 214 Alabama #> 2262 6-3 214 Auburn #> 2263 5-10 205 Wisconsin #> 2264 5-11 215 Georgia #> 2265 6-0 220 Stanford #> 2266 5-11 215 Alabama #> 2267 6-0 229 Oklahoma #> 2268 5-11 220 Mississippi #> 2269 5-6 185 Arizona #> 2270 5-11 215 Oregon #> 2271 6-5 250 Arkansas #> 2272 6-6 248 Wisconsin #> 2273 6-4 251 Virginia Tech #> 2274 6-3 248 Florida International #> 2275 6-6 255 Illinois #> 2276 6-3 260 UCLA #> 2277 6-5 250 San Diego State #> 2278 6-3 260 Boston College #> 2279 6-3 200 Mississippi #> 2280 6-1 203 Eastern Washington #> 2281 6-2 180 UCF #> 2282 6-2 200 North Carolina State #> 2283 6-0 190 Mississippi State #> 2284 5-10 190 Washington #> 2285 6-1 199 Ohio State #> 2286 5-11 185 Colorado #> 2287 6-0 190 Bemidji State #> 2288 6-1 214 Southeast Missouri #> 2289 6-0 198 Southern California #> 2290 6-0 205 UCLA #> 2291 6-4 225 Arizona State #> 2292 6-5 311 Louisiana State #> 2293 5-11 191 Florida State #> 2294 6-1 192 Stanford #> 2295 6-2 180 North Carolina Central #> 2296 5-9 180 Truman State #> 2297 5-9 190 Penn State #> 2298 5-10 211 Florida #> 2299 5-11 185 Tennessee #> 2300 6-0 192 Ohio State #> 2301 6-1 180 Colorado #> 2302 6-0 219 Stanford #> 2303 6-0 196 Florida State #> 2304 6-0 202 Mississippi State #> 2305 6-0 195 Wisconsin #> 2306 6-1 212 Saginaw Valley State #> 2307 6-0 204 Nebraska #> 2308 5-10 207 Louisiana-Lafayette #> 2309 6-1 195 Utah #> 2310 6-1 180 West Virginia #> 2311 5-11 196 Notre Dame #> 2312 5-11 208 Florida #> 2313 6-3 205 Virginia Tech #> 2314 5-11 201 Wisconsin #> 2315 6-6 286 Alabama A&amp;M #> 2316 6-6 275 West Virginia #> 2317 6-6 270 Houston #> 2318 6-4 287 California #> 2319 6-3 245 Tulane #> 2320 6-1 298 Louisiana-Lafayette #> 2321 6-6 265 Texas-San Antonio #> 2322 6-5 261 Wyoming #> 2323 6-7 289 Villanova #> 2324 6-3 290 Texas #> 2325 6-3 300 Tennessee #> 2326 6-5 288 North Carolina #> 2327 6-3 302 Michigan #> 2328 6-4 283 Miami #> 2329 6-3 305 Clemson #> 2330 6-3 300 Washington #> 2331 6-4 300 Manitoba, Can. #> 2332 6-0 232 Northern Illinois #> 2333 6-2 255 West Georgia #> 2334 6-4 300 Tulane #> 2335 6-3 221 Southern Oregon #> 2336 5-10 175 Georgia #> 2337 5-11 184 Georgia State #> 2338 6-1 185 Nebraska #> 2339 6-1 225 Memphis #> 2340 6-2 245 Maryland #> 2341 6-3 220 Utah #> 2342 6-2 248 Arkansas State #> 2343 6-3 235 Wisconsin #> 2344 6-3 253 Elon #> 2345 6-3 242 Ohio State #> 2346 6-3 240 Idaho #> 2347 6-1 227 Louisiana State #> 2348 6-1 225 Michigan State #> 2349 6-1 235 Ohio #> 2350 6-5 242 Brigham Young #> 2351 6-3 255 Southern Methodist #> 2352 6-3 240 Utah #> 2353 6-5 310 North Carolina State #> 2354 6-4 309 Mississippi #> 2355 6-4 335 Villanova #> 2356 6-5 318 Oregon #> 2357 6-3 345 West Virginia #> 2358 6-7 316 Stanford #> 2359 6-5 320 Florida State #> 2360 6-3 319 Michigan #> 2361 6-4 315 Texas A&amp;M #> 2362 6-5 305 UCLA #> 2363 6-6 295 Carroll (MT) #> 2364 6-5 316 Louisiana Tech #> 2365 6-7 321 Kentucky #> 2366 6-5 295 None #> 2367 6-6 305 Stanford #> 2368 6-5 310 North Carolina #> 2369 6-6 314 Wisconsin #> 2370 6-5 304 Arkansas-Pine Bluff #> 2371 6-2 196 Penn State #> 2372 6-3 202 Syracuse #> 2373 6-4 231 Florida State #> 2374 6-0 206 Notre Dame #> 2375 6-2 221 Brigham Young #> 2376 6-3 220 Northwestern #> 2377 6-0 216 Stanford #> 2378 5-11 225 Notre Dame #> 2379 5-8 206 Florida State #> 2380 5-10 215 Tennessee #> 2381 5-10 195 Kennesaw State #> 2382 6-3 230 Central Florida #> 2383 6-1 223 Washington #> 2384 6-0 204 Ohio State #> 2385 6-5 235 Louisiana-Monroe #> 2386 6-6 253 Dayton #> 2387 6-6 261 Ohio State #> 2388 6-7 272 Iowa State #> 2389 6-5 255 Tennessee #> 2390 6-6 255 Incarnate Word #> 2391 6-4 240 Air Force #> 2392 6-3 244 Ferris State #> 2393 6-3 212 Ohio State #> 2394 5-11 190 Washington State #> 2395 6-0 195 Maine #> 2396 6-1 183 Tennessee #> 2397 6-2 210 Central Florida #> 2398 5-10 170 Tulane #> 2399 5-6 170 Assumption #> 2400 6-2 210 UCLA #> 2401 6-0 175 West Georgia #> 2402 6-3 216 West Virginia #> 2403 6-4 225 Texas #> 2404 6-1 210 Monmouth, N.J. #> 2405 5-7 168 Northern Illinois #> 2406 6-4 231 Oregon #> 2407 6-2 204 Tennessee #> 2408 6-1 215 South Alabama #> 2409 6-0 205 Ferris State #> 2410 6-4 208 Florida #> 2411 <NA> NA Florida State #> 2412 6-5 307 Nebraska #> 2413 6-0 200 Texas A&M #> 2414 6-0 192 Oklahoma State #> 2415 5-10 187 Albany, N.Y. #> 2416 6-1 177 Western Michigan #> 2417 6-2 193 Florida #> 2418 6-1 193 UCF #> 2419 5-10 198 UCLA #> 2420 6-0 196 Iowa #> 2421 6-1 212 Samford #> 2422 6-0 203 Nebraska #> 2423 5-11 180 Duke #> 2424 6-1 200 Auburn #> 2425 5-11 213 Michigan #> 2426 6-0 200 Mississippi State #> 2427 5-11 193 Notre Dame #> 2428 6-3 200 North Alabama #> 2429 5-11 190 Georgia Tech #> 2430 6-2 190 Southern Illinois #> 2431 6-0 190 Northwestern #> 2432 5-11 195 Rutgers #> 2433 5-10 185 Western Carolina #> 2434 5-11 185 Southern California #> 2435 6-1 197 Alabama #> 2436 6-3 285 Mississippi #> 2437 6-5 302 Southern California #> 2438 6-3 258 Northwestern #> 2439 6-3 270 Georgia Southern #> 2440 6-5 270 Dartmouth #> 2441 6-3 248 Eastern Michigan #> 2442 6-3 240 Georgia #> 2443 6-3 311 North Carolina State #> 2444 6-4 314 Penn State #> 2445 6-3 296 Boise State #> 2446 6-4 342 Clemson #> 2447 6-2 345 Washington #> 2448 6-1 321 Washington #> 2449 6-3 291 Michigan #> 2450 6-2 235 Texas A&amp;M #> 2451 6-0 206 Clemson #> 2452 6-2 202 Florida State #> 2453 6-2 253 Alabama #> 2454 6-7 255 Northern Iowa #> 2455 6-5 233 Penn State #> 2456 6-5 250 Georgia #> 2457 6-2 255 Miami #> 2458 6-3 235 Georgia #> 2459 6-2 252 Alabama #> 2460 6-4 245 Minnesota #> 2461 6-4 250 Old Dominion #> 2462 6-2 252 California #> 2463 6-3 230 Missouri #> 2464 6-2 237 Stanford #> 2465 6-0 223 Miami #> 2466 6-1 230 Sacramento State #> 2467 6-1 230 South Carolina #> 2468 6-0 233 Alabama #> 2469 6-1 250 Iowa #> 2470 6-5 315 Auburn #> 2471 6-3 315 Wake Forest #> 2472 6-2 327 Texas-El Paso #> 2473 6-6 314 Fresno State #> 2474 6-3 323 North Carolina State #> 2475 6-6 312 Baylor #> 2476 6-4 317 Oregon #> 2477 6-4 302 Rhode Island #> 2478 6-5 321 Florida #> 2479 6-5 321 Tennessee #> 2480 6-4 300 Florida #> 2481 6-7 303 Connecticut #> 2482 6-8 320 Missouri #> 2483 6-7 302 Utah #> 2484 6-5 326 Georgia #> 2485 6-8 325 Colorado #> 2486 6-5 258 Minnesota #> 2487 6-4 221 Syracuse #> 2488 6-5 220 Duke #> 2489 6-3 212 Michigan State #> 2490 6-7 225 North Carolina State #> 2491 6-4 222 Northwestern #> 2492 6-4 220 Monmouth, Ill. #> 2493 5-11 219 Utah #> 2494 5-11 220 Temple #> 2495 5-10 212 Ohio State #> 2496 6-2 234 Idaho #> 2497 5-11 197 No College #> 2498 5-9 192 Virginia #> 2499 6-0 230 Troy #> 2500 6-1 218 Arizona #> 2501 5-11 233 Penn State #> 2502 5-10 224 Florida Atlantic #> 2503 5-11 217 Virginia-Lynchburg #> 2504 5-10 220 Wisconsin #> 2505 6-10 302 Minnesota #> 2506 6-3 293 Louisville #> 2507 6-6 265 Notre Dame #> 2508 6-3 240 Mississippi #> 2509 6-5 260 Pittsburgh #> 2510 6-4 255 Ohio State #> 2511 6-5 252 Stanford #> 2512 6-4 250 Iowa #> 2513 6-7 220 Simon Fraser #> 2514 6-8 268 Stanford #> 2515 6-5 235 Mississippi State #> 2516 6-4 240 Louisville #> 2517 5-11 186 Louisiana State #> 2518 5-10 200 McKendree #> 2519 6-1 210 Fresno State #> 2520 6-0 193 Florida #> 2521 6-3 204 Troy #> 2522 6-1 180 Chattanooga #> 2523 6-2 215 Ohio State #> 2524 6-1 217 Jacksonville #> 2525 6-1 190 Auburn #> 2526 6-0 190 Wake Forest #> 2527 6-3 210 West Virginia #> 2528 6-1 195 Washington #> 2529 6-3 205 Mississippi #> 2530 6-2 194 Massachusetts #> 2531 5-10 201 Oklahoma #> 2532 5-11 194 Washington #> 2533 6-4 213 Northern Illinois #> 2534 5-11 185 Baylor #> 2535 6-5 245 Florida State #> 2536 6-4 307 None #> 2537 6-1 190 Air Force #> 2538 6-1 201 Virginia #> 2539 6-1 207 None #> 2540 6-0 200 Pittsburgh #> 2541 5-10 190 Duke #> 2542 5-11 175 Kentucky #> 2543 5-10 190 Utah #> 2544 6-3 215 Nebraska #> 2545 5-11 196 Washburn #> 2546 6-1 200 Illinois #> 2547 6-1 198 Rutgers #> 2548 5-8 185 Florida State #> 2549 5-11 199 Florida Tech #> 2550 6-0 198 Florida Atlantic #> 2551 6-0 207 Florida #> 2552 6-0 192 Notre Dame #> 2553 6-1 200 California #> 2554 6-1 207 Rutgers #> 2555 5-11 193 Northern Iowa #> 2556 6-0 193 Oregon State #> 2557 6-2 265 Auburn #> 2558 6-3 264 Florida #> 2559 6-3 255 Memphis #> 2560 6-6 275 Nevada-Las Vegas #> 2561 6-4 245 Oregon State #> 2562 6-3 271 Shepherd #> 2563 6-3 279 Marshall #> 2564 6-4 270 Appalachian State #> 2565 6-4 318 Connecticut #> 2566 6-4 277 Tennessee #> 2567 6-1 296 Rutgers #> 2568 6-4 288 Stephen F. Austin #> 2569 6-1 295 Tulane #> 2570 6-3 303 Alabama #> 2571 6-3 317 Arkansas #> 2572 6-2 305 Louisville #> 2573 6-4 315 Fort Hays State #> 2574 5-9 195 Oklahoma State #> 2575 6-1 195 SMU #> 2576 6-0 230 Delaware #> 2577 6-4 220 Florida State #> 2578 6-2 250 Alabama #> 2579 6-2 230 Illinois #> 2580 6-1 235 Minnesota #> 2581 6-1 235 Citadel #> 2582 6-1 245 Florida #> 2583 6-6 250 Southeast Missouri #> 2584 6-2 225 Illinois #> 2585 6-2 220 Rutgers #> 2586 6-2 220 Auburn #> 2587 6-3 245 Newberry #> 2588 6-2 246 Duke #> 2589 6-2 250 Sacramento State #> 2590 6-4 315 USC #> 2591 6-3 305 Pennsylvania #> 2592 6-4 307 Chattanooga #> 2593 6-5 0 Air Force #> 2594 6-7 305 Purdue #> 2595 6-4 310 Indiana #> 2596 6-4 306 Missouri #> 2597 6-6 305 Nebraska #> 2598 6-8 305 UCLA #> 2599 6-4 310 Hawaii #> 2600 6-5 322 New Mexico #> 2601 6-5 305 Holy Cross #> 2602 6-6 330 Virginia #> 2603 6-3 320 Grambling State #> 2604 6-3 306 Akron #> 2605 6-5 310 BYU #> 2606 6-5 294 North Carolina-Charlotte #> 2607 6-5 322 Western Kentucky #> 2608 6-7 355 Louisville #> 2609 6-3 308 Southern California #> 2610 5-11 186 Notre Dame #> 2611 5-11 190 Texas A&amp;M #> 2612 6-2 214 Troy #> 2613 6-1 219 San Jose State #> 2614 6-3 219 San Diego #> 2615 6-4 225 Western Kentucky #> 2616 6-4 213 Florida International #> 2617 6-3 210 Brigham Young #> 2618 5-10 210 Maryland #> 2619 5-10 199 North Carolina #> 2620 5-11 220 Florida #> 2621 5-10 212 Appalachian State #> 2622 5-8 202 Rice #> 2623 6-1 210 Indiana #> 2624 6-2 225 Notre Dame #> 2625 6-4 252 Miami #> 2626 6-6 250 Rutgers #> 2627 6-3 267 West Virginia #> 2628 6-5 247 James Madison #> 2629 6-6 255 Connecticut #> 2630 6-4 240 Ole Miss #> 2631 6-3 209 Western Michigan #> 2632 5-9 177 Duke #> 2633 6-1 194 Kentucky Wesleyan #> 2634 5-9 190 Miami #> 2635 6-3 205 Tennessee #> 2636 6-1 201 Austin Peay #> 2637 6-2 206 Texas Christian #> 2638 6-1 195 Boston College #> 2639 6-3 208 Baylor #> 2640 5-9 184 Ole Miss #> 2641 6-1 195 Morgan State #> 2642 6-5 220 Georgia #> 2643 6-3 202 Limestone #> 2644 6-0 182 Louisiana Tech #> 2645 6-6 325 Alabama #> 2646 6-4 295 Western Michigan #> 2647 6-3 295 Cincinnati #> 2648 6-4 311 Indiana #> 2649 6-2 201 Louisiana-Lafayette #> 2650 5-11 181 Michigan #> 2651 6-0 187 None #> 2652 6-0 190 Mississippi State #> 2653 5-11 175 Kansas #> 2654 5-10 175 Michigan State #> 2655 5-11 195 Texas Tech #> 2656 6-0 185 Southern California #> 2657 5-11 194 Oregon State #> 2658 5-10 195 Southern Illinois #> 2659 5-9 184 Pittsburgh #> 2660 6-0 191 Wyoming #> 2661 6-1 202 Virginia #> 2662 5-10 195 Virginia #> 2663 5-11 194 UCLA #> 2664 6-4 224 Connecticut #> 2665 6-0 205 Army #> 2666 5-11 208 Clemson #> 2667 5-10 190 Baylor #> 2668 6-2 230 LSU #> 2669 5-11 202 Connecticut #> 2670 5-10 185 Auburn #> 2671 6-0 250 Memphis #> 2672 6-5 253 Florida State #> 2673 6-2 265 Michigan #> 2674 6-2 260 Coastal Carolina #> 2675 6-2 261 Iowa State #> 2676 6-7 275 Iowa State #> 2677 6-4 265 Purdue #> 2678 6-3 255 Tulane #> 2679 6-3 259 Central Michigan #> 2680 6-3 259 Tennessee #> 2681 6-4 303 Michigan State #> 2682 6-4 310 Mississippi State #> 2683 6-2 305 South Carolina State #> 2684 6-2 310 Oklahoma #> 2685 6-3 305 USC #> 2686 6-3 305 Texas #> 2687 6-0 299 North Carolina State #> 2688 6-4 278 Louisiana Tech #> 2689 5-9 167 Memphis #> 2690 6-1 240 Wisconsin #> 2691 6-1 230 Temple #> 2692 5-11 221 Akron #> 2693 6-3 240 Montana #> 2694 6-1 220 Florida Atlantic #> 2695 6-2 242 Montana State #> 2696 6-2 225 Colorado #> 2697 6-1 230 Cincinnati #> 2698 6-2 249 Old Dominion #> 2699 6-5 335 Miami, O. #> 2700 6-4 334 Stanford #> 2701 6-5 315 Buffalo #> 2702 6-4 305 Weber State #> 2703 6-4 303 Oregon State #> 2704 6-7 332 Texas Christian #> 2705 6-4 315 Alabama #> 2706 6-6 317 Oklahoma #> 2707 6-5 311 Texas Tech #> 2708 6-8 344 No College #> 2709 6-6 315 Arizona State #> 2710 6-6 291 Army #> 2711 6-5 296 Auburn #> 2712 6-5 315 Washington State #> 2713 6-2 212 Auburn #> 2714 6-4 230 Georgia #> 2715 6-6 245 Delaware #> 2716 6-1 210 Southern Mississippi #> 2717 6-2 218 Oklahoma #> 2718 5-10 202 Wyoming #> 2719 5-11 212 Auburn #> 2720 6-0 224 Indiana #> 2721 5-10 215 Georgia #> 2722 5-11 191 Memphis #> 2723 5-11 211 Penn State #> 2724 5-6 203 Louisiana Tech #> 2725 5-9 193 New Mexico State #> 2726 6-5 250 Stanford #> 2727 6-6 250 North Carolina State #> 2728 6-4 260 Nebraska #> 2729 6-7 249 Buffalo #> 2730 6-5 246 Tennessee #> 2731 6-5 256 South Dakota State #> 2732 6-5 227 Iowa State #> 2733 6-4 257 California #> 2734 5-11 195 Boston College #> 2735 5-11 190 Houston #> 2736 6-2 215 Arizona #> 2737 6-2 215 Old Dominion #> 2738 5-11 195 Texas Christian #> 2739 5-8 191 Louisiana-Monroe #> 2740 6-2 190 Southern Mississippi #> 2741 6-2 218 Texas A&M #> 2742 6-2 225 Stanford #> 2743 6-2 172 Boise State #> 2744 6-4 200 Rutgers #> 2745 6-1 175 Alabama #> 2746 6-4 218 Florida #> 2747 5-11 190 Massachusetts #> 2748 6-4 315 Illinois #> 2749 6-2 295 Alabama #> 2750 6-0 191 Missouri #> 2751 6-2 192 Michigan State #> 2752 5-11 188 Tennessee #> 2753 5-11 195 Florida #> 2754 5-11 190 Michigan State #> 2755 6-0 175 Duke #> 2756 6-5 270 Mississippi State #> 2757 6-0 189 Oklahoma #> 2758 6-1 217 Virginia Tech #> 2759 5-11 194 Pittsburgh #> 2760 5-9 187 Penn State #> 2761 6-2 210 Florida #> 2762 6-0 201 Louisiana State #> 2763 5-11 215 Maryland #> 2764 6-1 207 Alabama #> 2765 5-10 190 Memphis #> 2766 6-2 185 Florida Atlantic #> 2767 6-2 217 Valdosta State #> 2768 6-4 245 UCLA #> 2769 6-4 289 Kentucky #> 2770 6-4 280 Oregon #> 2771 <NA> 289 Georgia #> 2772 6-3 295 Alabama #> 2773 6-3 245 Miami, O. #> 2774 6-7 293 Wisconsin #> 2775 6-3 304 California #> 2776 6-3 295 Bucknell #> 2777 6-6 303 Notre Dame #> 2778 6-9 310 Kentucky #> 2779 6-5 295 Ohio State #> 2780 6-2 320 Nebraska #> 2781 6-3 302 Florida State #> 2782 6-2 234 Wisconsin #> 2783 6-2 185 Rice #> 2784 5-8 205 Miami, O. #> 2785 6-1 220 Oklahoma State #> 2786 6-2 222 Southern Utah #> 2787 6-1 245 Wisconsin #> 2788 6-2 247 South Carolina #> 2789 6-2 240 Texas A&M #> 2790 6-1 229 Western Michigan #> 2791 6-3 244 Kentucky #> 2792 6-4 245 Miami (FL) #> 2793 6-2 225 Massachusetts #> 2794 6-0 227 Indiana #> 2795 5-11 233 Michigan #> 2796 6-4 252 Wisconsin #> 2797 6-3 255 Notre Dame #> 2798 6-4 242 North Carolina-Charlotte #> 2799 6-2 215 Penn State #> 2800 6-0 230 Akron #> 2801 6-1 228 Duquesne #> 2802 6-4 245 Portland State #> 2803 6-5 300 Michigan #> 2804 6-3 315 Louisiana State #> 2805 6-7 310 Ohio State #> 2806 6-4 321 Louisiana-Lafayette #> 2807 6-4 318 Kansas State #> 2808 6-6 280 None #> 2809 6-6 320 Notre Dame #> 2810 6-6 320 Western Michigan #> 2811 6-4 292 Texas Christian #> 2812 6-5 326 Old Dominion #> 2813 6-8 358 Southern California #> 2814 6-4 297 Fordham #> 2815 6-5 315 Texas A&M #> 2816 6-5 318 Florida #> 2817 6-7 310 Tulane #> 2818 6-0 200 Virginia Tech #> 2819 6-0 255 Georgia Tech #> 2820 6-5 195 Eastern Kentucky #> 2821 6-3 216 Tennessee #> 2822 6-5 240 Miami, O. #> 2823 6-3 230 Slippery Rock #> 2824 6-5 235 Oklahoma State #> 2825 6-4 230 Ohio State #> 2826 6-3 200 Clemson #> 2827 6-0 225 North Carolina State #> 2828 5-10 233 West Virginia #> 2829 5-10 190 Monmouth, N.J. #> 2830 5-9 179 Oregon #> 2831 5-9 198 Maryland #> 2832 5-10 223 Kentucky #> 2833 6-2 223 Maryland #> 2834 6-2 230 Arizona State #> 2835 6-2 230 Alabama #> 2836 6-6 298 North Dakota State #> 2837 6-4 253 North Carolina #> 2838 6-4 245 Ohio State #> 2839 6-5 260 Penn State #> 2840 6-4 250 Youngstown State #> 2841 6-8 265 Michigan #> 2842 6-4 245 Utah State #> 2843 6-4 255 Tulane #> 2844 5-11 175 Eastern Michigan #> 2845 6-4 227 Notre Dame #> 2846 5-10 181 Toledo #> 2847 6-2 210 Buffalo #> 2848 6-2 190 Hawaii #> 2849 6-3 182 Kent State #> 2850 5-11 213 Oklahoma State #> 2851 6-3 210 Michigan State #> 2852 6-0 201 Georgia #> 2853 5-9 190 Clemson #> 2854 6-1 215 Southern California #> 2855 6-3 305 Oklahoma State #> 2856 6-3 200 Southern Illinois #> 2857 6-2 195 Colorado #> 2858 6-1 192 Lindenwood #> 2859 6-4 196 Troy #> 2860 6-1 200 Stony Brook #> 2861 5-9 188 Kansas State #> 2862 5-11 196 Arizona State #> 2863 6-3 203 Oklahoma State #> 2864 5-10 186 Oklahoma #> 2865 6-2 195 Utah #> 2866 6-2 190 Washington #> 2867 5-9 201 Oregon #> 2868 6-0 208 Arizona State #> 2869 6-4 265 Missouri #> 2870 6-3 279 Troy #> 2871 6-3 253 Tennessee #> 2872 6-4 260 Syracuse #> 2873 6-4 295 Texas Tech #> 2874 6-1 229 Albany, N.Y. #> 2875 6-4 279 Southern California #> 2876 6-6 285 Florida #> 2877 6-2 291 Texas Christian #> 2878 6-3 265 Idaho #> 2879 6-2 270 Texas Tech #> 2880 6-4 330 Louisiana State #> 2881 6-2 285 Rice #> 2882 6-3 366 Michigan #> 2883 6-3 295 Iowa #> 2884 6-1 290 Virginia Tech #> 2885 6-4 296 Mississippi #> 2886 5-11 310 Texas #> 2887 6-1 250 Central Michigan #> 2888 6-3 332 Louisiana State #> 2889 6-2 323 Alabama #> 2890 6-6 327 Texas A&M #> 2891 6-5 320 Baylor #> 2892 5-10 190 Marist #> 2893 6-0 230 Washington #> 2894 6-1 245 Texas Tech #> 2895 6-2 237 Utah #> 2896 6-0 225 Syracuse #> 2897 0-0 0 <NA> #> 2898 6-0 242 Utah State #> 2899 6-1 245 Army #> 2900 6-2 238 Louisiana State #> 2901 6-3 252 Alabama #> 2902 6-2 244 Colorado #> 2903 6-1 241 Central Florida #> 2904 <NA> 230 Memphis #> 2905 6-3 253 Harvard #> 2906 6-3 336 Mississippi State #> 2907 6-4 322 Wake Forest #> 2908 6-6 320 Louisiana State #> 2909 6-4 339 Southern California #> 2910 6-3 295 Montreal (CAN) #> 2911 6-4 293 Ohio State #> 2912 6-9 312 Florida #> 2913 6-8 335 Mississippi State #> 2914 6-5 310 Texas A&amp;M #> 2915 6-4 315 Virginia Tech #> 2916 6-5 324 South Carolina #> 2917 6-5 310 Louisville #> 2918 6-6 316 California #> 2919 6-2 208 Texas #> 2920 6-3 214 Florida International #> 2921 5-11 209 West Virginia #> 2922 6-3 221 West Virginia #> 2923 6-6 231 Oregon State #> 2924 5-11 215 Wisconsin #> 2925 5-9 192 Oklahoma #> 2926 5-11 220 San Diego State #> 2927 5-10 210 Arkansas #> 2928 5-10 205 Houston #> 2929 6-1 216 Stanford #> 2930 5-10 214 Miami #> 2931 5-9 208 Louisiana-Monroe #> 2932 5-10 202 Miami #> 2933 5-11 222 Oklahoma State #> 2934 6-1 213 Louisiana State #> 2935 6-0 200 Georgia Southern #> 2936 5-9 197 Texas #> 2937 6-5 320 Mississippi State #> 2938 6-3 240 South Alabama #> 2939 6-4 248 Maryland #> 2940 6-4 257 Tennessee #> 2941 6-7 251 Stanford #> 2942 6-7 244 Iowa State #> 2943 6-6 226 Fresno State #> 2944 6-4 267 Washington #> 2945 6-4 212 North Dakota #> 2946 6-0 204 Stanford #> 2947 6-3 207 Florida State #> 2948 5-10 170 Wright State #> 2949 5-10 182 Kansas State #> 2950 5-9 182 Hawaii #> 2951 5-11 188 Washington #> 2952 6-0 199 Florida #> 2953 5-11 195 North Carolina #> 2954 5-8 180 Georgia State #> 2955 6-0 180 Texas Southern #> 2956 6-4 230 Mississippi #> 2957 6-2 205 Toledo #> 2958 5-11 199 Texas A&M #> 2959 5-9 190 Western Michigan #> 2960 6-3 225 Baylor #> 2961 5-10 180 South Dakota State #> 2962 6-4 290 Colorado State #> 2963 6-4 311 California #> 2964 6-4 299 UCLA #> 2965 6-5 318 Nebraska #> 2966 6-0 193 Washburn #> 2967 5-11 192 Houston #> 2968 5-11 184 Tennessee #> 2969 5-11 202 Mississippi #> 2970 5-11 190 William &amp; Mary #> 2971 5-9 183 Pittsburgh #> 2972 5-10 188 Texas Christian #> 2973 5-10 192 Clemson #> 2974 5-11 200 Illinois State #> 2975 6-0 182 Michigan #> 2976 6-2 200 North Carolina State #> 2977 5-11 212 Oklahoma #> 2978 6-1 211 Alabama #> 2979 6-0 208 Illinois #> 2980 6-0 205 Alabama #> 2981 6-0 208 Florida #> 2982 6-2 200 Southern Mississippi #> 2983 6-1 215 Samford #> 2984 5-11 195 Oregon #> 2985 6-1 215 USC #> 2986 5-11 193 Northern Illinois #> 2987 6-0 205 Brigham Young #> 2988 6-4 260 Michigan State #> 2989 6-4 270 Kansas State #> 2990 6-2 334 Delaware #> 2991 6-7 292 Oregon #> 2992 6-4 275 Penn State #> 2993 6-2 250 San Diego State #> 2994 6-5 240 Louisiana State #> 2995 6-4 266 Ohio State #> 2996 6-3 245 Eastern Washington #> 2997 6-3 259 Wyoming #> 2998 6-3 280 Florida #> 2999 6-2 252 Auburn #> 3000 6-5 265 Texas A&amp;M #> 3001 6-6 310 South Carolina #> 3002 6-2 287 North Carolina State #> 3003 6-2 291 Michigan #> 3004 6-4 325 Nebraska #> 3005 6-0 321 Mississippi #> 3006 6-3 315 UCLA #> 3007 6-1 285 Penn State #> 3008 6-1 225 Fresno State #> 3009 6-1 240 Harvard #> 3010 6-0 190 Penn State #> 3011 6-3 239 Oregon #> 3012 6-2 209 Arizona #> 3013 6-3 236 Brigham Young #> 3014 6-0 229 Ohio State #> 3015 6-4 250 Indiana State #> 3016 6-2 228 Florida Atlantic #> 3017 5-11 240 California #> 3018 6-0 215 Kansas State #> 3019 6-0 230 Louisville #> 3020 6-0 225 Arkansas #> 3021 5-11 217 Stetson University #> 3022 6-4 245 Michigan State #> 3023 6-3 312 Duke #> 3024 6-5 325 Notre Dame #> 3025 6-5 290 British Columbia, Can. #> 3026 6-9 278 Brigham Young #> 3027 6-5 315 Western Michigan #> 3028 6-3 300 Washington #> 3029 6-6 313 South Dakota #> 3030 6-7 324 West Virginia #> 3031 6-8 341 <NA> #> 3032 6-5 260 San Diego State #> 3033 6-5 320 Oklahoma #> 3034 6-6 318 Vanderbilt #> 3035 6-8 315 Notre Dame #> 3036 6-5 310 Auburn #> 3037 6-2 220 Utah #> 3038 6-6 227 Indiana #> 3039 6-2 225 Eastern Illinois #> 3040 6-4 226 North Dakota State #> 3041 6-0 209 Alabama #> 3042 5-11 217 Louisiana-Lafayette #> 3043 6-0 194 North Texas #> 3044 6-0 210 Clemson #> 3045 5-10 197 Purdue #> 3046 6-1 215 Ohio State #> 3047 5-9 205 Baylor #> 3048 6-2 195 None #> 3049 6-2 243 Southern Illinois #> 3050 6-5 240 San Diego #> 3051 6-4 249 Arkansas #> 3052 6-3 223 Washington #> 3053 6-3 215 Vanderbilt #> 3054 6-5 245 Georgia #> 3055 6-4 250 Iowa #> 3056 6-4 227 Baylor #> 3057 6-1 212 Michigan State #> 3058 6-5 218 Arizona #> 3059 6-2 215 Rutgers #> 3060 5-11 214 South Carolina #> 3061 6-3 214 Tennessee #> 3062 5-10 175 Miami #> 3063 5-9 185 Middle Tennessee #> 3064 6-1 207 UAB #> 3065 6-0 200 Washington State #> 3066 6-1 206 Arizona State #> 3067 5-10 180 Eastern Washington #> 3068 6-0 196 Southern California #> 3069 6-0 175 Florida #> 3070 6-1 219 Vanderbilt #> 3071 6-4 305 Texas #> 3072 6-4 320 South Carolina #> 3073 6-4 319 Colorado State-Pueblo #> 3074 6-0 190 South Carolina State #> 3075 6-0 192 North Texas #> 3076 6-0 195 Central Michigan #> 3077 6-1 193 Miami #> 3078 6-2 195 Brigham Young #> 3079 6-2 190 Florida Atlantic #> 3080 6-2 204 Navy #> 3081 6-1 206 Auburn #> 3082 6-1 206 Auburn #> 3083 6-0 191 Duke #> 3084 6-0 197 Iowa State #> 3085 5-10 198 Pittsburgh #> 3086 6-0 210 Stony Brook #> 3087 6-0 215 Ohio #> 3088 6-0 190 Fresno State #> 3089 5-10 200 Stony Brook #> 3090 5-11 197 James Madison #> 3091 5-10 200 Kentucky #> 3092 5-9 205 Minnesota #> 3093 6-3 239 Southern Illinois #> 3094 6-4 270 Eastern Michigan #> 3095 6-5 262 Washington #> 3096 6-6 281 Michigan State #> 3097 6-3 295 Arkansas #> 3098 6-4 275 Minnesota #> 3099 6-3 275 Cincinnati #> 3100 6-3 290 Washington #> 3101 6-3 310 Troy #> 3102 6-4 313 Nebraska #> 3103 6-2 300 South Carolina #> 3104 6-4 347 Washington #> 3105 6-2 315 Nebraska #> 3106 6-2 307 Southern Mississippi #> 3107 6-2 222 Appalachian State #> 3108 5-10 204 Wisconsin #> 3109 6-5 318 Boise State #> 3110 6-4 310 Rice #> 3111 5-10 205 Miami (FL) #> 3112 6-2 218 South Carolina #> 3113 6-1 225 Houston #> 3114 6-0 243 Auburn #> 3115 6-0 246 Louisiana State #> 3116 6-1 211 Washington State #> 3117 6-7 272 Iowa #> 3118 6-2 250 Colorado State #> 3119 6-3 240 Wagner #> 3120 6-0 237 Louisiana State #> 3121 6-1 233 Nebraska #> 3122 6-3 220 Florida Atlantic #> 3123 6-0 231 Northwestern #> 3124 6-5 275 South Florida #> 3125 6-4 253 Prairie View #> 3126 6-3 260 North Texas #> 3127 6-1 240 Florida State #> 3128 6-2 245 Assumption #> 3129 6-1 235 Florida State #> 3130 6-4 320 South Carolina #> 3131 6-3 312 James Madison #> 3132 6-4 307 Hobart #> 3133 6-6 305 Humboldt State #> 3134 6-5 295 Utah State #> 3135 6-3 300 James Madison #> 3136 6-7 295 Wake Forest #> 3137 6-6 338 Penn State #> 3138 6-4 292 Northwestern State, La. #> 3139 6-6 306 James Madison #> 3140 6-9 330 Villanova #> 3141 6-5 322 Iowa #> 3142 6-6 315 Tennessee State #> 3143 6-5 300 Florida Atlantic #> 3144 66-1 330 Florida A&M #> 3145 6-4 295 Notre Dame #> 3146 6-5 240 Clemson #> 3147 6-0 209 Colorado State #> 3148 6-2 225 Michigan #> 3149 6-5 210 Tulane #> 3150 6-3 226 Michigan State #> 3151 6-4 235 Missouri #> 3152 6-4 225 Michigan #> 3153 6-5 240 Florida #> 3154 5-11 208 Southern California #> 3155 5-10 215 Vanderbilt #> 3156 6-0 205 Southern California #> 3157 5-9 205 North Carolina #> 3158 5-9 205 Jacksonville State #> 3159 6-0 228 Louisiana State #> 3160 6-1 225 Notre Dame #> 3161 5-11 195 North Carolina #> 3162 6-1 189 None #> 3163 6-0 199 Texas A&amp;M #> 3164 6-4 225 Southern California #> 3165 6-5 254 South Carolina #> 3166 6-6 250 Alabama #> 3167 6-5 239 Southern Arkansas #> 3168 6-5 245 Harvard #> 3169 6-6 265 Arizona #> 3170 6-6 258 Southeastern Oklahoma #> 3171 5-11 170 Washington #> 3172 5-9 183 Louisiana State #> 3173 6-1 209 Penn State #> 3174 6-4 205 Jacksonville State #> 3175 5-10 185 Central Michigan #> 3176 6-2 198 West Virginia #> 3177 6-0 181 Boise State #> 3178 6-0 186 Florida Atlantic #> 3179 6-4 211 Montana State #> 3180 6-2 205 Minnesota #> 3181 6-5 231 Texas A&amp;M #> 3182 5-9 174 North Texas #> 3183 5-11 174 Bowling Green #> 3184 6-3 215 Pennsylvania #> 3185 <NA> NA <NA> #> 3186 6-4 308 Vanderbilt #> 3187 6-3 300 Texas Christian #> 3188 6-3 308 Georgia #> 3189 6-1 305 Colorado #> 3190 6-3 270 Texas State #> 3191 6-0 189 Duke #> 3192 6-2 200 Iowa #> 3193 6-0 200 Louisiana State #> 3194 5-11 185 Oklahoma State #> 3195 5-10 190 North Alabama #> 3196 5-11 180 None #> 3197 6-1 209 Stanford #> 3198 6-0 200 Nebraska #> 3199 6-2 207 Virginia Tech #> 3200 5-10 191 Washington #> 3201 5-11 209 Notre Dame #> 3202 5-11 210 Iowa #> 3203 6-1 215 Miami #> 3204 6-0 186 Marshall #> 3205 6-0 204 Colorado #> 3206 5-9 193 Minnesota #> 3207 6-0 194 Georgia #> 3208 6-0 222 Virginia Tech #> 3209 6-1 209 Arizona #> 3210 6-0 198 Oregon #> 3211 6-2 216 Central Florida #> 3212 5-11 212 Middle Tennessee #> 3213 6-1 215 Kansas #> 3214 6-3 284 Nebraska #> 3215 6-5 285 Mississippi State #> 3216 6-3 255 Boston College #> 3217 6-3 315 Mississippi #> 3218 6-5 350 Alabama-Birmingham #> 3219 6-1 310 Florida Atlantic #> 3220 6-0 339 Alabama State #> 3221 6-4 340 Michigan State #> 3222 6-4 300 Mississippi State #> 3223 6-3 290 Florida International #> 3224 6-1 340 Texas A&amp;M #> 3225 6-5 280 Temple #> 3226 6-1 305 Oregon State #> 3227 6-3 291 North Carolina State #> 3228 6-0 244 LSU #> 3229 6-1 185 Ohio State #> 3230 6-5 265 Michigan #> 3231 6-4 280 Iowa #> 3232 6-3 225 Oregon #> 3233 5-10 182 California #> 3234 6-2 215 Missouri #> 3235 6-3 230 Ohio State #> 3236 6-1 192 Penn State #> 3237 6-3 250 Sam Houston State #> 3238 6-1 240 Cal Poly #> 3239 6-1 248 Toledo #> 3240 6-0 222 Akron #> 3241 6-5 270 Pittsburgh #> 3242 6-1 235 Georgia #> 3243 6-2 260 Ohio State #> 3244 6-4 269 Kentucky #> 3245 6-2 250 Boston College #> 3246 6-2 231 Penn State #> 3247 6-2 234 Alabama #> 3248 6-0 226 UCLA #> 3249 5-11 224 West Virginia #> 3250 6-3 229 Illinois State #> 3251 6-4 233 Tennessee #> 3252 6-5 325 Indiana #> 3253 6-4 295 Iowa #> 3254 6-3 302 Purdue #> 3255 6-7 310 BYU #> 3256 6-5 310 San Jose State #> 3257 6-3 316 North Carolina-Charlotte #> 3258 6-7 315 Nebraska #> 3259 6-7 309 Michigan #> 3260 6-6 299 North Dakota State #> 3261 6-6 300 Illinois #> 3262 6-5 315 Missouri #> 3263 6-5 315 Colorado State #> 3264 6-5 310 Appalachian State #> 3265 6-5 316 Toledo #> 3266 6-8 314 Texas Christian #> 3267 6-5 231 Cincinnati #> 3268 6-2 214 Toledo #> 3269 6-2 234 Southern California #> 3270 6-4 207 Texas A&amp;M #> 3271 6-4 233 Notre Dame #> 3272 6-1 213 Toledo #> 3273 5-11 200 Appalachian State #> 3274 5-9 205 Boise State #> 3275 6-0 233 Vanderbilt #> 3276 6-3 247 Alabama #> 3277 6-1 219 Wyoming #> 3278 5-8 208 Iowa #> 3279 6-7 310 Valdosta State #> 3280 6-4 255 Western Kentucky #> 3281 6-5 253 Tennessee #> 3282 6-4 260 Texas #> 3283 6-4 250 Kansas State #> 3284 6-2 246 Harvard #> 3285 6-5 255 Purdue #> 3286 6-4 255 Vanderbilt #> 3287 6-2 237 Western Michigan #> 3288 6-5 255 Arizona State #> 3289 6-5 244 Alabama #> 3290 5-9 175 Texas Tech #> 3291 6-1 196 Mississippi State #> 3292 5-9 175 James Madison #> 3293 6-3 220 Alabama #> 3294 6-0 184 Grambling #> 3295 6-0 226 Mississippi #> 3296 6-1 200 Vanderbilt #> 3297 6-1 207 Texas #> 3298 6-3 215 Indiana #> 3299 6-3 224 LSU #> 3300 6-3 196 Texas A&amp;M #> 3301 6-4 209 Arkansas #> 3302 6-2 210 Louisville #> 3303 6-0 195 Berry #> 3304 6-5 310 Kentucky #> 3305 6-4 312 Wyoming #> 3306 6-3 310 San Diego State #> 3307 6-3 302 North Carolina State #> 3308 6-4 325 Utah State #> 3309 5-11 192 Memphis #> 3310 6-0 191 Oklahoma #> 3311 5-11 182 Marshall #> 3312 6-0 181 Virginia Tech #> 3313 6-3 197 Louisiana-Lafayette #> 3314 5-11 188 Nevada-Las Vegas #> 3315 6-0 196 Houston #> 3316 5-9 190 Southern U. #> 3317 6-0 193 Cincinnati #> 3318 5-11 200 Notre Dame #> 3319 5-11 182 James Madison #> 3320 5-11 198 Virginia Tech #> 3321 6-0 191 Baylor #> 3322 6-0 218 Alabama #> 3323 6-0 200 Cincinnati #> 3324 6-0 203 Texas A&amp;M #> 3325 6-2 203 Arkansas #> 3326 6-3 205 Minnesota #> 3327 6-0 200 South Dakota State #> 3328 5-11 205 South Alabama #> 3329 6-1 206 Penn State #> 3330 6-4 275 Old Dominion #> 3331 6-3 265 North Carolina State #> 3332 6-6 262 Mississippi State #> 3333 6-4 247 Stanford #> 3334 6-4 248 Baylor #> 3335 6-3 255 Virginia Tech #> 3336 6-5 265 Ohio State #> 3337 6-2 307 Florida #> 3338 6-5 256 Oregon #> 3339 6-3 231 Penn State #> 3340 6-3 310 Temple #> 3341 6-4 292 No College #> 3342 6-3 320 Alabama #> 3343 6-3 279 Kansas #> 3344 6-3 308 Virginia Tech #> 3345 6-2 294 Auburn #> 3346 6-3 295 Auburn #> 3347 6-3 300 Alabama #> 3348 6-3 305 Illinois State #> 3349 6-3 306 None #> 3350 6-2 305 UCLA #> 3351 6-2 203 Florida State #> 3352 6-3 210 Marshall #> 3353 6-1 245 Florida #> 3354 6-2 245 Texas State #> 3355 6-4 232 Kentucky #> 3356 6-1 238 Utah #> 3357 6-1 228 Alabama #> 3358 6-3 235 California #> 3359 6-0 220 Michigan #> 3360 6-0 224 Oklahoma State #> 3361 6-2 236 Oregon #> 3362 6-1 240 North Carolina #> 3363 6-4 230 Michigan #> 3364 6-5 314 San Jose State #> 3365 6-3 316 Indiana #> 3366 6-6 300 Wisconsin #> 3367 6-5 315 Iowa #> 3368 6-7 309 Texas #> 3369 6-7 311 Florida State #> 3370 6-5 275 Temple #> 3371 6-3 305 Boise State #> 3372 6-4 295 Louisiana State #> 3373 6-6 329 Miami #> 3374 6-8 321 Purdue #> 3375 6-6 330 Florida #> 3376 6-8 328 Kansas State #> 3377 6-1 220 Oklahoma #> 3378 6-1 210 Old Dominion #> 3379 6-3 211 Houston #> 3380 6-5 230 Colorado #> 3381 6-2 228 Harvard #> 3382 5-10 220 Miami #> 3383 5-10 195 Arkansas State #> 3384 6-0 217 Arkansas #> 3385 5-11 225 Auburn #> 3386 6-2 221 Memphis #> 3387 5-9 195 Buffalo #> 3388 6-5 260 Loyola (NO) #> 3389 6-4 248 St. Thomas (MN) #> 3390 6-5 243 Texas A&amp;M #> 3391 6-5 262 Oregon #> 3392 6-6 250 Virginia Tech #> 3393 6-3 226 Texas Tech #> 3394 6-4 240 UCLA #> 3395 6-6 256 Boise State #> 3396 6-5 245 South Carolina State #> 3397 6-4 254 Texas #> 3398 6-4 220 Liberty #> 3399 5-8 190 Sacramento State #> 3400 6-1 190 Brigham Young #> 3401 6-0 182 None #> 3402 5-11 195 Ohio State #> 3403 6-0 210 Ohio State #> 3404 6-5 214 Alabama #> 3405 6-1 195 Colorado #> 3406 6-2 213 North Carolina State #> 3407 5-11 195 Clemson #> 3408 6-3 195 Missouri #> 3409 6-2 220 Temple #> 3410 5-10 176 Kansas #> 3411 6-1 195 North Carolina #> 3412 6-5 298 Florida #> 3413 6-2 305 Tennessee State #> 3414 6-6 300 Michigan #> 3415 6-4 301 Eastern Washington #> 3416 6-1 293 Temple #> 3417 6-2 300 Southern California #> 3418 6-3 299 Portland State #> 3419 6-5 310 Utah #> 3420 6-1 307 Penn State #> 3421 6-3 290 Auburn #> 3422 6-3 295 USC #> 3423 6-3 317 Kentucky #> 3424 6-4 304 Florida #> 3425 6-2 291 South Dakota State #> 3426 6-3 293 Youngstown State #> 3427 6-3 300 Delaware #> 3428 6-4 315 Wisconsin-Whitewater #> 3429 6-3 291 Tennessee #> 3430 6-4 301 USC #> 3431 6-4 300 South Carolina #> 3432 6-5 308 Washington State #> 3433 6-2 225 Vanderbilt #> 3434 6-3 291 Appalachian State #> 3435 6-3 297 Tulsa #> 3436 6-4 310 Notre Dame #> 3437 6-5 309 Vanderbilt #> 3438 6-0 224 None #> 3439 6-5 304 Arkansas #> 3440 6-1 314 None #> 3441 6-1 294 Purdue #> 3442 6-3 290 Mississippi State #> 3443 6-3 318 None #> 3444 6-1 292 Cincinnati #> 3445 6-3 300 Western Michigan #> 3446 6-4 307 Iowa #> 3447 6-3 301 Oregon #> 3448 6-3 345 Indiana (PA) #> 3449 6-4 306 North Dakota State #> 3450 6-3 318 California #> 3451 6-4 280 None #> 3452 6-2 290 Appalachian State #> 3453 6-0 290 BYU #> 3454 6-0 292 Texas A&M #> 3455 6-6 300 Virginia #> 3456 6-3 300 South Florida #> 3457 6-2 303 Buffalo #> 3458 6-4 290 None #> 3459 6-5 305 Oregon #> 3460 6-0 194 Florida State #> 3461 6-0 195 New Mexico State #> 3462 5-10 180 Utah #> 3463 6-2 197 Rutgers #> 3464 5-11 190 Western Kentucky #> 3465 5-11 199 Southern Mississippi #> 3466 5-9 185 Chattanooga #> 3467 6-2 207 Georgia #> 3468 5-10 199 Central Florida #> 3469 6-1 205 North Carolina State #> 3470 6-2 188 Mississippi #> 3471 5-10 175 Minnesota #> 3472 6-2 208 Wisconsin #> 3473 5-11 201 Villanova #> 3474 5-11 187 Clemson #> 3475 5-10 190 San Diego State #> 3476 5-11 207 Illinois #> 3477 5-9 198 Texas-El Paso #> 3478 5-9 170 Appalachian State #> 3479 6-3 195 Stanford #> 3480 5-11 190 Houston #> 3481 6-0 196 Stanford #> 3482 6-3 192 Furman #> 3483 6-1 200 Kansas #> 3484 6-0 200 Coastal Carolina #> 3485 5-10 173 Western Michigan #> 3486 5-10 186 Chattanooga #> 3487 6-0 192 Valdosta State #> 3488 5-11 170 None #> 3489 5-10 185 Southeastern (FL) #> 3490 6-2 212 Portland State #> 3491 6-0 197 Florida Intl #> 3492 5-11 205 Portland State #> 3493 5-11 188 None #> 3494 5-10 185 Shippensburg #> 3495 6-0 183 Tulane #> 3496 6-0 198 Washington #> 3497 6-2 192 Michigan State #> 3498 5-11 172 Akron #> 3499 5-10 191 Boise State #> 3500 6-0 210 Grand Valley State #> 3501 6-1 200 Delaware #> 3502 5-10 183 Oklahoma #> 3503 5-11 191 Penn State #> 3504 6-1 188 Michigan #> 3505 5-11 182 Northern Iowa #> 3506 6-1 175 - #> 3507 5-11 209 Arkansas #> 3508 5-11 187 Louisiana Tech #> 3509 6-1 195 Penn State #> 3510 6-0 195 Southern Methodist #> 3511 5-11 196 North Dakota State #> 3512 6-0 185 Jacksonville State #> 3513 5-11 192 Louisiana State #> 3514 6-0 205 West Virginia #> 3515 6-0 188 Belhaven #> 3516 6-0 199 Limestone #> 3517 5-11 190 None #> 3518 6-1 198 Clemson #> 3519 5-11 189 Florida International #> 3520 5-11 197 Auburn #> 3521 5-11 190 Arkansas #> 3522 6-2 204 None #> 3523 6-0 190 East Carolina #> 3524 5-10 197 Kansas State #> 3525 5-11 189 North Dakota State #> 3526 5-11 191 San Jose State #> 3527 5-11 192 Boise State #> 3528 6-2 206 Oregon State #> 3529 6-2 205 Texas #> 3530 6-1 188 Youngstown State #> 3531 5-10 202 Southern Methodist #> 3532 6-0 174 Toledo #> 3533 6-0 192 Mississippi State #> 3534 6-0 193 Marshall #> 3535 6-5 240 None #> 3536 6-1 180 Youngstown State #> 3537 5-10 200 Minnesota #> 3538 5-11 194 Georgia Tech #> 3539 6-1 184 Houston #> 3540 6-0 196 Oklahoma State #> 3541 6-1 183 Central Florida #> 3542 5-11 185 Florida State #> 3543 5-11 191 Mississippi State #> 3544 6-0 205 Rutgers #> 3545 6-0 191 South Florida #> 3546 6-0 205 Middle Tennessee #> 3547 5-11 194 Boise State #> 3548 6-2 210 Auburn #> 3549 6-2 185 Miami (FL) #> 3550 5-11 197 Baylor #> 3551 6-2 199 Louisiana State #> 3552 5-10 173 Georgia #> 3553 5-9 187 Iowa State #> 3554 5-11 192 South Florida #> 3555 5-10 187 Louisville #> 3556 5-9 182 None #> 3557 5-10 200 Ohio State #> 3558 5-10 195 Maryland #> 3559 6-0 198 Marshall #> 3560 5-10 194 Iowa State #> 3561 6-0 186 Oklahoma State #> 3562 5-11 185 South Carolina #> 3563 6-0 185 Pittsburgh #> 3564 5-9 170 None #> 3565 5-11 184 Southern California #> 3566 6-0 185 Coastal Carolina #> 3567 6-1 205 Calgary-Canada #> 3568 5-10 185 North Carolina A&amp;T #> 3569 5-11 178 Southern Utah #> 3570 6-1 209 Kansas #> 3571 6-1 198 BYU #> 3572 5-10 180 West Virginia #> 3573 6-1 203 Louisiana State #> 3574 6-1 204 San Jose State #> 3575 5-10 190 Delaware #> 3576 5-10 188 Oklahoma State #> 3577 6-1 200 Clemson #> 3578 5-11 200 Texas State #> 3579 6-2 200 St. Francis U #> 3580 5-9 195 South Carolina #> 3581 5-9 179 Indiana #> 3582 6-0 180 None #> 3583 6-0 190 Auburn #> 3584 5-11 175 Texas A&M #> 3585 6-2 210 Emporia State #> 3586 6-3 197 Kentucky #> 3587 5-9 180 None #> 3588 6-0 182 SE Louisiana #> 3589 6-2 190 Alabama #> 3590 5-10 200 Alabama #> 3591 6-0 195 San Jose State #> 3592 5-9 175 Arizona State #> 3593 5-10 176 Ole Miss #> 3594 5-11 192 Louisiana Tech #> 3595 5-11 195 Michigan #> 3596 6-2 185 Mississippi State #> 3597 5-10 189 South Florida #> 3598 6-3 218 Nebraska #> 3599 6-2 205 Tennessee State #> 3600 6-0 193 Rice #> 3601 6-0 189 Oklahoma State #> 3602 6-0 185 Wake Forest #> 3603 5-11 195 Miami, O. #> 3604 5-11 196 Texas #> 3605 6-0 195 Central Florida #> 3606 5-11 187 Tulane #> 3607 5-9 188 Louisiana-Monroe #> 3608 6-0 200 Massachusetts #> 3609 5-11 185 UCLA #> 3610 5-11 206 None #> 3611 5-8 181 None #> 3612 5-11 186 Tarleton State #> 3613 6-2 201 Miami #> 3614 6-1 200 Missouri Western #> 3615 5-11 184 Miami #> 3616 5-10 185 Boise State #> 3617 5-11 184 Wisconsin #> 3618 6-0 203 Southern Utah #> 3619 6-0 190 Southern Methodist #> 3620 5-10 196 None #> 3621 6-0 190 Florida Atlantic #> 3622 5-11 188 None #> 3623 5-10 187 UCLA #> 3624 5-10 187 None #> 3625 5-8 183 Lamar #> 3626 6-4 225 Boise State #> 3627 5-10 200 Clemson #> 3628 5-10 195 Central Michigan #> 3629 6-2 210 Florida Atlantic #> 3630 5-11 208 Oregon #> 3631 6-0 200 Tennessee #> 3632 5-11 185 UNLV #> 3633 6-1 205 North Carolina #> 3634 5-11 203 Northwestern #> 3635 6-1 175 Arizona State #> 3636 6-2 208 - #> 3637 6-2 215 Idaho #> 3638 6-0 190 Arkansas #> 3639 6-1 177 Louisiana State #> 3640 6-0 174 Southern Cal #> 3641 5-11 170 Clemson #> 3642 6-1 210 Rice #> 3643 5-10 205 South Carolina #> 3644 6-2 200 North Dakota #> 3645 6-1 209 Dickinson State (ND) #> 3646 6-4 300 Clemson #> 3647 6-5 280 Central Missouri #> 3648 6-3 246 Clemson #> 3649 6-6 275 Incarnate Word #> 3650 6-2 296 None #> 3651 6-5 295 Cortland State #> 3652 6-3 331 Alabama #> 3653 6-2 253 Montana #> 3654 6-3 270 Virginia #> 3655 6-2 213 Alabama A&M #> 3656 6-1 290 Delaware #> 3657 6-6 305 Hampton #> 3658 6-7 272 Georgia Tech #> 3659 6-2 325 None #> 3660 6-3 280 Southern California #> 3661 6-4 284 Northern Iowa #> 3662 6-5 275 None #> 3663 6-3 266 None #> 3664 6-2 308 LSU #> 3665 6-4 300 Connecticut #> 3666 6-3 278 Winston-Salem #> 3667 6-3 270 Oklahoma #> 3668 6-3 305 Missouri #> 3669 6-4 264 Towson #> 3670 6-4 265 Rutgers #> 3671 6-4 263 Notre Dame #> 3672 6-5 275 Purdue #> 3673 6-6 275 Concordia, St. Paul #> 3674 6-2 300 Michigan State #> 3675 6-3 301 BYU #> 3676 6-2 248 Akron #> 3677 6-3 237 Illinois #> 3678 6-2 241 Georgia Tech #> 3679 6-7 273 Iowa State #> 3680 6-5 305 Central Michigan #> 3681 6-2 322 Texas Tech #> 3682 6-4 267 Florida State #> 3683 6-3 258 Louisville #> 3684 6-4 265 Oklahoma #> 3685 6-4 275 Missouri #> 3686 6-5 297 Georgia Tech #> 3687 6-3 334 None #> 3688 6-4 252 East Carolina #> 3689 6-2 265 None #> 3690 6-7 295 North Carolina #> 3691 6-3 295 Utah #> 3692 6-4 286 Ohio #> 3693 6-5 275 Arkansas #> 3694 6-3 246 Washington #> 3695 6-3 299 Washington State #> 3696 6-2 304 Rutgers #> 3697 6-2 280 Utah #> 3698 6-3 250 Northern Arizona #> 3699 6-5 271 Central Arkansas #> 3700 6-3 308 Bowling Green #> 3701 6-4 277 Georgia #> 3702 6-3 249 James Madison #> 3703 6-2 253 Boston College #> 3704 6-5 236 California #> 3705 6-5 275 Brigham Young #> 3706 6-5 270 Stanford #> 3707 6-2 260 Missouri #> 3708 6-3 263 Penn State #> 3709 6-4 291 Richmond #> 3710 6-3 268 Pittsburgh #> 3711 6-2 260 Bethune-Cookman #> 3712 6-5 263 Tulane #> 3713 6-2 242 None #> 3714 6-1 275 Appalachian State #> 3715 6-5 265 Southern California #> 3716 6-2 262 Miami #> 3717 6-4 228 None #> 3718 6-2 282 Vanderbilt #> 3719 6-4 225 Boise State #> 3720 6-3 295 Pittsburgh #> 3721 6-3 263 Northern Iowa #> 3722 6-3 271 South Carolina #> 3723 6-3 294 Louisiana Tech #> 3724 6-4 280 Tennessee-Chattanooga #> 3725 6-3 260 Nevada #> 3726 6-4 308 None #> 3727 6-6 259 Stanford #> 3728 6-6 275 Oregon #> 3729 6-4 274 Texas A&M #> 3730 6-4 240 Notre Dame #> 3731 6-4 267 Marist #> 3732 6-2 297 Memphis #> 3733 6-3 261 Penn State #> 3734 6-4 315 Temple #> 3735 6-3 287 North Carolina-Charlotte #> 3736 6-4 265 Buffalo #> 3737 6-4 249 South Florida #> 3738 6-3 249 Kentucky #> 3739 6-3 265 Oklahoma State #> 3740 6-1 249 None #> 3741 6-4 301 Wyoming #> 3742 6-2 311 Nicholls State #> 3743 6-4 265 East Central #> 3744 6-3 251 Utah #> 3745 6-2 240 Colgate #> 3746 6-2 255 None #> 3747 6-3 266 Youngstown State #> 3748 6-3 238 Shepherd #> 3749 6-4 281 Oklahoma #> 3750 6-5 278 Miami (FL) #> 3751 6-5 261 Richmond #> 3752 6-3 260 Virginia #> 3753 6-4 251 Lane #> 3754 6-6 220 Alabama-Birmingham #> 3755 6-3 288 Miami #> 3756 6-4 290 Boise State #> 3757 6-4 277 None #> 3758 6-3 280 Iowa #> 3759 6-5 273 Mississippi #> 3760 6-3 259 Texas #> 3761 6-6 250 None #> 3762 6-3 258 Laval (Canada) #> 3763 6-3 246 None #> 3764 6-1 309 Florida #> 3765 6-4 295 None #> 3766 <NA> NA Brown #> 3767 6-5 256 Incarnate Word #> 3768 6-4 290 None #> 3769 6-2 310 Virginia Tech #> 3770 6-3 269 Mississippi State #> 3771 6-2 302 Mississippi State #> 3772 6-3 314 Syracuse #> 3773 6-5 302 Regina, Can. #> 3774 6-1 298 None #> 3775 6-3 288 Southern Mississippi #> 3776 6-4 285 UCLA #> 3777 6-3 346 Memphis #> 3778 6-3 277 Wake Forest #> 3779 6-1 273 LSU #> 3780 6-2 319 None #> 3781 6-2 278 Maryland #> 3782 6-3 310 Arizona #> 3783 6-3 330 Houston #> 3784 6-4 300 Oregon State #> 3785 6-2 345 Utah #> 3786 6-4 300 Boise State #> 3787 6-1 279 Auburn #> 3788 6-3 313 Louisiana State #> 3789 6-4 340 Oregon #> 3790 6-4 295 None #> 3791 6-2 287 Ohio State #> 3792 6-4 318 Georgia #> 3793 6-3 297 Georgia #> 3794 6-4 298 Notre Dame #> 3795 6-2 294 Virginia Tech #> 3796 6-4 305 Georgia #> 3797 6-1 303 Louisiana State #> 3798 6-2 328 North Carolina #> 3799 6-2 308 Ashland #> 3800 6-2 295 Florida State #> 3801 6-2 269 Tulane #> 3802 6-2 304 Garden City CC #> 3803 6-2 302 Bowling Green #> 3804 6-2 289 San Jose State #> 3805 6-1 300 Georgia #> 3806 6-4 293 Miami (FL) #> 3807 6-3 286 None #> 3808 6-3 305 Tulsa #> 3809 6-2 287 Iowa #> 3810 6-4 285 None #> 3811 6-0 305 Sam Houston State #> 3812 6-3 307 Missouri #> 3813 5-11 295 Alcorn State #> 3814 6-1 284 None #> 3815 6-4 335 None #> 3816 6-3 300 Miami #> 3817 6-3 312 Mississippi #> 3818 6-3 350 William Penn #> 3819 6-3 279 None #> 3820 6-2 300 Illinois #> 3821 6-5 330 Maryland #> 3822 6-3 305 None #> 3823 6-5 302 Buffalo #> 3824 6-5 283 Mars Hill #> 3825 6-2 284 Stanford #> 3826 6-3 325 Michigan State #> 3827 6-2 325 Iowa State #> 3828 6-3 315 Arizona State #> 3829 6-3 301 Ohio State #> 3830 6-4 318 None #> 3831 5-11 289 None #> 3832 6-6 318 Minnesota #> 3833 6-4 295 Southern Arkansas #> 3834 6-3 276 Utah State #> 3835 6-3 301 None #> 3836 6-5 295 Tusculum #> 3837 6-2 302 South Florida #> 3838 6-3 315 Purdue #> 3839 6-3 322 Texas-San Antonio #> 3840 6-4 300 Washington State #> 3841 6-3 341 Oklahoma #> 3842 6-3 280 Toledo #> 3843 6-1 331 Arkansas #> 3844 6-4 309 Mississippi State #> 3845 6-0 315 Arizona State #> 3846 6-7 364 Georgia Tech #> 3847 6-1 305 Southern California #> 3848 6-0 300 None #> 3849 6-2 304 Florida State #> 3850 6-5 313 Mississippi State #> 3851 6-2 220 Arkansas-Pine Bluff #> 3852 6-0 236 Oregon State #> 3853 6-1 245 San Jose State #> 3854 5-11 249 Michigan #> 3855 6-2 239 Kansas State #> 3856 6-0 250 BYU #> 3857 6-2 263 Michigan #> 3858 6-1 255 Auburn #> 3859 5-10 231 Virginia Tech #> 3860 5-11 254 Alabama #> 3861 6-0 233 UCLA #> 3862 6-3 255 Brown #> 3863 6-0 240 Pittsburgh #> 3864 6-1 235 Memphis #> 3865 6-4 266 Michigan #> 3866 6-1 233 Southern Methodist #> 3867 6-2 240 Tennessee #> 3868 6-1 246 Oklahoma #> 3869 6-2 248 None #> 3870 5-11 248 Kent State #> 3871 6-1 234 South Carolina #> 3872 6-1 241 West Virginia #> 3873 6-1 242 Auburn #> 3874 6-1 231 Mississippi State #> 3875 6-2 254 None #> 3876 6-2 240 None #> 3877 6-1 284 Washington #> 3878 5-10 195 Vanderbilt #> 3879 5-10 205 West Virginia #> 3880 6-0 185 Richmond #> 3881 6-0 182 Dartmouth #> 3882 6-2 203 California #> 3883 5-11 205 Wofford #> 3884 5-10 185 North Carolina #> 3885 6-4 212 Houston #> 3886 6-0 200 North Carolina State #> 3887 6-2 199 Michigan #> 3888 5-10 197 Auburn #> 3889 6-0 210 Utah State #> 3890 5-10 193 San Diego State #> 3891 5-11 195 Auburn #> 3892 6-0 198 Mississippi #> 3893 5-11 193 Georgia #> 3894 6-0 209 South Carolina #> 3895 6-0 205 Texas Christian #> 3896 6-3 209 Michigan #> 3897 6-0 190 West Alabama #> 3898 6-2 200 Georgia #> 3899 5-11 208 Ohio State #> 3900 5-11 196 Wyoming #> 3901 6-0 196 New Hampshire #> 3902 5-10 202 Texas #> 3903 6-0 204 Boston College #> 3904 5-11 205 Delaware #> 3905 5-11 205 Mississippi #> 3906 6-0 200 None #> 3907 5-11 190 Boston College #> 3908 5-11 214 South Carolina #> 3909 6-2 225 Troy #> 3910 5-10 208 TCU #> 3911 5-11 196 Kansas #> 3912 6-0 203 California, Pa. #> 3913 5-10 204 St. Francis (PA) #> 3914 6-2 207 Virginia #> 3915 5-10 197 Texas A&M #> 3916 5-11 206 Howard #> 3917 6-0 195 Wisconsin #> 3918 5-11 202 Norfolk State #> 3919 6-0 207 New Mexico #> 3920 6-1 213 Auburn #> 3921 6-1 210 Georgia Tech #> 3922 5-11 195 Utah #> 3923 6-2 199 Arkansas #> 3924 5-11 210 Florida #> 3925 6-1 221 Ohio #> 3926 6-3 225 Texas-San Antonio #> 3927 5-11 196 Oklahoma State #> 3928 6-0 201 Stony Brook #> 3929 6-1 215 Georgia #> 3930 6-0 196 Tennessee #> 3931 6-0 201 Appalachian State #> 3932 5-10 203 None #> 3933 6-1 200 Notre Dame #> 3934 6-2 204 None #> 3935 6-1 199 Fort Hays State #> 3936 6-0 190 None #> 3937 6-0 206 Newberry #> 3938 6-0 207 Vanderbilt #> 3939 6-1 195 Southern Cal #> 3940 6-0 210 North Carolina State #> 3941 6-1 205 Colorado #> 3942 6-4 345 Florida State #> 3943 6-3 318 Utah #> 3944 6-3 315 Iowa #> 3945 6-4 305 None #> 3946 6-3 317 Clemson #> 3947 6-6 310 Montana State #> 3948 6-4 307 Purdue #> 3949 6-3 300 LSU #> 3950 6-4 318 Illinois State #> 3951 6-4 299 Montana State #> 3952 6-5 310 Wake Forest #> 3953 6-5 309 Wayne State (MI) #> 3954 6-4 301 Oregon #> 3955 6-6 305 Missouri Western State #> 3956 6-5 325 Fresno State #> 3957 6-2 315 Southern Methodist #> 3958 6-4 326 San Diego State #> 3959 6-3 305 South Florida #> 3960 6-3 320 Memphis #> 3961 6-4 320 None #> 3962 6-5 331 Idaho #> 3963 6-2 315 Louisiana-Monroe #> 3964 6-5 319 Georgia #> 3965 6-5 318 Towson #> 3966 6-5 328 Tennessee #> 3967 6-5 318 Texas A&M #> 3968 6-2 312 Nebraska #> 3969 6-4 305 Utah #> 3970 6-5 330 Baylor #> 3971 6-6 305 Georgia #> 3972 6-5 310 Florida State #> 3973 6-4 300 Appalachian State #> 3974 6-6 306 Iowa #> 3975 6-5 314 Carroll, MT #> 3976 6-5 340 New Mexico #> 3977 6-5 309 Utah #> 3978 6-4 312 None #> 3979 6-2 308 Idaho State #> 3980 6-5 305 Georgia #> 3981 6-5 320 Wisconsin #> 3982 6-4 305 Midwestern State #> 3983 6-4 305 Oregon #> 3984 6-3 334 Southern Cal #> 3985 6-5 321 Alabama #> 3986 6-4 300 Rutgers #> 3987 6-4 296 None #> 3988 6-5 329 Massachusetts #> 3989 6-3 320 UAB #> 3990 6-4 324 Syracuse #> 3991 6-2 308 North Carolina #> 3992 6-4 327 Oklahoma State #> 3993 6-5 300 Pittsburgh #> 3994 6-4 310 USC #> 3995 6-4 294 Connecticut #> 3996 6-2 303 Oregon State #> 3997 6-5 315 Nebraska #> 3998 6-6 315 Nebraska #> 3999 6-4 335 Arkansas #> 4000 6-3 282 Iowa State #> 4001 6-5 305 Boston College #> 4002 6-3 322 Central Florida #> 4003 6-6 315 Wisconsin #> 4004 6-4 340 Louisville #> 4005 6-2 343 Fresno State #> 4006 6-3 298 Arizona State #> 4007 6-6 315 Baylor #> 4008 6-4 313 Tennessee State #> 4009 6-4 306 Slippery Rock #> 4010 6-4 305 Northern Colorado #> 4011 6-3 325 Utah #> 4012 6-4 316 None #> 4013 6-5 315 Purdue #> 4014 6-6 332 Rutgers #> 4015 6-3 300 Kent State #> 4016 6-4 312 Middle Tennessee #> 4017 6-4 330 North Carolina #> 4018 6-4 316 None #> 4019 6-3 321 San Diego State #> 4020 6-5 305 Toledo #> 4021 6-4 320 Oregon State #> 4022 6-4 310 Nebraska #> 4023 6-4 316 Central Florida #> 4024 6-3 317 Kentucky #> 4025 6-6 320 UCLA #> 4026 6-3 290 None #> 4027 6-3 309 Kutztown #> 4028 6-5 290 None #> 4029 6-6 311 Western Kentucky #> 4030 6-4 320 Indianapolis #> 4031 6-4 314 Ohio State #> 4032 6-4 310 Washington State #> 4033 6-3 306 North Carolina State #> 4034 6-4 306 Michigan #> 4035 6-5 310 Alabama #> 4036 6-6 303 Iowa #> 4037 6-6 317 Texas A&M #> 4038 6-5 325 Ball State #> 4039 6-7 305 Virginia #> 4040 6-7 305 Ohio #> 4041 6-6 301 None #> 4042 6-4 315 Eastern Michigan #> 4043 6-2 321 Texas #> 4044 6-3 322 Kansas State #> 4045 6-3 305 Iowa #> 4046 6-5 310 Utah #> 4047 6-2 308 None #> 4048 6-7 300 Texas-El Paso #> 4049 6-4 318 Toledo #> 4050 6-4 334 Temple #> 4051 6-5 330 Middle Tennessee #> 4052 6-3 320 Central Florida #> 4053 6-3 308 Arizona State #> 4054 6-4 305 West Virginia #> 4055 6-5 295 Alabama #> 4056 6-5 340 Mississippi #> 4057 6-3 296 Colorado #> 4058 6-5 333 None #> 4059 6-3 314 None #> 4060 6-4 306 None #> 4061 6-5 300 Louisiana College #> 4062 6-3 320 Illinois #> 4063 6-4 306 Illinois #> 4064 6-6 310 Colorado State #> 4065 6-5 298 Oregon State #> 4066 6-3 303 Harvard #> 4067 6-5 305 Stanford #> 4068 6-3 310 None #> 4069 6-3 283 Harvard #> 4070 6-4 340 Tennessee #> 4071 6-1 232 Texas-San Antonio #> 4072 6-0 239 Arizona #> 4073 6-0 233 None #> 4074 6-2 220 PIttsburgh #> 4075 6-3 220 None #> 4076 6-0 194 Indiana State #> 4077 6-2 230 Mississippi #> 4078 6-1 226 Hawaii #> 4079 6-4 250 None #> 4080 5-10 225 None #> 4081 5-11 220 Nebraska #> 4082 6-1 238 None #> 4083 6-0 229 None #> 4084 6-3 235 Alabama-Birmingham #> 4085 6-0 238 LA-Lafayette #> 4086 6-1 231 Penn State #> 4087 6-2 230 California #> 4088 6-2 220 Colorado #> 4089 6-0 227 Oklahoma #> 4090 6-1 250 Arizona State #> 4091 6-0 226 Texas #> 4092 5-9 225 Central Washington #> 4093 6-1 242 None #> 4094 6-1 242 Sacramento State #> 4095 6-0 250 Fresno State #> 4096 6-1 226 Michigan State #> 4097 6-1 238 None #> 4098 6-3 253 Clemson #> 4099 6-2 243 LSU #> 4100 6-0 237 None #> 4101 6-2 230 Arizona #> 4102 6-0 238 Boston College #> 4103 6-1 241 Pittsburgh #> 4104 5-11 231 Florida International #> 4105 6-0 225 Nebraska #> 4106 6-2 225 South Florida #> 4107 6-0 203 McNeese #> 4108 6-1 246 Maine #> 4109 6-2 235 Maryland #> 4110 6-2 230 Kansas #> 4111 6-4 220 None #> 4112 6-0 218 Oklahoma #> 4113 6-1 232 Florida #> 4114 6-1 242 Missouri #> 4115 6-1 223 Washington #> 4116 6-0 237 Louisville #> 4117 6-1 258 Florida State #> 4118 6-2 203 Texas #> 4119 6-0 190 Oklahoma State #> 4120 5-11 200 Texas #> 4121 6-1 200 Washington #> 4122 5-10 190 Ohio State #> 4123 6-4 210 North Carolina State #> 4124 6-2 215 None #> 4125 5-10 202 Louisville #> 4126 5-9 161 North Texas #> 4127 6-0 170 South Carolina #> 4128 5-9 192 Florida #> 4129 6-0 200 Iowa #> 4130 5-11 197 UCLA #> 4131 6-0 212 South Dakota State #> 4132 6-3 200 Clemson #> 4133 5-11 204 North Carolina #> 4134 6-1 215 Memphis #> 4135 5-9 203 Baylor #> 4136 6-0 198 Maryland #> 4137 6-4 246 Boston College #> 4138 6-1 240 Virginia #> 4139 6-0 237 Missouri State #> 4140 5-11 234 Iowa State #> 4141 6-5 231 Ferris State #> 4142 6-0 229 Syracuse #> 4143 6-2 238 Wisconsin #> 4144 6-3 239 Wyoming #> 4145 6-2 241 Temple #> 4146 6-1 245 Montana #> 4147 6-2 240 North Carolina #> 4148 6-2 235 Louisiana State #> 4149 6-1 250 Washington #> 4150 6-3 254 Central Michigan #> 4151 6-0 233 Kentucky #> 4152 6-2 227 None #> 4153 6-2 237 Georgia #> 4154 6-1 240 South Florida #> 4155 6-2 240 Penn State #> 4156 6-0 227 Portland State #> 4157 6-4 240 Northwestern #> 4158 6-1 234 North Carolina-Charlotte #> 4159 6-3 235 Miami #> 4160 6-3 245 Columbia #> 4161 6-4 245 Kansas State #> 4162 5-11 240 None #> 4163 5-11 232 North Dakota State #> 4164 6-2 250 Middle Tennessee #> 4165 6-1 251 North Carolina #> 4166 6-2 230 Alabama #> high_school gsis_id espn_id #> 1 Exeter (PA) 00-0036890 NA #> 2 Bellevue (WA) 00-0032877 2573307 #> 3 Rain (AL) 00-0027993 14013 #> 4 Saguaro (AZ) 00-0035236 4038999 #> 5 Vicksburg (MS) 00-0031218 17435 #> 6 Oak Grove (MS) 00-0035368 3123966 #> 7 Oceanside (CA) 00-0036043 3821572 #> 8 William Penn Charter (PA) 00-0032891 3042436 #> 9 Twiggs County (GA) 00-0031380 16718 #> 10 American Heritage (FL) 00-0036884 NA #> 11 Castle Park (CA) 00-0036101 4361499 #> 12 Hammond (LA) 00-0030528 15817 #> 13 Decatur (AL) 00-0035365 3917147 #> 14 Newton (GA) 00-0036897 NA #> 15 South Dade Senior (FL) 00-0036889 NA #> 16 Downey (CA) 00-0035705 4043089 #> 17 Crespi (CA) 00-0032560 2579163 #> 18 Early County (GA) 00-0030471 15877 #> 19 West Orange-Stark (TX) 00-0035532 3859100 #> 20 Kempner (TX) 00-0029747 15782 #> 21 Boys' Latin School (MD) 00-0036896 NA #> 22 <NA> <NA> 4325329 #> 23 New Canaan (CT) 00-0035248 3915282 #> 24 Circle (KS) 00-0031557 2577466 #> 25 <NA> 00-0030449 15844 #> 26 Pewaukee (WI) 00-0027949 13979 #> 27 Hillsdale (OH) 00-0034939 3139448 #> 28 Parsippany Hills (NJ) 00-0035541 3138765 #> 29 L.D. Bell (TX) 00-0030883 17017 #> 30 Central (KY) 00-0027686 13292 #> 31 Linn-Marr (IA) 00-0031592 2517779 #> 32 Herriman (UT) 00-0036371 4035666 #> 33 Grandview (MO) 00-0031713 2508191 #> 34 Neville (LA) 00-0036373 4035452 #> 35 St. Augustine Prep (NJ) 00-0029627 15090 #> 36 Weddington (NC) 00-0032138 2512544 #> 37 <NA> <NA> 3053124 #> 38 Ruston (LA) 00-0032628 2971881 #> 39 De La Salle (CA) <NA> 13304 #> 40 Estero (FL) 00-0023853 11122 #> 41 Crystal Lake South (IL) 00-0034473 4334300 #> 42 Desert Vista (AZ) 00-0031241 16820 #> 43 Anson (NC) 00-0032102 2576482 #> 44 Glen Burnie (MD) 00-0034490 3894901 #> 45 Redlands East Valley (CA) 00-0034404 3047582 #> 46 Lakota West (OH) 00-0032129 2514270 #> 47 Crestwood (SC) 00-0035855 3928847 #> 48 Nevada Union (CA) 00-0033580 3042895 #> 49 Afton (MO) 00-0032127 2971432 #> 50 Palo Verde (NV) 00-0035023 4239787 #> 51 Grant Union (CA) <NA> 12905 #> 52 Union-Endicott (NY) 00-0029585 14927 #> 53 Ponchatoula (LA) 00-0035923 4046605 #> 54 Hominy (OK) 00-0036933 NA #> 55 Buchanan (CA) <NA> NA #> 56 Southwest DeKalb (GA) 00-0032820 2576809 #> 57 Gonzaga Prep (WA) 00-0036381 4035875 #> 58 Olathe North (KS) 00-0036356 4035462 #> 59 <NA> <NA> 3048925 #> 60 Troy (CA) 00-0028946 15241 #> 61 Council Rock South (PA) 00-0030585 15808 #> 62 Norcross (GA) 00-0032132 2512538 #> 63 Bryant (AR) 00-0036809 NA #> 64 George Bush (TX) 00-0036363 3914630 #> 65 Corner Canyon (UT) 00-0035948 3915509 #> 66 Restoration Academy (AL) 00-0035336 3115482 #> 67 <NA> <NA> 3049219 #> 68 San Clemente (CA) 00-0033511 3045286 #> 69 Hudson (OH) 00-0030066 15879 #> 70 Mexia (TX) 00-0029316 15035 #> 71 Western Tech (MD) 00-0035317 3120434 #> 72 Sycamore (OH) 00-0032528 2576585 #> 73 St. Thomas Aquinas (FL) 00-0028001 13998 #> 74 Manvel (TX) 00-0035431 3122145 #> 75 Mallard Creek (NC) 00-0032222 2971048 #> 76 La Salle College (PA) 00-0034606 3045166 #> 77 Roswell (GA) <NA> 17197 #> 78 Carrollton (GA) 00-0035433 3129309 #> 79 West Oak (SC) 00-0022824 5713 #> 80 Jim Ned (TX) 00-0027688 13199 #> 81 Sonora (CA) <NA> 4038220 #> 82 Allen (TX) 00-0035228 3917315 #> 83 Marian Central Catholic (IL) 00-0035752 3040206 #> 84 Central Dauphin East (PA) 00-0034681 3119195 #> 85 Notre Dame (CA) 00-0033797 3052143 #> 86 Wylie East (TX) 00-0036383 4242873 #> 87 McDowell (PA) 00-0033553 3045147 #> 88 Spartanburg (SC) 00-0035825 4035470 #> 89 Bishop McNamara (IL) 00-0035924 4039274 #> 90 Palmdale (CA) 00-0032168 2971605 #> 91 Bellevue (WA) 00-0033890 3127287 #> 92 Chaska (MN) 00-0032319 3936647 #> 93 Freedom (CA) 00-0033258 3052166 #> 94 Hinsdale Central (IL) 00-0035067 3115981 #> 95 Hoover (AL) 00-0035092 3917292 #> 96 <NA> <NA> NA #> 97 <NA> <NA> 3672867 #> 98 Waconia (MN) 00-0031558 2970726 #> 99 College Montmorency (CAN) 00-0036808 NA #> 100 Jacksonville (AR) 00-0030155 16318 #> 101 Summerville (SC) 00-0027942 13983 #> 102 Highland Springs (VA) 00-0035500 4037235 #> 103 Cibolo Steele (TX) 00-0035126 4043161 #> 104 Palo Alto (CA) 00-0035287 3124537 #> 105 Southmoore (OK) 00-0033449 3894883 #> 106 Westlake (CA) 00-0035876 3886809 #> 107 Trinity (KY) 00-0036936 NA #> 108 Cheraw (SC) 00-0030300 16172 #> 109 Mayfield (OH) 00-0035527 3914328 #> 110 D.W. Daniel (SC) 00-0030564 15795 #> 111 Narbonne (CA) 00-0035491 3124369 #> 112 Heritage (CA) 00-0035884 4046668 #> 113 Saguaro (AZ) 00-0034775 3895856 #> 114 <NA> <NA> NA #> 115 Palma (CA) 00-0036957 NA #> 116 Colony (CA) 00-0030706 16963 #> 117 <NA> <NA> 2967888 #> 118 Don Bosco Prep (NJ) 00-0036295 4044138 #> 119 Rancho Cucamonga (CA) 00-0036956 NA #> 120 Western (FL) 00-0033918 2971586 #> 121 Gainesville (FL) 00-0036405 3915122 #> 122 <NA> <NA> 2975377 #> 123 JSerra Catholic (CA) 00-0036950 NA #> 124 <NA> <NA> 3052477 #> 125 Westlake (GA) 00-0036285 4239995 #> 126 Brophy (AZ) 00-0034357 3915437 #> 127 Vista Murrieta (CA) 00-0036830 NA #> 128 Woodward Academy (GA) 00-0036835 NA #> 129 Varnado (LA) 00-0035774 4360643 #> 130 Sylacauga (AL) 00-0033059 3045128 #> 131 Caesar Rodney (DE) 00-0030383 15842 #> 132 <NA> <NA> 4043891 #> 133 West Point (MS) 00-0036832 NA #> 134 Thurgood Marshall (TX) 00-0035255 3925358 #> 135 New Oxford (PA) 00-0032320 4010714 #> 136 Choctawhatchee (FL) 00-0036961 NA #> 137 Grover Cleveland (NY) 00-0030387 15936 #> 138 Crest (NC) 00-0033093 2980097 #> 139 Barberton (OH) 00-0035265 4411771 #> 140 Greenville (AL) 00-0036291 4035494 #> 141 Central (TX) <NA> NA #> 142 Walled Lake (MI) 00-0036949 NA #> 143 Immokalee (FL) 00-0034363 3051376 #> 144 Mater Dei (CA) 00-0035720 3917679 #> 145 Red Lion Christian Academy (DE) 00-0033598 3008150 #> 146 Crete-Monee (IL) 00-0035004 3124015 #> 147 Thomson (GA) 00-0034586 3043127 #> 148 Pleasant Grove (UT) 00-0036823 NA #> 149 Rockdale County (GA) 00-0031583 2576492 #> 150 Desert Mountain (AZ) 00-0031947 2517230 #> 151 Temple (TX) 00-0036948 NA #> 152 Westminster Christian (FL) 00-0036837 NA #> 153 Charter Oak (CA) 00-0030968 17315 #> 154 Ridgewood (NJ) 00-0033702 3049899 #> 155 Vacaville (CA) 00-0036300 4243009 #> 156 Capital (WV) 00-0036824 NA #> 157 Trinity Christian Academy (FL) 00-0034107 3916928 #> 158 Lakewood (FL) 00-0032052 2980100 #> 159 Jesuit (LA) 00-0032388 2976545 #> 160 St. John Bosco (CA) 00-0034154 3134315 #> 161 Florence (AL) 00-0036840 NA #> 162 George Washington (PA) 00-0035267 3929648 #> 163 Tracy (CA) 00-0036119 3120964 #> 164 Norwich Academy (CT) 00-0035579 4039521 #> 165 <NA> <NA> NA #> 166 Strake Jesuit (TX) 00-0034139 3123863 #> 167 Babylon (NY) 00-0035008 3120810 #> 168 John Burroughs (MO) 00-0034413 3050073 #> 169 Starkville (MS) 00-0036831 NA #> 170 Gilman School (MD) 00-0030010 16393 #> 171 Carrollton (GA) 00-0028845 15151 #> 172 Southfield-Lathrup (MI) 00-0032405 2587711 #> 173 Shepherd Hill (MA) 00-0035630 3672833 #> 174 Coventry (OH) 00-0036826 NA #> 175 Millard West (NE) <NA> NA #> 176 Concord (IN) 00-0032766 2979499 #> 177 First Coast (FL) 00-0035492 3895830 #> 178 Topsail (NC) 00-0036838 NA #> 179 Braden River (FL) 00-0036833 NA #> 180 ThunderRidge (CO) 00-0034405 3128790 #> 181 Cypress Ridge (TX) 00-0035051 3126302 #> 182 Lumberton (NC) 00-0036839 NA #> 183 Catholic Central (MI) 00-0036947 NA #> 184 Cinnaminson (NJ) 00-0034140 3157727 #> 185 Elkins (TX) 00-0031279 16713 #> 186 Fife (WA) 00-0035235 3127304 #> 187 Freedom (VA) 00-0035742 3072765 #> 188 Armwood (FL) 00-0036319 3916449 #> 189 Boys' Latin School (MD) 00-0036156 NA #> 190 Penn (PA) 00-0026143 11237 #> 191 Wakulla (FL) 00-0036825 NA #> 192 St. Paul's Episcopal (AL) 00-0031288 16810 #> 193 St. John Bosco (CA) 00-0034343 3886377 #> 194 Locust Grove (GA) 00-0036829 NA #> 195 Cocoa (FL) 00-0036827 NA #> 196 Texas City (TX) 00-0033925 3125116 #> 197 Stephenson (GA) 00-0032063 3025433 #> 198 Northwestern (SC) 00-0030578 15807 #> 199 Canisius (NY) 00-0035273 3123944 #> 200 Cairo (GA) 00-0030543 15874 #> 201 <NA> <NA> 15544 #> 202 Buena Park (CA) 00-0036302 3858276 #> 203 Archbishop Wood (PA) 00-0036970 NA #> 204 Waukon (IA) 00-0035572 3144991 #> 205 Marble Falls (TX) 00-0035914 4039553 #> 206 Clovis North (CA) 00-0034575 3047536 #> 207 The Bolles School (FL) 00-0034830 3924365 #> 208 Cherry Creek (CO) 00-0034788 3118954 #> 209 Powell (TN) 00-0028097 14215 #> 210 Monarch (FL) 00-0034837 3925357 #> 211 St. Joseph's Prep (PA) 00-0035208 3917914 #> 212 Piscataway (NJ) 00-0032778 2982828 #> 213 Martinsburg (WV) 00-0035782 4366710 #> 214 <NA> <NA> NA #> 215 Ravenwood (TN) 00-0035789 4052137 #> 216 Lincoln (NJ) 00-0036951 NA #> 217 Elkins (TX) 00-0034268 3051857 #> 218 Cardinal Gibbons (FL) 00-0034132 3126002 #> 219 Redemptorist (LA) 00-0034411 3115378 #> 220 Jefferson (FL) 00-0036834 NA #> 221 Freedom (FL) 00-0034207 3053760 #> 222 Alhambra (CA) 00-0032423 2573343 #> 223 Klein (TX) 00-0036841 NA #> 224 Webb City (MO) 00-0035992 4035112 #> 225 McClymonds (CA) 00-0032165 2578378 #> 226 Potomac (MD) 00-0032770 2976244 #> 227 Colton (CA) 00-0027965 13963 #> 228 Colony (CA) 00-0036124 4027919 #> 229 Long Beach Poly (CA) 00-0034979 3912545 #> 230 Hoover (AL) 00-0033281 3126356 #> 231 Woodbury (NJ) 00-0034265 3054841 #> 232 Oakleaf (FL) 00-0035422 3915255 #> 233 Trinity Christian Academy (FL) 00-0036559 NA #> 234 Peachtree Ridge (GA) 00-0036127 NA #> 235 Evangel Christian Academy (LA) 00-0036587 NA #> 236 Plano (TX) <NA> NA #> 237 Folsom (CA) 00-0031559 2577139 #> 238 Richard J. Reynolds (NC) 00-0027539 13845 #> 239 Rockwall-Heath (TX) 00-0034277 3929846 #> 240 King's Fork (VA) 00-0033294 3045463 #> 241 New Castle (PA) 00-0036199 4240575 #> 242 <NA> <NA> 3125931 #> 243 West Rowan (NC) 00-0031264 16917 #> 244 Denver South (CO) 00-0026190 11284 #> 245 Center Grove (IN) 00-0036911 NA #> 246 Beaver Local (OH) 00-0029586 14964 #> 247 McKinney North (TX) 00-0036130 4035245 #> 248 Stone Bridge (VA) 00-0036191 3895837 #> 249 Longview (TX) 00-0036081 3915837 #> 250 East (KS) <NA> NA #> 251 <NA> 00-0035131 3125872 #> 252 Neville (LA) 00-0031346 16857 #> 253 North Fort Myers (FL) 00-0030112 15973 #> 254 David Prouty (MA) 00-0033376 2975417 #> 255 <NA> <NA> 2986883 #> 256 <NA> 00-0035124 3912157 #> 257 Conwell-Egan Catholic (ME) <NA> NA #> 258 Westlake (TX) 00-0029597 15683 #> 259 Bremen (GA) 00-0036873 NA #> 260 Blair Academy (NJ) 00-0036940 NA #> 261 Skyline (MI) 00-0036562 NA #> 262 Cypress Falls (TX) 00-0035103 3122141 #> 263 Iola-Scandinavia (WI) 00-0036157 4036153 #> 264 Pahokee (FL) 00-0028103 14202 #> 265 Livonia (LA) 00-0036323 4242207 #> 266 Statesboro (GA) 00-0028008 14048 #> 267 West Feliciana (LA) 00-0035651 3122766 #> 268 <NA> <NA> 4334407 #> 269 John Tyler (TX) 00-0033283 3040037 #> 270 Walnut Ridge (OH) 00-0036280 4040615 #> 271 St. Thomas Aquinas (FL) 00-0034881 3042445 #> 272 Waynesville (MO) 00-0028932 15264 #> 273 Timber Creek (FL) 00-0034787 3060403 #> 274 Brookwood (GA) 00-0035408 3915184 #> 275 Rockwood Summit (MO) 00-0030511 15875 #> 276 Anderson (OH) 00-0031923 2516865 #> 277 Kapaun Mt. Carmel Catholic (OK) 00-0034978 4037650 #> 278 Arrowhead (WI) 00-0036132 4046551 #> 279 Wisconsin Lutheran (WI) 00-0029592 14931 #> 280 East Mississippi (MS) 00-0036214 4242247 #> 281 Stephens County (GA) 00-0036977 NA #> 282 Westlake (CA) 00-0035112 3863820 #> 283 Handley 00-0034281 3054842 #> 284 Huffman (AL) 00-0026982 12622 #> 285 East Ascension (LA) 00-0036580 NA #> 286 Gorman (NV) 00-0032965 2980153 #> 287 Graham-Kapowsin (WA) 00-0036584 NA #> 288 SHAPE High School (BEL) 00-0030648 16706 #> 289 Carl Sandburg (IL) 00-0031353 16741 #> 290 North Gwinnett (GA) 00-0031417 16722 #> 291 Boone (FL) 00-0034684 3054971 #> 292 Seward (NE) 00-0024417 9789 #> 293 <NA> <NA> NA #> 294 Hallandale (FL) 00-0035993 4035671 #> 295 Boynton Beach (FL) 00-0034796 3916387 #> 296 Calvert Hall (MD) <NA> NA #> 297 <NA> <NA> 3042451 #> 298 Briar Woods (VA) 00-0035146 3116172 #> 299 Crestwood (SC) 00-0036457 NA #> 300 Tottenville (NY) 00-0034184 3051926 #> 301 La Grange (TX) 00-0036158 4241985 #> 302 Booker T. Washington (OK) 00-0034975 4038441 #> 303 Reeths-Puffer (MI) 00-0036582 NA #> 304 Trabuco Hills (CA) 00-0036154 3915136 #> 305 Newtown (CT) 00-0036565 NA #> 306 Desert Mountain (AZ) 00-0034753 3116365 #> 307 Lansing Catholic (MI) 00-0036583 NA #> 308 Minster (OH) 00-0036129 3915400 #> 309 Paso Robles (CA) 00-0035249 3921690 #> 310 Klein (TX) 00-0031690 2511973 #> 311 High Point Regional (NJ) 00-0031598 2574591 #> 312 Bishop Gorman (NV) 00-0031035 17348 #> 313 <NA> <NA> NA #> 314 Providence Catholic (IL) 00-0035703 3932423 #> 315 Fort Myers South (FL) 00-0031325 16725 #> 316 DeSoto (TX) 00-0036133 3916204 #> 317 North Shore (TX) 00-0031511 2515962 #> 318 Boynton Beach (FL) <NA> NA #> 319 Chaminade-Madonna (FL) 00-0035662 4241372 #> 320 Tampa Bay Tech (FL) 00-0034406 3728254 #> 321 Williston Northampton (MA) 00-0036074 4043814 #> 322 <NA> <NA> NA #> 323 Mitchell (TN) 00-0036125 3909416 #> 324 Crenshaw (CA) 00-0031060 16945 #> 325 Tustin (CA) 00-0036169 NA #> 326 South Hills (TX) 00-0036630 NA #> 327 Reed (NV) 00-0034141 4037481 #> 328 Coconut Creek (FL) 00-0035819 4040628 #> 329 Tift County (GA) 00-0036550 NA #> 330 Sachse (TX) 00-0036331 4039050 #> 331 St. Michael's Academy (TX) 00-0031936 2514122 #> 332 Green Oaks (LA) 00-0033884 3042717 #> 333 Varina (VA) 00-0034996 3048681 #> 334 Copperas Cove (TX) 00-0032735 2971734 #> 335 Cornell (PA) 00-0036166 3895791 #> 336 Tampa Bay Tech (FL) <NA> 4046350 #> 337 South Pointe (SC) 00-0036589 NA #> 338 Consortium Prep (MI) 00-0035357 3916577 #> 339 Fort Osage (MO) 00-0031394 16898 #> 340 Northwestern (FL) 00-0036573 NA #> 341 Tucson (AZ) 00-0034514 3133440 #> 342 Eufaula (AL) 00-0034391 3057524 #> 343 Mission Viejo (CA) 00-0036588 NA #> 344 Sheldon (CA) 00-0034376 3121003 #> 345 Pittsburgh Central Catholic (PA) 00-0036888 NA #> 346 Miami Killian (FL) 00-0035290 3672862 #> 347 Fostoria (OH) 00-0030090 15960 #> 348 Astoria (OR) 00-0030114 15979 #> 349 St. Augustine (CA) 00-0036591 NA #> 350 Montgomery Academy (AL) 00-0036189 3917159 #> 351 Northside (VA) 00-0036553 NA #> 352 Camden County (GA) 00-0035306 3957672 #> 353 Austin (TX) 00-0027881 13245 #> 354 Champagnat Catholic (FL) 00-0036914 NA #> 355 Edwardsville (IL) 00-0036192 4240585 #> 356 Countryside (FL) 00-0034511 3051371 #> 357 Tarrant (AL) 00-0028339 14320 #> 358 St. Thomas Aquinas (FL) 00-0033408 2980098 #> 359 Lambeth College (GBR) 00-0031500 3734467 #> 360 Bingham (UT) 00-0030455 15802 #> 361 Roanoke Rapids (NC) 00-0033934 3039721 #> 362 Millard West (NE) 00-0034782 3117255 #> 363 Omaha North (NE) 00-0032660 2982857 #> 364 <NA> 00-0035560 4262273 #> 365 North Pike (MS) 00-0032967 2971883 #> 366 Greenville (MI) 00-0032518 3057899 #> 367 Westfield (TX) 00-0035230 4039303 #> 368 Pasco (FL) 00-0033590 3043112 #> 369 Penn Hills (PA) 00-0033976 2973027 #> 370 <NA> <NA> 2576910 #> 371 Dutch Fork (SC) 00-0036162 3917232 #> 372 Dan River (VA) 00-0034673 3929950 #> 373 Trinity Christian Academy (FL) 00-0034430 3895831 #> 374 St. Joseph Regional (NJ) 00-0035363 3917797 #> 375 Citrus Hill (CA) 00-0035762 NA #> 376 Mays (GA) 00-0032094 3895228 #> 377 Talladega (AL) 00-0034933 3127075 #> 378 Centennial (TN) 00-0035352 4035232 #> 379 Kimberly (WI) 00-0030463 15964 #> 380 St. Joseph (CT) 00-0032366 2976249 #> 381 Westlake (MD) 00-0033956 3039776 #> 382 Dr. Phillips (FL) 00-0033571 3046287 #> 383 Buford (GA) 00-0032497 2976549 #> 384 Western (FL) 00-0032151 2512577 #> 385 Frisco (TX) 00-0036577 NA #> 386 Pleasant Valley (CA) 00-0036592 NA #> 387 Union City (NJ) 00-0035919 3929642 #> 388 Cedar Falls (IA) 00-0034505 3040166 #> 389 Venice (FL) 00-0033542 2981439 #> 390 Pineville (LA) 00-0035238 3707061 #> 391 Lake Dallas (TX) 00-0031567 2514244 #> 392 Archbishop Wood (PA) 00-0035382 3929631 #> 393 Cypress (CA) 00-0031575 2516927 #> 394 American Fork (UT) 00-0030011 16385 #> 395 Wenatchee (WA) 00-0036185 3886808 #> 396 Rahway (NJ) 00-0033904 3051324 #> 397 Lenox (IA) <NA> NA #> 398 St. Thomas Aquinas (FL) 00-0031622 2576789 #> 399 Edina (MN) 00-0036560 NA #> 400 Venice (FL) 00-0034963 3917868 #> 401 Dowling Catholic (IA) 00-0033400 3043237 #> 402 Houston County (GA) 00-0036197 4240689 #> 403 Mentor (OH) 00-0033869 3039707 #> 404 Prosper (TX) 00-0033550 3052600 #> 405 Firebaugh (CA) 00-0034857 3918298 #> 406 Hallandale (FL) 00-0036251 4035676 #> 407 Nature Coast Technical (FL) 00-0033308 3049916 #> 408 Seminole Ridge (FL) 00-0035596 3919104 #> 409 Deer Valley (CA) 00-0028063 14167 #> 410 Royal Grammar (GBR) 00-0035728 4420894 #> 411 North Stanly (NC) 00-0036188 4040629 #> 412 American Heritage (FL) 00-0035250 4040761 #> 413 Grissom (AL) 00-0033816 2977954 #> 414 Brentwood Academy (TN) 00-0035689 3930086 #> 415 Carmel (IN) 00-0035322 3125999 #> 416 George Ranch (TX) 00-0036590 NA #> 417 Westland (OH) 00-0036187 4039505 #> 418 Don Bosco Prep (NJ) 00-0035308 3122818 #> 419 Wilcox County (GA) 00-0033261 3039720 #> 420 Mountain View (OR) 00-0033387 3125404 #> 421 Reserve (LA) East St. John 00-0032945 3115315 #> 422 American Heritage (FL) 00-0033466 3128724 #> 423 Narbonne (CA) <NA> NA #> 424 South Elgin (IL) 00-0031787 3085107 #> 425 Good Counsel (MD) 00-0031588 2976212 #> 426 Northwood (LA) 00-0036571 NA #> 427 Grandview (CO) 00-0033633 3043841 #> 428 Crete-Monee (IL) 00-0033992 3049249 #> 429 Little Elm (TX) 00-0029000 15349 #> 430 Dowling Catholic (IA) 00-0034660 4048717 #> 431 Bellville (TX) 00-0027685 13295 #> 432 Deerfield Beach (FL) 00-0034646 3115255 #> 433 Seminole (FL) 00-0036196 4243537 #> 434 Berean Christian (CA) 00-0036165 4242540 #> 435 Council (ID) 00-0031349 16847 #> 436 Plano (TX) 00-0035958 3928936 #> 437 Alpharetta (GA) 00-0036944 NA #> 438 Riverdale (LA) 00-0034356 3843769 #> 439 Waukegan (IL) 00-0029901 16270 #> 440 Servite (CA) 00-0036561 NA #> 441 Edison (CA) 00-0029690 14989 #> 442 West Orange (FL) 00-0035886 NA #> 443 Greer (SC) 00-0036299 4046679 #> 444 Charlotte (FL) 00-0036315 4046353 #> 445 Tucker (GA) 00-0030228 16562 #> 446 Citrus (FL) 00-0036037 4044133 #> 447 Imani Christian (PA) 00-0036283 4241889 #> 448 Cass Tech (MI) 00-0033931 3045214 #> 449 Broughton (NC) 00-0032403 2577740 #> 450 Heritage (MI) 00-0036353 NA #> 451 East Coast Prep (NJ) 00-0035950 4035290 #> 452 Camden (NJ) 00-0034496 3138733 #> 453 Cathedral (CA) 00-0035576 3122173 #> 454 Parkland (NC) 00-0032697 2567725 #> 455 Mansfield <NA> NA #> 456 Bishop Maginn (NY) 00-0035095 3126238 #> 457 Fountain-Fort Carson (CO) 00-0032671 3059620 #> 458 Nacogdoches (TX) 00-0035082 3139108 #> 459 University Christian (FL) 00-0034382 3115456 #> 460 Dougherty Valley (CA) 00-0034559 4035726 #> 461 <NA> <NA> 15010 #> 462 Chancellor (VA) 00-0036288 4259594 #> 463 Memphis Central (TN) 00-0034590 3042746 #> 464 American Heritage (FL) 00-0035713 4035631 #> 465 Maumelle (AR) 00-0034287 3112083 #> 466 Stephenson (GA) 00-0034223 3051766 #> 467 Johnson City (NY) 00-0031054 16910 #> 468 Whitmer (OH) 00-0036576 NA #> 469 Lanier (GA) 00-0036220 4035495 #> 470 Mount Saint Michael (NY) 00-0031071 16853 #> 471 Indian Trail (WI) 00-0036558 NA #> 472 Lake Park West (IL) 00-0036170 4046721 #> 473 Hardaway (GA) 00-0035462 4241221 #> 474 Spring (TX) 00-0036311 4035407 #> 475 Menomonie (WI) <NA> NA #> 476 Creekside (GA) 00-0036143 3916944 #> 477 Lakeside (GA) 00-0035952 3916943 #> 478 Redondo Union (CA) 00-0036168 3932960 #> 479 North Stafford (VA) 00-0035192 3124084 #> 480 Wesleyan (GA) 00-0035772 NA #> 481 Xavier (OH) 00-0029248 14938 #> 482 Southview (OH) 00-0035415 3116134 #> 483 Haddon Heights (NJ) 00-0033875 2980504 #> 484 Anderson (FL) 00-0028278 14519 #> 485 Tafuna (ASM) 00-0034302 3127273 #> 486 Spring Valley (SC) 00-0035257 3126362 #> 487 Bloomfield (CT) 00-0029061 15373 #> 488 Grant Union (CA) 00-0031550 2978313 #> 489 Coral Gables (FL) 00-0032103 2579621 #> 490 Friendship Collegiate Academy (DC) 00-0034396 3053047 #> 491 Wylie (TX) 00-0036432 3928928 #> 492 Mundy's Mill (GA) 00-0034872 3116052 #> 493 Katy (TX) 00-0036544 NA #> 494 Nashville Christian (TN) 00-0035929 4035177 #> 495 Fishers (IN) 00-0036293 4043169 #> 496 Brophy Prep (AZ) 00-0026027 11759 #> 497 IMG Academy (FL) 00-0036574 NA #> 498 Austin (AL) 00-0036566 NA #> 499 Central (FL) 00-0032149 2576639 #> 500 Ridge View (SC) 00-0035300 4259480 #> 501 Colquitt County (GA) 00-0032145 2512504 #> 502 Pickerington North (OH) 00-0033909 2976295 #> 503 Brockton (MA) 00-0035344 3915304 #> 504 Lee (AL) 00-0034571 3123303 #> 505 Okemos (MI) 00-0033284 2973051 #> 506 Apopka (FL) 00-0035724 3915102 #> 507 New Trier (IL) 00-0035613 3912487 #> 508 Bountiful (UT) 00-0036968 NA #> 509 Hutto (TX) <NA> NA #> 510 A.C. Flora 00-0036320 3924357 #> 511 Elizabeth (NJ) 00-0033275 3051308 #> 512 Davidson Day School (NC) 00-0035251 3115252 #> 513 San Clemente (CA) 00-0034869 3912547 #> 514 Bev Facey (CAN) 00-0036555 NA #> 515 Trinity (KY) 00-0034578 3116642 #> 516 Mortimer Jordan (AL) 00-0036543 NA #> 517 Kecoughtan (VA) 00-0034164 4261020 #> 518 Mundy's Mill (GA) 00-0035957 NA #> 519 Valor Christian (CO) 00-0033280 3117251 #> 520 Paul Harding (IN) 00-0031900 2512197 #> 521 Brookings (SD) 00-0035793 4031003 #> 522 St. John's (SC) 00-0036467 NA #> 523 Digital Harbor (MD) 00-0034365 4045305 #> 524 Archbishop Wood (PA) 00-0033720 2980120 #> 525 Donaldsonville (LA) 00-0036438 4035426 #> 526 Loveland (OH) 00-0035956 3916749 #> 527 <NA> <NA> NA #> 528 <NA> <NA> 3053039 #> 529 Wesleyan (GA) 00-0037005 NA #> 530 Shanley (ND) 00-0034011 4212989 #> 531 Coffman (OH) 00-0036910 NA #> 532 Cleveland Heights (OH) 00-0033573 3042417 #> 533 Warren Central (IN) 00-0033604 4198679 #> 534 Parkway (LA) 00-0036955 NA #> 535 Laurel (MS) 00-0035947 3917166 #> 536 New London Spicer (MN) 00-0034052 4294520 #> 537 Union County (SC) 00-0036572 NA #> 538 St. John Vianney (NJ) 00-0034922 3039968 #> 539 Plantation (FL) 00-0032688 2574808 #> 540 Jefferson (FL) 00-0035548 3138760 #> 541 Gainesville (TX) 00-0033589 4212909 #> 542 Imhotep Institute Charter (PA) 00-0034827 3915416 #> 543 Neptune (NJ) 00-0034317 3046401 #> 544 Bishop Dunne (TX) 00-0036470 NA #> 545 Abilene (KS) 00-0032768 2577346 #> 546 Tucker (GA) 00-0035696 3916126 #> 547 Lawrence Central (IN) 00-0032849 2578317 #> 548 Central East (CA) 00-0036292 4243253 #> 549 Plantation (FL) 00-0033612 3045278 #> 550 Wilson (WA) 00-0030562 15812 #> 551 Oswego (IL) 00-0034607 4294837 #> 552 North Clayton (GA) 00-0036307 4036651 #> 553 <NA> <NA> 3046663 #> 554 Boyd Anderson (FL) 00-0033784 3054847 #> 555 Pittsburg (CA) 00-0035293 3860287 #> 556 Kimball (TX) 00-0028924 15235 #> 557 Northwestern (FL) 00-0033103 3051921 #> 558 Columbus (FL) 00-0032774 2969944 #> 559 New Rochelle (NY) 00-0032797 2979595 #> 560 Paulding County (GA) 00-0036709 NA #> 561 Spring (TX) 00-0032786 3960454 #> 562 Massaponax (VA) 00-0032790 2566034 #> 563 Friendship Collegiate Academy (DC) 00-0033545 3115257 #> 564 Rancho Cucamonga (CA) 00-0036908 NA #> 565 Lake Forest Academy (IL) <NA> NA #> 566 Red Lion Christian Academy (DE) 00-0032107 2574582 #> 567 Billy Ryan (TX) 00-0032265 2969921 #> 568 St. Albans School (DC) 00-0036711 NA #> 569 <NA> 00-0035064 NA #> 570 Hodgson Vo-Tech (DE) 00-0034387 3117922 #> 571 Friendship Collegiate Academy (DC) 00-0031551 2969924 #> 572 Grandview (CO) 00-0030757 17230 #> 573 Carteret (NJ) 00-0036705 NA #> 574 East St. Louis (IL) 00-0035302 3924310 #> 575 Granger (UT) 00-0036909 NA #> 576 Springfield (PA) 00-0036700 NA #> 577 Del Campo (CA) 00-0029657 14984 #> 578 Peoria (IL) 00-0036204 4376288 #> 579 <NA> <NA> 3051367 #> 580 St. Joseph's Academy (FL) 00-0031203 17427 #> 581 Gonzaga (DC) 00-0036703 NA #> 582 Lincoln Park Academy (FL) 00-0036205 4257195 #> 583 Newnan (GA) 00-0030527 15806 #> 584 Macon County (GA) 00-0034874 3915189 #> 585 Cedar Hill (TX) 00-0036305 3917016 #> 586 South Warren (KY) 00-0034372 3124779 #> 587 Point Loma (CA) 00-0036704 NA #> 588 Tucker (GA) 00-0031838 2577145 #> 589 Leesburg (FL) 00-0029577 15074 #> 590 McDonogh (MD) 00-0034801 3128303 #> 591 Westwood (FL) 00-0031040 16710 #> 592 Archbishop Carroll (DC) 00-0031258 16761 #> 593 Danbury (FL) 00-0033452 2982304 #> 594 Punahou (HI) 00-0030278 15867 #> 595 Fort Dorchester (SC) 00-0027952 13984 #> 596 Lake Howell (FL) 00-0031130 17070 #> 597 Weber (UT) 00-0028284 14572 #> 598 DeSoto Central (MS) 00-0036708 NA #> 599 Warren G. Harding (OH) 00-0034347 3894849 #> 600 Choate Rosemary Hall (CT) 00-0036202 4032052 #> 601 Brother Rice (MI) 00-0036905 NA #> 602 Westside (TX) 00-0032384 2972304 #> 603 Selma (AL) 00-0036318 3912245 #> 604 Walsh Jesuit (OH) 00-0032354 2566609 #> 605 Emerald (SC) <NA> NA #> 606 Downingtown (PA) 00-0033676 3059839 #> 607 Canisius (NY) 00-0036966 NA #> 608 Montgomery Bell Academy (TN) 00-0035061 3129290 #> 609 Good Counsel (MD) 00-0035062 3129307 #> 610 Belleville (MI) 00-0036317 4241422 #> 611 Topeka (KS) 00-0036953 NA #> 612 Queen City (TX) 00-0022531 6012 #> 613 Matignon (MA) 00-0036210 4362648 #> 614 Palm Beach Central (FL) 00-0031079 16863 #> 615 Katy (TX) 00-0027973 14012 #> 616 Westlake (TX) 00-0029567 14877 #> 617 Harrison (GA) 00-0036945 NA #> 618 Central Catholic (OR) 00-0034597 3127335 #> 619 American Heritage (FL) 00-0036906 NA #> 620 Mira Mesa (CA) 00-0030874 17359 #> 621 Towers (GA) 00-0036706 NA #> 622 Auburndale (FL) 00-0036208 4042808 #> 623 Bunn (NC) 00-0033556 3066158 #> 624 Mount Healthy (OH) 00-0035685 4035538 #> 625 Princeton (OH) 00-0030414 16020 #> 626 <NA> <NA> NA #> 627 Oak Hill Academy (VA) 00-0035756 2982484 #> 628 Shaler (PA) 00-0032986 2970262 #> 629 South Allegheny (PA) 00-0032135 2979590 #> 630 Pickerington North (OH) 00-0033564 3045225 #> 631 Greenwich (CT) 00-0036702 NA #> 632 St. Viator (IL) 00-0036290 4258595 #> 633 Roseville (MN) 00-0035562 3940587 #> 634 Charis Prep (NC) 00-0027696 13232 #> 635 DeSoto (TX) 00-0034593 3122430 #> 636 <NA> <NA> 2978744 #> 637 Rowlett (TX) 00-0030068 15839 #> 638 Madison Memorial (WI) 00-0034633 3045164 #> 639 Deerfield Beach (FL) 00-0035590 4035015 #> 640 Timber Creek Regional (NJ) 00-0031868 2577667 #> 641 Ed White (FL) 00-0034426 4035019 #> 642 <NA> 00-0033815 3043134 #> 643 Gwynn Park (MD) 00-0036308 4248504 #> 644 Lakewood (FL) 00-0033957 3059918 #> 645 Gadsden City (AL) 00-0036309 4040655 #> 646 West Side (IN) 00-0035417 3126095 #> 647 Hinsdale Central (IL) 00-0035074 3909300 #> 648 Hampton (VA) 00-0036907 NA #> 649 Orchard Lake St. Mary's (MI) 00-0031428 16799 #> 650 West Craven (NC) 00-0031570 2518678 #> 651 <NA> <NA> 4327535 #> 652 North Shore (TX) 00-0030781 17172 #> 653 Pine Forest (NC) 00-0035536 3128707 #> 654 Fitch (OH) 00-0034762 3051407 #> 655 Houston County (GA) 00-0036856 NA #> 656 Bradford (WI) 00-0031546 2576283 #> 657 Central (LA) 00-0034998 3126245 #> 658 St. Genevieve (CA) 00-0032757 3042619 #> 659 Columbus (FL) 00-0035799 4240624 #> 660 Oak Grove (CA) 00-0033548 3052101 #> 661 Ozen (TX) 00-0034540 3115308 #> 662 Robichaud (MI) 00-0034683 3042785 #> 663 Kirkwood (MO) 00-0036732 NA #> 664 Helix (CA) 00-0034446 3125356 #> 665 Eastern (PA) 00-0032379 3040506 #> 666 Grand Rapids Christian (MI) 00-0033048 2972505 #> 667 Calvary Baptist Academy (LA) 00-0033791 2982632 #> 668 Sandy Creek (GA) 00-0032521 2980383 #> 669 Ridgeland (GA) 00-0032939 3051388 #> 670 Mainland (FL) 00-0031181 16882 #> 671 Grant Union (CA) 00-0034533 3046382 #> 672 Snider (IN) 00-0034675 3919512 #> 673 Wake Forest (NC) 00-0036730 NA #> 674 Oak Ridge (TX) 00-0036902 NA #> 675 Apopka (FL) 00-0033935 3052743 #> 676 Archbishop Moeller (OH) 00-0034834 3121416 #> 677 Bishop McDevitt (PA) 00-0032952 2976313 #> 678 Shawnee Heights (KS) 00-0036861 NA #> 679 Harrison (MI) 00-0036341 4039029 #> 680 Shiloh (GA) 00-0036850 NA #> 681 Lawrence (KS) 00-0035513 4037633 #> 682 Buena Park (CA) 00-0033347 2979632 #> 683 Grimsley (NC) 00-0032424 2977670 #> 684 Highland Regional (NJ) 00-0029284 14994 #> 685 Notre Dame (LA) 00-0036851 NA #> 686 Lutheran (MO) 00-0035260 3128815 #> 687 Clayton Valley (CA) 00-0034731 3915388 #> 688 Ragsdale (NC) 00-0033905 3050122 #> 689 <NA> 00-0034441 3128752 #> 690 Belleville West (IL) 00-0035145 3821683 #> 691 Fort Payne (AL) 00-0036854 NA #> 692 Thomasville (NC) 00-0036298 3917142 #> 693 High Point Central (NC) 00-0035697 3116724 #> 694 Hilliard Davidson (OH) 00-0036314 3917992 #> 695 Good Counsel (MD) 00-0036203 4040621 #> 696 Norman North (OK) 00-0033790 3052660 #> 697 Berea (OH) 00-0035895 4036507 #> 698 Natrona County (WY) 00-0036294 3918330 #> 699 Southern Regional (NJ) 00-0025630 10686 #> 700 Ottawa-Glandorf (OH) 00-0035472 3929801 #> 701 Petersburg (VA) 00-0032043 2515319 #> 702 Garland (TX) 00-0036310 4046557 #> 703 Fairfield Senior (OH) 00-0036865 NA #> 704 Marcus (TX) 00-0035400 3895869 #> 705 Plymouth (MI) 00-0035266 4040622 #> 706 Timpview (UT) 00-0031410 16801 #> 707 Eleanor Roosevelt (MD) 00-0035295 3915532 #> 708 Folsom (CA) 00-0035629 4040726 #> 709 Parkston (SD) 00-0029672 14930 #> 710 Grovetown (GA) 00-0036852 NA #> 711 Royal Palm Beach (FL) 00-0034951 3915106 #> 712 Westerville South (OH) <NA> NA #> 713 La Salle (OH) 00-0036729 NA #> 714 Archbishop McNicholas (OH) 00-0027103 12669 #> 715 La Salle College (PA) 00-0035163 3915776 #> 716 Lakeridge (OR) 00-0035010 3916447 #> 717 Athens (OH) 00-0036442 3915511 #> 718 Fayetteville (AR) 00-0032434 2574511 #> 719 Dorman (SC) <NA> NA #> 720 Hahnville (LA) 00-0036734 NA #> 721 C.E. King (TX) 00-0035291 4035222 #> 722 Timber Creek (FL) 00-0035760 3693033 #> 723 Hendrickson (TX) 00-0033526 3116389 #> 724 Freedom (CA) 00-0033897 3116385 #> 725 Indianapolis Ben Davis (IN) 00-0036857 NA #> 726 Hampton-Dumont (IA) <NA> 4241256 #> 727 Northside (LA) 00-0035395 3914371 #> 728 Medina (OH) 00-0033798 2972331 #> 729 Lincoln (RI) 00-0036023 4036189 #> 730 North Gwinnett (GA) 00-0032134 2574576 #> 731 Newport (WA) 00-0035631 3127310 #> 732 Fayetteville (AR) 00-0036612 NA #> 733 Milford Academy (NY) 00-0036733 NA #> 734 Tarpon Springs (FL) 00-0035771 3923392 #> 735 Evangel Christian Academy (LA) 00-0033292 3040569 #> 736 Libertyville (IL) 00-0036731 NA #> 737 <NA> <NA> 4069839 #> 738 St. Augustine (LA) 00-0035399 3699902 #> 739 Wharton (FL) 00-0034686 3921564 #> 740 St. John's (DC) 00-0035769 3919557 #> 741 Oak Ridge (TN) 00-0036410 4239993 #> 742 Archbishop Rummel (LA) 00-0036900 NA #> 743 Clairton (PA) 00-0033009 3045144 #> 744 DuSable (IL) 00-0033114 3123986 #> 745 Hart (CA) 00-0035341 3931391 #> 746 Cathedral (IN) 00-0033092 2989641 #> 747 <NA> <NA> 2979548 #> 748 Akron Central (NY) 00-0030076 16001 #> 749 Petal (MS) 00-0035005 3691031 #> 750 Wakefield (MA) 00-0032567 2566591 #> 751 IMG Academy (FL) 00-0036996 NA #> 752 Lehigh Senior (FL) 00-0034088 4036898 #> 753 Calvary Baptist Academy (LA) 00-0035638 4035437 #> 754 St. Bonaventure (CA) 00-0031785 2525933 #> 755 La Marque (TX) 00-0033467 2971632 #> 756 Macedonia Nordonia (OH) 00-0034856 3915535 #> 757 DeSoto (TX) 00-0036114 4038437 #> 758 Northside (AR) 00-0036688 NA #> 759 Yorktown (VA) 00-0034355 3116679 #> 760 Naperville Central (IL) 00-0036687 NA #> 761 IMG Academy (FL) 00-0036282 4242208 #> 762 Union City (TN) 00-0036118 3914450 #> 763 Northwestern (MD) 00-0033927 3046292 #> 764 Liberty Christian Academy (VA) 00-0036109 3910402 #> 765 Imhotep Institute Charter (PA) <NA> NA #> 766 Florida State University School (FL) 00-0034779 3859006 #> 767 Liberty County (GA) 00-0036641 NA #> 768 Miami Killian (FL) 00-0034977 3917852 #> 769 Hamshire-Fannett (TX) 00-0033403 2981511 #> 770 Salem Hills (UT) 00-0035404 3912553 #> 771 Gulliver Prep (FL) 00-0035281 4037459 #> 772 South Pointe (SC) 00-0031364 16734 #> 773 St. Anthony (CA) 00-0036216 4048257 #> 774 McKinley (OH) 00-0035449 4046907 #> 775 Arlington Martin (TX) 00-0033868 3122132 #> 776 <NA> <NA> 2971505 #> 777 Kennedy (CA) 00-0033540 3152371 #> 778 Crystal Lake (IL) 00-0036686 NA #> 779 <NA> <NA> 3915192 #> 780 Southfield (MI) 00-0034019 3134681 #> 781 Waco (TX) 00-0033066 3051775 #> 782 Westside (TX) 00-0036266 4039052 #> 783 Episcopal (TX) 00-0036689 NA #> 784 Yates (TX) 00-0030148 16231 #> 785 Warren Central (IN) 00-0033010 2976194 #> 786 Birmingham (CA) 00-0029568 15047 #> 787 Highland (ID) 00-0036883 NA #> 788 Santa Margarita Catholic (CA) 00-0034311 3040499 #> 789 Gretna (NE) 00-0032956 2974317 #> 790 <NA> <NA> 3126225 #> 791 Brownwood (TX) 00-0034479 3052413 #> 792 Cypress Woods (TX) 00-0035358 3150744 #> 793 Jupiter (FL) 00-0030850 17082 #> 794 Desert Pines (NV) 00-0036634 NA #> 795 Carver (AL) 00-0035144 4040983 #> 796 Taft (CA) 00-0028180 14214 #> 797 Blue Springs (MO) 00-0033973 3125073 #> 798 Palo Duro (TX) 00-0034255 3046700 #> 799 East Nashville (TN) 00-0036276 4242206 #> 800 Monsignor Edward Pace (FL) 00-0033570 3045251 #> 801 Pedro Menendez (FL) 00-0035177 3128396 #> 802 Bethel (VA) 00-0036915 NA #> 803 Lincoln (IA) 00-0034811 3116667 #> 804 Heritage (CA) 00-0035646 3138834 #> 805 Hillsborough (FL) 00-0029008 15379 #> 806 Long Beach Wilson (CA) 00-0031426 16740 #> 807 Jacksonville (IL) 00-0035355 3116135 #> 808 Liberty (VA) 00-0034399 3045474 #> 809 North Forsyth (GA) 00-0034165 3049575 #> 810 Whitman (MD) 00-0033995 2976213 #> 811 Westfield (TX) 00-0036066 3676763 #> 812 North County (MO) 00-0034991 3910156 #> 813 JSerra Catholic (CA) 00-0036236 4039016 #> 814 Central Catholic (OH) 00-0036866 NA #> 815 Elmont (NY) 00-0034280 4034522 #> 816 <NA> <NA> 3050009 #> 817 Lafayette (KY) 00-0036267 4241482 #> 818 Carver (GA) 00-0029963 16076 #> 819 Berkeley (SC) 00-0036120 4384564 #> 820 Plainwell (MI) 00-0033057 2979534 #> 821 Leonardtown (MD) 00-0035042 3936185 #> 822 <NA> <NA> 3125286 #> 823 Downingtown East (PA) 00-0034369 3049872 #> 824 Wylie (TX) 00-0028986 15168 #> 825 Lake Travis (TX) 00-0034855 3052587 #> 826 Great Oak (CA) 00-0036654 NA #> 827 Oak Park (MI) 00-0034808 3915381 #> 828 <NA> 00-0035546 3929828 #> 829 Crest (NC) 00-0036685 NA #> 830 Cedartown (GA) 00-0034791 3128720 #> 831 Immokalee (FL) 00-0035628 3139602 #> 832 Holland Hall (OK) <NA> NA #> 833 South (OH) 00-0033923 3059915 #> 834 Acalnes (CA) <NA> 3915134 #> 835 St. Aloysius (MS) 00-0036113 NA #> 836 John Milledge Academy (GA) 00-0036232 4040774 #> 837 De La Salle (CA) 00-0032392 3043275 #> 838 Fallston (MD) 00-0036451 NA #> 839 Jamestown (NY) 00-0035039 3948283 #> 840 Cedar Grove (NJ) 00-0033885 3123076 #> 841 Wakulla (FL) 00-0034532 3128439 #> 842 Boyd Anderson (FL) 00-0033266 2971830 #> 843 Rock Island (IL) 00-0034258 3040137 #> 844 George Washington (WV) 00-0033562 3039725 #> 845 Isidore Newman (LA) 00-0031235 16733 #> 846 <NA> <NA> NA #> 847 Mendenhall (MS) 00-0034854 3047876 #> 848 Lutcher (LA) 00-0031382 16790 #> 849 Cass Tech (MI) 00-0036233 4258195 #> 850 Midway (TX) 00-0036019 4373937 #> 851 Mesquite (TX) 00-0032977 3042910 #> 852 Yazoo County (MS) 00-0035104 4249496 #> 853 American Heritage (FL) 00-0036999 NA #> 854 Hutto (TX) 00-0035101 3933568 #> 855 Choctaw County (MS) 00-0036110 3917569 #> 856 Amherst (WI) 00-0036376 4035788 #> 857 Big Foot (WI) 00-0030546 15793 #> 858 Varina (VA) 00-0032438 2979655 #> 859 Parkway (LA) 00-0036661 NA #> 860 Boynton Beach (FL) 00-0035499 3125705 #> 861 Avalon School (MD) 00-0036361 4040966 #> 862 Hillsborough (FL) 00-0033047 2977756 #> 863 Scotlandville Magnet (LA) 00-0036935 NA #> 864 Manhattan (KS) 00-0033222 2977689 #> 865 James Logan (CA) 00-0036986 NA #> 866 Linsly School (WV) 00-0031357 17474 #> 867 Cass Tech (MI) 00-0033928 3045207 #> 868 <NA> <NA> NA #> 869 Cleburne (TX) 00-0036372 3917006 #> 870 Cajon (CA) 00-0033512 2976099 #> 871 South Fort Myers (FL) 00-0032454 3045130 #> 872 Jenks (OK) 00-0034736 3116387 #> 873 Windsor (CT) 00-0036764 NA #> 874 Paraclete (CA) 00-0033083 2573317 #> 875 Woodlawn (LA) 00-0035301 3122135 #> 876 New Castle (PA) 00-0033877 3121415 #> 877 East English Village Prep (MI) 00-0036982 NA #> 878 Franklin County (VA) 00-0033917 3052977 #> 879 Long Reach (MD) 00-0036029 3930024 #> 880 Silver Bluff (SC) 00-0031411 16802 #> 881 Kahuku (HI) 00-0036379 4035660 #> 882 Chase (NC) 00-0033563 2977681 #> 883 Hamilton Southeastern (IN) 00-0032197 3040479 #> 884 Lorne Park Secondary (CAN) 00-0031177 16831 #> 885 North Shore (TX) 00-0034373 3928979 #> 886 Cordova (TN) 00-0036649 NA #> 887 Suwannee (FL) 00-0035247 4042141 #> 888 Mater Dei (CA) 00-0036767 NA #> 889 David Douglas (OR) 00-0036942 NA #> 890 Natchez (MS) 00-0031636 2574009 #> 891 Canada Prep Football Academy (CAN) 00-0036366 3892883 #> 892 Argyle (TX) 00-0036774 NA #> 893 Kingwood (TX) 00-0036033 4038539 #> 894 Long Beach Poly (CA) 00-0029492 15653 #> 895 Sioux Falls Washington (SD) 00-0036663 NA #> 896 Governor Simcoe Secondary School (CAN) <NA> 4682912 #> 897 Lincoln Pius X (NE) 00-0029621 14993 #> 898 Salmon River (ID) 00-0034674 3138677 #> 899 Bishop Luers (IN) 00-0033052 3052896 #> 900 Lincoln Southeast (NE) 00-0035413 3116097 #> 901 Herriman (UT) 00-0036028 3932336 #> 902 Central (AZ) 00-0036137 NA #> 903 <NA> <NA> 3120866 #> 904 Harrisburg (PA) 00-0036932 NA #> 905 South Sumter (FL) 00-0032382 3054962 #> 906 Plano East (TX) 00-0036769 NA #> 907 Raytown South (MO) 00-0036882 NA #> 908 Elder (OH) 00-0028394 14676 #> 909 Bishop Chatard (IN) 00-0031402 16709 #> 910 Lake-Lehman (PA) 00-0035679 4033748 #> 911 Coppell (TX) 00-0034352 3821577 #> 912 <NA> <NA> 3115356 #> 913 North Gwinnett (GA) 00-0035416 3728250 #> 914 John Tyler (TX) 00-0036770 NA #> 915 Steele (TX) 00-0036036 3915834 #> 916 Stafford Senior (VA) 00-0036886 NA #> 917 Noblesville (IN) 00-0035418 3929795 #> 918 Columbia (GA) 00-0033414 3048698 #> 919 UANL (MEX) 00-0036448 4686629 #> 920 Rancho Verde (CA) 00-0027947 13978 #> 921 <NA> <NA> 4331784 #> 922 Redemptorist (LA) 00-0031534 2577302 #> 923 James Bowie (TX) 00-0029709 15724 #> 924 Woodridge (OH) 00-0036458 NA #> 925 Camarillo (CA) 00-0029692 14950 #> 926 Lansing Catholic (MI) 00-0033662 2972515 #> 927 <NA> <NA> NA #> 928 Pine-Richland (PA) 00-0036384 3895785 #> 929 Haughton (LA) 00-0033077 2577417 #> 930 Lake Travis (TX) 00-0031395 16809 #> 931 Melrose (TN) 00-0035261 3916148 #> 932 Westlake (OH) 00-0036768 NA #> 933 A.C. Reynolds (NC) 00-0036139 4038815 #> 934 John Burroughs (MO) 00-0033045 3051392 #> 935 Franklin Heights (OH) 00-0036771 NA #> 936 Parkway (LA) 00-0036772 NA #> 937 American Heritage (FL) 00-0036766 NA #> 938 White Hall (AR) 00-0033528 2980073 #> 939 Tuttle (OK) 00-0033658 2991767 #> 940 Bingham (UT) 00-0034383 3117256 #> 941 Shepherd Hill Regional (MA) 00-0036032 4036275 #> 942 Sacred Heart-Griffin (IL) 00-0034867 3115928 #> 943 Alief Taylor (TX) 00-0036765 NA #> 944 White Station (TN) 00-0034418 4036335 #> 945 Pope John XXIII (NJ) 00-0033591 3121409 #> 946 Northwestern (FL) 00-0031544 2976499 #> 947 Brighton (UT) 00-0036646 NA #> 948 Monroe (GA) 00-0034764 4036348 #> 949 Dwyer (FL) 00-0035450 3121413 #> 950 Lake Cormorant (MS) 00-0036775 NA #> 951 Foster (TX) 00-0036358 4241389 #> 952 Booker (FL) 00-0036773 NA #> 953 Livonia (LA) 00-0036136 NA #> 954 <NA> <NA> NA #> 955 <NA> <NA> 3139223 #> 956 Rider (TX) 00-0036776 NA #> 957 Gwynn Park (MD) 00-0036034 4032749 #> 958 Dutchtown (LA) 00-0036391 4035448 #> 959 Hartford Union (WI) <NA> NA #> 960 Weyburn Comprehensive (CAN) 00-0031489 3173563 #> 961 Potomac (MD) 00-0032195 2969920 #> 962 Cypress Woods (TX) 00-0031904 2515641 #> 963 Memorial (TX) 00-0036662 NA #> 964 H.D. Woodson (DC) 00-0036106 4037647 #> 965 IMG Academy (FL) 00-0035370 4035425 #> 966 Mount Saint Joseph (MD) 00-0031041 16715 #> 967 Columbus (GA) 00-0035862 4037216 #> 968 Dudley 00-0036724 NA #> 969 Harrison (MI) 00-0036390 3894830 #> 970 Governor Thomas Jefferson (MD) 00-0033568 2976259 #> 971 American Heritage (FL) 00-0036874 NA #> 972 Dixie County (FL) 00-0034744 3115250 #> 973 Central (TX) 00-0035227 3929850 #> 974 Coral Springs Charter (FL) 00-0035780 NA #> 975 Westside (GA) 00-0027872 13254 #> 976 Martin County (FL) 00-0032971 2969860 #> 977 Byron P. Steele II (TX) 00-0036633 NA #> 978 Riverview (FL) 00-0036639 NA #> 979 St. Ignatius (OH) 00-0035678 3915525 #> 980 Mequon Homestead (WI) 00-0031270 16837 #> 981 Greenwood (MS) 00-0036668 NA #> 982 Lincoln (OH) 00-0036952 NA #> 983 <NA> <NA> 3127298 #> 984 Eaglecrest (CO) 00-0035557 3145343 #> 985 D. W. Daniel (SC) 00-0031795 2576508 #> 986 Saint Thomas (TX) 00-0036864 NA #> 987 Waubonsie Valley (IL) 00-0035073 4422407 #> 988 Northwest Whitfield (GA) 00-0035519 3131784 #> 989 Long Island Lutheran (NY) 00-0031242 16866 #> 990 Hope (AR) 00-0036420 4035566 #> 991 Clovis (CA) 00-0036727 NA #> 992 Plant (FL) 00-0034959 3125107 #> 993 Leilehua (HI) 00-0036399 4040910 #> 994 <NA> <NA> 2982821 #> 995 Wiggins (CO) 00-0035702 3125082 #> 996 Marmion Academy (IL) 00-0032395 2576245 #> 997 North Penn (PA) 00-0029822 16339 #> 998 Kennedale (TX) <NA> NA #> 999 Butler (NC) 00-0034421 3043276 #> 1000 Dothan (AL) 00-0034954 3124634 #> 1001 De Soto (TX) 00-0027940 13976 #> 1002 Timpview (UT) 00-0033298 3055105 #> 1003 East Lake (FL) 00-0036428 3919548 #> 1004 Mays (GA) 00-0035615 3728310 #> 1005 Imhotep Institute Charter (PA) 00-0036725 NA #> 1006 Decorah (IA) 00-0034368 3040150 #> 1007 Mater Dei (CA) 00-0036728 NA #> 1008 Blue Springs South (MO) 00-0034956 2512419 #> 1009 Hillgrove (GA) 00-0034832 3116733 #> 1010 Niles North (IL) 00-0036586 NA #> 1011 Warner (SD) 00-0036440 3930915 #> 1012 Gainesville (GA) 00-0034887 2577712 #> 1013 Cheyenne East (WY) 00-0035757 3925443 #> 1014 Highlands Ranch (CO) 00-0029890 16377 #> 1015 Castle View (CO) 00-0036722 NA #> 1016 Brenham (TX) 00-0034112 4038544 #> 1017 St. Petersburg Catholic (FL) 00-0031185 16842 #> 1018 Plainfield North (IL) 00-0035515 3916465 #> 1019 <NA> <NA> 3040468 #> 1020 Geneseo (IL) 00-0036720 NA #> 1021 Higley (AZ) 00-0034929 3128773 #> 1022 Cypress Creek (TX) 00-0031067 16932 #> 1023 Hargrave Military Academy (VA) 00-0029528 15096 #> 1024 Westlake (TX) 00-0034957 3123867 #> 1025 Westlake (CA) 00-0033538 4035662 #> 1026 Starr's Mill (GA) 00-0030092 15928 #> 1027 Kent Street (AUS) <NA> NA #> 1028 Miami Northwestern (FL) 00-0031237 16728 #> 1029 Lee's Summit (MO) 00-0035704 3924327 #> 1030 Shadle Park (WA) 00-0034955 3722362 #> 1031 Little Rock Christian Academy (AR) 00-0035448 4035102 #> 1032 Pike (IN) 00-0035912 3916721 #> 1033 Christian Brothers (NY) 00-0036548 NA #> 1034 Mainland (FL) 00-0036000 4042112 #> 1035 Bradford (WI) 00-0032144 2576434 #> 1036 Imperial (CA) 00-0034838 3122672 #> 1037 Wallace-Rose Hill (NC) 00-0036997 NA #> 1038 Baker County (FL) 00-0034208 3139033 #> 1039 Columbia (FL) 00-0034111 3116602 #> 1040 Hoffman Estates (IL) 00-0033576 2975863 #> 1041 Cedar Rapids Kennedy (IA) 00-0036718 NA #> 1042 Omaha South (NE) 00-0035644 4036131 #> 1043 Sacred Heart Griffin (IL) 00-0036423 4035115 #> 1044 Campbell County (WY) 00-0034932 3125402 #> 1045 Calhoun (GA) <NA> NA #> 1046 Navarre (FL) 00-0033953 3045118 #> 1047 West Potomac (VA) 00-0034103 3121398 #> 1048 Dowling Catholic (IA) 00-0033937 2977629 #> 1049 Brenham (TX) 00-0034348 3128429 #> 1050 Wharton (FL) 00-0036726 NA #> 1051 Cheltenham (PA) 00-0036723 NA #> 1052 Deerfield Beach (FL) 00-0036407 4241463 #> 1053 Mountain View (VA) 00-0034370 3057987 #> 1054 University City (CA) 00-0033375 3134353 #> 1055 Southern Durham (NC) 00-0035864 3700815 #> 1056 Lewisville (TX) 00-0034930 4422214 #> 1057 Westfield (TX) 00-0036439 4034964 #> 1058 IMG Academy (FL) 00-0036412 4240380 #> 1059 Paul W. Bryant (AL) 00-0036657 NA #> 1060 Westgate (LA) 00-0031319 17463 #> 1061 Southlake Carroll (TX) 00-0034495 3128412 #> 1062 Lee's Summit West (MO) 00-0032777 2971418 #> 1063 Fork Union Military Academy (VA) 00-0031306 16876 #> 1064 Tampa Gaither (FL) 00-0035270 3116175 #> 1065 South Grand Prairie (TX) 00-0036274 4241984 #> 1066 Glenn (NC) 00-0032635 2575523 #> 1067 Booker T. Washington (FL) 00-0032007 2516049 #> 1068 Lake Marion (SC) 00-0035634 3140141 #> 1069 Frostproof (FL) 00-0030041 16217 #> 1070 Marquette (IL) 00-0034639 3050916 #> 1071 Bartlesville (OK) 00-0036752 NA #> 1072 The Ensworth School (TN) 00-0033289 3051929 #> 1073 South Cobb (GA) 00-0036748 NA #> 1074 Bishop Sullivan (VA) 00-0036011 4030779 #> 1075 <NA> <NA> 3051864 #> 1076 Oceanside (CA) 00-0034948 3117249 #> 1077 Lloyd C. Bird (VA) 00-0036010 4046680 #> 1078 Meadowbrook (VA) 00-0036743 NA #> 1079 Brunswick (GA) 00-0034745 3042499 #> 1080 Choate Rosemary Hall (CT) 00-0035655 3915297 #> 1081 Bassfield (MS) 00-0035327 NA #> 1082 Holy Cross (NY) 00-0031870 2519038 #> 1083 Grafton (MA) 00-0036993 NA #> 1084 Pickerington North (OH) 00-0034614 3045238 #> 1085 Ardrey Kell (NC) 00-0036249 4046690 #> 1086 Mount Healthy (OH) 00-0032727 2576267 #> 1087 Lincoln Prep (MO) 00-0033880 3051852 #> 1088 Thomas County Central (GA) 00-0035531 3728253 #> 1089 Ardrey Kell (NC) 00-0032655 2980147 #> 1090 Columbia (AL) 00-0031566 2574519 #> 1091 Rockdale County (GA) 00-0034326 3128264 #> 1092 Robinson (FL) 00-0034461 3051369 #> 1093 Cretin-Derham Hall (MN) 00-0036444 3873928 #> 1094 Sanderson (NC) 00-0036624 NA #> 1095 Chavez (TX) 00-0029630 14944 #> 1096 Allen (TX) 00-0036954 NA #> 1097 West Jordan (UT) 00-0036238 4243257 #> 1098 <NA> <NA> NA #> 1099 Woodbridge (VA) 00-0034371 3126352 #> 1100 Woodland (SC) 00-0036455 3728306 #> 1101 Cleveland (TX) 00-0035334 3124052 #> 1102 Minor (AL) 00-0030500 2317118 #> 1103 Luther Burbank (CA) 00-0035540 3910660 #> 1104 Hunterdon Central (NJ) 00-0034171 3116158 #> 1105 Los Gatos (CA) 00-0034433 3125232 #> 1106 <NA> <NA> 3052687 #> 1107 Deer Park (TX) 00-0033862 3043234 #> 1108 Lampeter-Strasburg (PA) 00-0035189 3128444 #> 1109 Klein (TX) 00-0029421 15091 #> 1110 Birmingham Groves (MI) 00-0035330 4423367 #> 1111 Holy Cross (KY) 00-0036964 NA #> 1112 Northeast (TN) 00-0033557 3044729 #> 1113 Mira Costa (CA) 00-0035240 3124587 #> 1114 Indian River (VA) 00-0036744 NA #> 1115 Carver (AL) 00-0034336 3115310 #> 1116 Fairfax (AZ) 00-0032633 2576755 #> 1117 Franklin County (MS) 00-0030421 15830 #> 1118 Wyomissing (PA) 00-0033914 3043107 #> 1119 Lorain (OH) 00-0036086 3915508 #> 1120 Downers Grove South (IL) 00-0034067 2980138 #> 1121 Lufkin (TX) 00-0022455 8362 #> 1122 Sidwell Friends (DC) 00-0035486 3913020 #> 1123 DePere (WI) 00-0036478 NA #> 1124 Chanhassen (MN) 00-0034345 3128689 #> 1125 Penncrest (PA) 00-0036258 3930040 #> 1126 Elder (OH) 00-0036749 NA #> 1127 James Clemens (AL) 00-0036234 3915252 #> 1128 Green Valley (NV) 00-0034390 3122687 #> 1129 Ralston Valley (CO) 00-0033863 3046435 #> 1130 Desert Hills (UT) 00-0036880 NA #> 1131 <NA> <NA> 3044736 #> 1132 Haltom (TX) 00-0032785 2971557 #> 1133 Xavier (IA) 00-0035328 3145005 #> 1134 Butler (OH) 00-0032381 2976292 #> 1135 Grant Union (CA) 00-0036024 3912573 #> 1136 Ladue Horton Watkins (MO) 00-0035156 3916370 #> 1137 Xavier (CT) 00-0034177 3045169 #> 1138 Pearl City (HI) 00-0035735 4242418 #> 1139 Creekview (TX) 00-0035040 3116188 #> 1140 Marin Catholic (CA) 00-0033106 3046779 #> 1141 Central Catholic (OH) 00-0036006 4239083 #> 1142 St. Joseph's Prep (PA) 00-0036275 4259545 #> 1143 Stratford (TX) <NA> NA #> 1144 Page (NC) <NA> 4241940 #> 1145 Summit (CA) 00-0033948 2980453 #> 1146 Trinity (KY) 00-0034654 3052449 #> 1147 Abington (PA) 00-0035567 4421446 #> 1148 Ware County (GA) 00-0036751 NA #> 1149 Narbonne (CA) 00-0036670 NA #> 1150 Western Tech (MD) 00-0031922 3144062 #> 1151 Cy-Fair (TX) 00-0036754 NA #> 1152 Bishop Gorman (NV) 00-0035309 3932433 #> 1153 Eastside Catholic (WA) 00-0036008 4243318 #> 1154 Comanche (TX) 00-0036460 NA #> 1155 Federal Way (WA) 00-0036140 3910630 #> 1156 Chariton (IA) 00-0035229 4036133 #> 1157 Fullerton (CA) 00-0029738 15773 #> 1158 Centennial (CA) 00-0036750 NA #> 1159 Farmingdale (NY) 00-0035544 3126997 #> 1160 Mater Dei (CA) 00-0036963 NA #> 1161 Moorpark (CA) 00-0033840 3066074 #> 1162 Yoakum (TX) 00-0034273 3895857 #> 1163 Cascade (OR) 00-0032160 2587819 #> 1164 Stratford Academy (GA) 00-0036277 4035793 #> 1165 Los Osos (CA) 00-0033306 3056476 #> 1166 Greater Atlanta Christian (GA) 00-0032464 2973405 #> 1167 East Lincoln (NC) 00-0036753 NA #> 1168 Arabia Mountain (GA) 00-0032054 2972460 #> 1169 Jonesboro (AR) <NA> NA #> 1170 Spoto (FL) 00-0032626 3115913 #> 1171 Gilman School (MD) 00-0031972 2577808 #> 1172 Eureka (CA) 00-0036273 3915139 #> 1173 Winder-Barrow (GA) 00-0034468 3124849 #> 1174 Eastside (GA) 00-0036901 NA #> 1175 Lancaster (TX) <NA> NA #> 1176 Bishop O'Dowd (CA) 00-0033524 3052170 #> 1177 Miramar (FL) 00-0036645 NA #> 1178 Rocky River (NC) 00-0034728 3895429 #> 1179 Flanagan (FL) 00-0035970 4240024 #> 1180 Dollarway (AR) 00-0035079 4040870 #> 1181 West Brook (TX) 00-0036462 NA #> 1182 Caravel Academy (DE) 00-0034968 3915419 #> 1183 Calvert Hall (MD) 00-0031584 2582132 #> 1184 Doherty (MA) 00-0034780 3122797 #> 1185 Woodlawn (LA) 00-0035962 3928920 #> 1186 Summit (TX) 00-0036243 4038538 #> 1187 East (TN) 00-0033124 2971364 #> 1188 Washington (IL) 00-0036790 NA #> 1189 Boylan Catholic (IL) 00-0032412 2974348 #> 1190 Nimitz (TX) 00-0035971 3916220 #> 1191 Stephenson (GA) 00-0036076 3915186 #> 1192 Wilmer Amina Carter (CA) 00-0033120 3122752 #> 1193 George Ranch (TX) 00-0034984 3917340 #> 1194 <NA> <NA> 2516897 #> 1195 American Heritage (FL) 00-0036642 NA #> 1196 Erie-Prophetstown (IL) 00-0036788 NA #> 1197 Orange (NJ) 00-0035969 3930048 #> 1198 <NA> <NA> 3052509 #> 1199 Plainfield East (IL) 00-0034185 3045242 #> 1200 Cane Ridge (TN) 00-0036053 NA #> 1201 Rockford (MI) 00-0033490 2977626 #> 1202 Spring Lake Park (MN) 00-0036015 3930912 #> 1203 St. Joseph's Prep (PA) 00-0036246 3929936 #> 1204 Georgetown (TX) 00-0025580 10636 #> 1205 Selwyn House <NA> NA #> 1206 John Ehret (LA) 00-0036090 4035577 #> 1207 Stephenson (GA) 00-0031935 2577446 #> 1208 Paramus Catholic (NJ) 00-0034967 4046523 #> 1209 J.W. Sexton (MI) 00-0035790 4361650 #> 1210 Lake Worth (FL) 00-0036239 4240655 #> 1211 South County (VA) 00-0034754 3051746 #> 1212 Reagan (TX) 00-0034999 3116431 #> 1213 Greenville (AL) 00-0031576 3043168 #> 1214 Cypress Lake (FL) 00-0032401 3040180 #> 1215 Trinity (TX) 00-0035965 3676832 #> 1216 Liberty (CA) 00-0035961 4035817 #> 1217 Burnsville (MN) 00-0036270 4034781 #> 1218 Bennett (NY) 00-0036658 NA #> 1219 Dillard (FL) 00-0035085 3128675 #> 1220 Fairview (CO) 00-0036789 NA #> 1221 Collierville (TN) 00-0034168 2980350 #> 1222 Mainland Regional (NJ) <NA> NA #> 1223 Mounds View (MN) 00-0031433 16759 #> 1224 Clarksdale (MS) 00-0035526 3115485 #> 1225 Brentwood (TN) 00-0033082 2576736 #> 1226 Ross (OH) 00-0036242 3929794 #> 1227 Bay Port (WI) 00-0036655 NA #> 1228 Placer (CA) 00-0036784 NA #> 1229 Nashville Community (IL) 00-0036631 NA #> 1230 Miamisburg (OH) 00-0036622 NA #> 1231 Seymour (WI) 00-0036786 NA #> 1232 Lafayette Central Catholic (IN) 00-0036785 NA #> 1233 Marian Central Catholic (IL) 00-0029419 15054 #> 1234 Columbia (NJ) 00-0035084 3871880 #> 1235 Junipero Serra (CA) 00-0030074 15963 #> 1236 Mullen (CO) 00-0034162 3126368 #> 1237 Pleasant Valley (CA) 00-0023459 8439 #> 1238 Oviedo (FL) 00-0031407 16724 #> 1239 Liberty (CA) 00-0036264 4036378 #> 1240 Cape Coral (FL) 00-0034131 3040535 #> 1241 Milford Academy (NY) 00-0035394 3921586 #> 1242 West Orange (FL) 00-0034995 3932449 #> 1243 Atascocita (TX) 00-0035973 4039358 #> 1244 Burges (TX) 00-0033293 3042519 #> 1245 Lawrence Academy (MA) 00-0036265 4239934 #> 1246 Columbus (MS) 00-0036669 NA #> 1247 Long Beach Poly (CA) 00-0024243 9614 #> 1248 Kingfisher (OK) 00-0035671 3917962 #> 1249 Valley (IA) 00-0036456 4036129 #> 1250 Folsom (CA) 00-0036332 3914151 #> 1251 IMG Academy (FL) 00-0035539 4035014 #> 1252 Timpview (UT) 00-0033117 2980444 #> 1253 McHenry East (IL) 00-0033757 2975674 #> 1254 <NA> 00-0035083 3116573 #> 1255 Dakota (MI) 00-0037016 NA #> 1256 Alcoa (TN) 00-0028002 14053 #> 1257 Palo Alto (CA) 00-0031381 16800 #> 1258 Swansboro (NC) 00-0035385 3116182 #> 1259 Hill-McCloy (MI) 00-0035480 4408988 #> 1260 West Brook (TX) 00-0035750 2974503 #> 1261 Louisville (MS) 00-0036463 NA #> 1262 Servite (CA) 00-0034279 3932442 #> 1263 Paso Robles (CA) <NA> NA #> 1264 Knoxville Catholic (TN) 00-0036991 NA #> 1265 Urbandale (IA) 00-0034521 3128390 #> 1266 Lakewood (FL) 00-0034272 3051738 #> 1267 Dwight Morrow (NJ) 00-0035593 3128317 #> 1268 Harrison (MI) 00-0032055 2977609 #> 1269 Franklin (MD) 00-0036782 NA #> 1270 Woodford County (KY) 00-0036747 NA #> 1271 Wharton (FL) 00-0032758 3054955 #> 1272 St. Joseph's Prep (PA) 00-0036304 3929653 #> 1273 West Side Leadership Academy (IN) 00-0035244 4240780 #> 1274 Peachtree Ridge (GA) 00-0031372 16719 #> 1275 Burlington Township (NJ) 00-0034990 3916676 #> 1276 Massillon Washington (OH) 00-0033882 3051391 #> 1277 Riverside (WI) 00-0033038 2970716 #> 1278 East English Village (MI) 00-0033566 3040145 #> 1279 Christian Brothers College 00-0034485 4331768 #> 1280 Saks (AL) 00-0034278 3134448 #> 1281 Kentwood (LA) 00-0036147 NA #> 1282 Luther Burbank (CA) 00-0031097 16927 #> 1283 Dutchtown (LA) 00-0034361 3931399 #> 1284 Dunnellon (FL) 00-0031338 16768 #> 1285 Bassfield (MS) 00-0034594 3128746 #> 1286 Bassfield (MS) 00-0034792 3123963 #> 1287 Allen Academy (MI) 00-0034488 4334405 #> 1288 Kinston (NC) 00-0033920 3049268 #> 1289 Central Daniel (SC) 00-0033096 2977679 #> 1290 Rowlett (TX) 00-0035279 3929865 #> 1291 Harris County (GA) 00-0032970 2977647 #> 1292 Sandalwood (FL) 00-0033782 3045377 #> 1293 <NA> <NA> 3052088 #> 1294 South Central (NC) <NA> NA #> 1295 Mesquite (AZ) 00-0036568 NA #> 1296 Elkins (TX) 00-0036289 4038557 #> 1297 James Madison (TX) 00-0033469 3046343 #> 1298 Alpharetta (GA) 00-0036065 3911982 #> 1299 Montini Catholic (IL) 00-0033940 2979523 #> 1300 Center (MO) 00-0033131 3040471 #> 1301 Honolulu Punahou (HI) 00-0032726 2971573 #> 1302 John Curtis Christian (LA) 00-0036844 NA #> 1303 Bishop O'Dowd (CA) 00-0033344 2978211 #> 1304 Cherokee Trail (CO) 00-0034163 3138764 #> 1305 Rockdale County (GA) 00-0031740 3059880 #> 1306 Kamehameha (HI) 00-0032437 3050851 #> 1307 Pinson Valley (AL) 00-0033547 3051750 #> 1308 Garfield (OH) 00-0029643 14936 #> 1309 Blackville-Hilda (SC) 00-0030761 17266 #> 1310 Hiram (GA) 00-0036224 3916409 #> 1311 Alief Taylor (TX) 00-0034402 3039783 #> 1312 King Low Heywood Thomas (CT) 00-0031308 16888 #> 1313 Oxford (AL) 00-0034500 3131775 #> 1314 Hazelwood East (MO) 00-0031361 16767 #> 1315 Mountain Pointe (AZ) 00-0036943 NA #> 1316 Perry (OH) 00-0033444 2577854 #> 1317 Westlake (GA) 00-0027224 13729 #> 1318 Pleasure Ridge Park (KY) 00-0031127 17061 #> 1319 IMG Academy (FL) 00-0035258 3886633 #> 1320 Cypress Bay (FL) 00-0033960 2969959 #> 1321 Martin (TX) 00-0030273 16549 #> 1322 Trinity Catholic (FL) 00-0034817 3916414 #> 1323 Lebanon (MO) 00-0031282 16742 #> 1324 Klein Oak (TX) 00-0036783 NA #> 1325 Green Bay Southwest (WI) 00-0035245 3126035 #> 1326 Southlake Carroll (TX) 00-0036781 NA #> 1327 Roncalli (IN) 00-0032787 2969262 #> 1328 Odessa (TX) 00-0028076 14116 #> 1329 Miami Southridge (FL) 00-0030792 17211 #> 1330 Two Rivers (WI) 00-0036102 3921964 #> 1331 Monroe County (AL) 00-0035234 3131498 #> 1332 Hazelwood Central (MO) 00-0033569 3122923 #> 1333 Columbia (FL) 00-0032380 3051890 #> 1334 Rockhurst (MO) 00-0036195 3895840 #> 1335 St. Joseph's (AUS) 00-0033729 3051397 #> 1336 Greater Atlanta Christian School (GA) 00-0036898 NA #> 1337 Gainesville (GA) 00-0033537 3122840 #> 1338 Hampton (VA) 00-0028118 14163 #> 1339 Hagerty (FL) 00-0032436 2574630 #> 1340 Scotlandville Magnet (LA) 00-0034253 3126246 #> 1341 Southwestern Academy (MI) 00-0027966 13981 #> 1342 Plano (TX) 00-0030288 15971 #> 1343 Denver South (CO) 00-0034109 3052117 #> 1344 Coral Gables (FL) 00-0034449 3122716 #> 1345 Clinton (IA) 00-0032187 2508176 #> 1346 South Jones (MS) 00-0036069 4362878 #> 1347 Sparta (IL) 00-0033049 2980197 #> 1348 Cedar Creek <NA> 3042735 #> 1349 Champlain-Lennoxville (CAN) 00-0033421 4081127 #> 1350 Union Grove (GA) 00-0034364 3128452 #> 1351 Bishop Gorman (NV) 00-0036556 NA #> 1352 Pope John XXIII (NJ) 00-0034439 3122920 #> 1353 Brush (OH) 00-0033439 2971281 #> 1354 La Costa Canyon (CA) 00-0036453 2575891 #> 1355 Pleasure Ridge Park (KY) 00-0033911 3059760 #> 1356 Thomas Jefferson (FL) 00-0032398 2576581 #> 1357 Lufkin (TX) 00-0034366 3915823 #> 1358 Gadsden City (AL) 00-0034669 4035853 #> 1359 Clay-Chalkville (AL) 00-0036554 NA #> 1360 Darlington (WI) 00-0032543 2977800 #> 1361 North Paulding (GA) 00-0032128 2578533 #> 1362 East Lake (FL) 00-0033706 3122839 #> 1363 Lincoln (CA) 00-0031236 16731 #> 1364 Raleigh (MS) 00-0031339 16791 #> 1365 Christian Brothers (TN) 00-0034353 3050487 #> 1366 Spring Valley (SC) 00-0027691 13226 #> 1367 McGill-Toolen <NA> NA #> 1368 Lakota West (OH) 00-0032383 2578475 #> 1369 El Campo (TX) 00-0032443 2971563 #> 1370 Clovis West (CA) 00-0034623 3125287 #> 1371 De La Salle (CA) 00-0031269 16808 #> 1372 Southwest DeKalb (GA) 00-0035637 3910229 #> 1373 Norland (FL) 00-0030575 15810 #> 1374 Gwynn Park (MD) 00-0035393 3910754 #> 1375 Lamar (TX) 00-0034213 3929847 #> 1376 Blake (FL) 00-0036222 4044540 #> 1377 Lowndes (GA) 00-0033393 4218312 #> 1378 Encino Crespi (CA) 00-0035534 3912544 #> 1379 Lumen Christi Catholic (MI) 00-0035530 3929835 #> 1380 Chestnut Hill (PA) 00-0032198 2511090 #> 1381 Suitland (MD) 00-0034767 3124574 #> 1382 Layton (UT) 00-0036253 4035661 #> 1383 Millington Central (TN) 00-0034091 3050199 #> 1384 Lake Wales (FL) 00-0032830 3916678 #> 1385 Miami Southridge (FL) 00-0036481 NA #> 1386 Maret (DC) 00-0033053 2976210 #> 1387 East Bay (FL) <NA> 3914143 #> 1388 Bishop Hendricken (RI) 00-0036479 NA #> 1389 Barringer (NJ) 00-0034354 3047512 #> 1390 Eagle's Landing Christian (GA) 00-0033588 3052894 #> 1391 Don Bosco Prep (NJ) 00-0033964 3051942 #> 1392 Ranchview (TX) 00-0036480 NA #> 1393 Prosper (TX) 00-0034969 3124970 #> 1394 Rowlett (TX) 00-0030069 15858 #> 1395 Lafayette (NY) 00-0035857 4034530 #> 1396 Tarboro (NC) 00-0034359 3040513 #> 1397 Taft (CA) 00-0032871 2577278 #> 1398 Patrick Henry (CA) 00-0035850 4041572 #> 1399 Murphy (AL) 00-0034325 3126489 #> 1400 Mitchell County (GA) 00-0033952 4058825 #> 1401 Fond du Lac (WI) 00-0036227 3929658 #> 1402 Oscar Smith (VA) 00-0034394 3116761 #> 1403 Honolulu Punahou (HI) 00-0032378 2971282 #> 1404 John Adams (IN) 00-0036215 3915470 #> 1405 Sprayberry (GA) 00-0035849 3915165 #> 1406 Sunset (FL) 00-0034173 4034949 #> 1407 Vista Murrieta (CA) 00-0035076 3116367 #> 1408 Poteet (TX) 00-0034835 3821576 #> 1409 Lake View (SC) 00-0034846 3056362 #> 1410 Brighton (UT) 00-0036494 NA #> 1411 Hightower (TX) 00-0034424 3126179 #> 1412 Benedictine (OH) 00-0029418 15068 #> 1413 NSU University School (FL) 00-0034090 3048912 #> 1414 Foothill (CA) 00-0035687 3117253 #> 1415 Zebulon B. Vance <NA> NA #> 1416 Marmion Academy (IL) 00-0036229 3929928 #> 1417 Al Raby (IL) 00-0034410 3128252 #> 1418 North Crowley (TX) 00-0034987 3071353 #> 1419 La Salle College (PA) 00-0034431 3124005 #> 1420 Hollidaysburg Area (PA) 00-0032753 2566045 #> 1421 G.A.R. Memorial (PA) 00-0031581 2976632 #> 1422 Cranford (NJ) 00-0036483 NA #> 1423 Olathe South (KS) 00-0034836 3121595 #> 1424 Central (NE) 00-0031734 3163375 #> 1425 Bellevue (WA) 00-0033245 2978298 #> 1426 Red Bank Catholic (NJ) 00-0034342 3129308 #> 1427 Trinity (TX) 00-0033578 3052513 #> 1428 Paulsboro (NJ) 00-0033560 3047614 #> 1429 Stoney Creek (MI) 00-0030584 15790 #> 1430 Clay (FL) 00-0033788 2972351 #> 1431 Central Valley (WA) 00-0033619 3060187 #> 1432 Hamilton Union (CA) 00-0033269 3914922 #> 1433 Westlake (TX) 00-0036879 NA #> 1434 St. Joseph's Collegiate Institute (NY) 00-0033597 2977665 #> 1435 Chandler (AZ) 00-0031589 2577189 #> 1436 Arlington Seguin (TX) <NA> NA #> 1437 Century (ND) 00-0032950 2573079 #> 1438 Lake Stevens (WA) 00-0036226 4035003 #> 1439 Pace Academy (GA) 00-0036493 NA #> 1440 Garner (NC) 00-0034367 3916430 #> 1441 St. Benedict at Auburndale (TN) 00-0034400 3051891 #> 1442 George Ranch (TX) 00-0036027 4038533 #> 1443 Salem (NJ) 00-0036223 4242335 #> 1444 Newsome (FL) <NA> 3930901 #> 1445 Booker (FL) 00-0033951 3139605 #> 1446 Chandler (AZ) 00-0032417 2971589 #> 1447 Butler (NC) 00-0036117 4045702 #> 1448 Lindsay Thurber (CAN) 00-0035853 4611135 #> 1449 Westlake (TX) 00-0036876 NA #> 1450 Pittsburgh Central Catholic (PA) <NA> NA #> 1451 Sumrall (MS) 00-0034420 4035379 #> 1452 St. Ignatius (CA) 00-0034491 4032479 #> 1453 Cathedral (IN) 00-0030181 16504 #> 1454 Middleburg Academy (VA) 00-0033217 2998565 #> 1455 Hunter (UT) 00-0036005 3930298 #> 1456 Wesson Attendance Center (MS) 00-0035852 3930097 #> 1457 Patrick Henry (CA) 00-0036228 4054085 #> 1458 St. Vincent–St. Mary (OH) 00-0035639 3121410 #> 1459 St. Aloysius (MS) 00-0035848 4374496 #> 1460 Langham Creek (TX) 00-0035978 4035221 #> 1461 Liberty Christian (VA) 00-0036482 NA #> 1462 Midfield (AL) 00-0032112 2515759 #> 1463 <NA> <NA> 2980808 #> 1464 Reynoldsburg (OH) 00-0035021 4061956 #> 1465 Colonial Forge (VA) 00-0035589 3916071 #> 1466 Henry Wise (MD) 00-0033251 2978109 #> 1467 Miami Springs (FL) 00-0029608 14924 #> 1468 Cheshire Academy (CT) 00-0036491 NA #> 1469 Bishop Amat (CA) 00-0036495 NA #> 1470 Oaks Christian (CA) 00-0036252 4035687 #> 1471 Lakewood (FL) 00-0033926 3054026 #> 1472 Linfield Christian (CA) 00-0036807 NA #> 1473 Eastern Christian Academy (MD) 00-0035375 3115968 #> 1474 Neville (LA) 00-0036499 NA #> 1475 West Covina (CA) 00-0033543 3127299 #> 1476 Columbus (FL) 00-0036281 4240596 #> 1477 St. Michael's Academy (TX) 00-0036116 NA #> 1478 Spalding (GA) 00-0036579 NA #> 1479 McGavock (TN) 00-0036316 4371737 #> 1480 American Heritage (FL) 00-0036974 NA #> 1481 East Hamilton (TN) 00-0034516 3122160 #> 1482 Buchtel (OH) 00-0032525 2970661 #> 1483 Robert E. Lee (AL) 00-0036306 4035505 #> 1484 New Hope (AL) 00-0033792 3051901 #> 1485 Ralston Valley (CO) 00-0035378 3918331 #> 1486 IMG Academy (FL) 00-0036941 NA #> 1487 Walled Lake Western (MI) 00-0033903 3051716 #> 1488 Admiral Farragut Academy (FL) 00-0033941 2969961 #> 1489 Meadowdale (OH) 00-0036465 NA #> 1490 Globe Tech (NY) 00-0033046 3115914 #> 1491 Natrona County (WY) 00-0034842 3115249 #> 1492 Kew (AUS) 00-0033064 2971498 #> 1493 Lithonia (GA) 00-0036868 NA #> 1494 Montclair (NJ) 00-0035642 3915239 #> 1495 South Grand Prairie (TX) 00-0032667 2574891 #> 1496 Groveport Madison (OH) 00-0033907 3042476 #> 1497 Haines City (FL) 00-0032131 2507719 #> 1498 Dunnellon (FL) 00-0029799 16090 #> 1499 Nuuuli Poly Tech (ASM) 00-0034251 3052059 #> 1500 Bishop Shanahan (PA) 00-0035822 4038987 #> 1501 Mainland Regional (NJ) 00-0036498 NA #> 1502 Brenham (TX) 00-0032261 2971698 #> 1503 Jeffersontown (KY) 00-0033535 4220624 #> 1504 Pickerington Central (OH) 00-0036262 3915520 #> 1505 Bingham (UT) 00-0036881 NA #> 1506 Middleton (WI) 00-0032087 2998120 #> 1507 Lakewood (NJ) 00-0036434 3923413 #> 1508 Oakleaf (FL) 00-0036235 4037468 #> 1509 Wenonah (AL) 00-0035680 3110565 #> 1510 Summer Creek (TX) 00-0035670 3139453 #> 1511 Amite County (MS) 00-0032215 3040207 #> 1512 IMG Academy (FL) 00-0036508 NA #> 1513 North Shore (TX) 00-0036286 4242205 #> 1514 Golden Valley (CA) 00-0034428 3045267 #> 1515 Bellevue (WA) 00-0032968 3047566 #> 1516 McKinney Boyd (TX) 00-0035827 3928931 #> 1517 Carrollton (GA) 00-0035312 3121587 #> 1518 Bamberg-Ehrhardt (SC) 00-0032255 2516325 #> 1519 Anderson (OH) 00-0031122 17388 #> 1520 East Burke (NC) 00-0030827 17037 #> 1521 Blanchet Catholic (OR) 00-0036272 4611506 #> 1522 St. Thomas Aquinas (FL) 00-0031369 16770 #> 1523 Palm Beach Central (FL) 00-0034522 3123064 #> 1524 East St. Louis (IL) 00-0035832 4035113 #> 1525 Dawson-Bryant Coal Grove (OH) 00-0035829 3920814 #> 1526 Florida State University School (FL) 00-0035558 3126153 #> 1527 Episcopal (TX) 00-0036975 NA #> 1528 Hugh M. Cummings (NC) 00-0034380 3116739 #> 1529 Friendship Collegiate Academy (DC) 00-0035220 3115949 #> 1530 West Monroe (LA) 00-0033889 3115313 #> 1531 Cocoa (FL) 00-0035237 4034961 #> 1532 Columbia (MS) 00-0034437 3115480 #> 1533 Marysville-Pilchuck (WA) 00-0036312 3124900 #> 1534 Cartersville (GA) 00-0036971 NA #> 1535 Brandon (MS) 00-0035289 4038524 #> 1536 Battle Ground Academy (TN) 00-0033936 2979520 #> 1537 Sachse (TX) 00-0035184 3699935 #> 1538 Knoxville West (TN) 00-0035835 3917812 #> 1539 Naples (FL) 00-0031045 16777 #> 1540 Jennings (LA) 00-0036973 NA #> 1541 Rockford Lutheran (IL) 00-0035831 4052042 #> 1542 Marquette (WI) 00-0033854 2983509 #> 1543 Beaverton (OR) <NA> 3886819 #> 1544 Naperville North (IL) 00-0031951 2508079 #> 1545 West Morris Mendham (NJ) 00-0034101 3047488 #> 1546 Perry (OH) 00-0036887 NA #> 1547 Cardinal Spellman (NY) 00-0031484 2531358 #> 1548 Hawley (MN) 00-0035823 3930900 #> 1549 Mepham (NY) 00-0036250 3914240 #> 1550 Nease (FL) 00-0027876 13200 #> 1551 Point Loma (CA) 00-0033572 3061612 #> 1552 Callaway (GA) 00-0035313 3915174 #> 1553 Clear Creek (TX) 00-0032728 2586703 #> 1554 Eitwanda (CA) 00-0029293 15072 #> 1555 Pima (AZ) 00-0035901 4282647 #> 1556 Havelock (NC) 00-0033111 3048897 #> 1557 <NA> <NA> 2970192 #> 1558 North Gwinnett 00-0036496 NA #> 1559 Hallandale (FL) 00-0035826 4034944 #> 1560 St. Thomas Aquinas (FL) 00-0032208 2579604 #> 1561 Crete-Monee (IL) 00-0032951 3051889 #> 1562 Dunbar (MD) 00-0030525 15786 #> 1563 DeSoto (TX) 00-0036268 4243160 #> 1564 Alexandria (LA) 00-0034777 3115394 #> 1565 Biloxi (MS) 00-0036497 NA #> 1566 South Forsyth (GA) 00-0036858 NA #> 1567 Valley Christian (CA) 00-0036254 4039043 #> 1568 <NA> <NA> 4044148 #> 1569 Williamsburg (IA) 00-0032455 2582448 #> 1570 <NA> <NA> 3045158 #> 1571 Bessemer City (AL) 00-0035892 3917290 #> 1572 Laurel (MS) 00-0036385 4040652 #> 1573 Miami Carol City (FL) 00-0035147 3924364 #> 1574 Plantation (FL) 00-0034145 3128630 #> 1575 McComb (MS) 00-0034573 4037361 #> 1576 Miami Northwestern (FL) 00-0035684 3915163 #> 1577 Bryan Station (KY) 00-0036683 NA #> 1578 First Coast (FL) <NA> NA #> 1579 Germantown (PA) 00-0032958 2971248 #> 1580 Altavista (VA) 00-0035625 3917909 #> 1581 New Bern (NC) 00-0034843 3895841 #> 1582 Mount St. Joseph (MD) 00-0036848 NA #> 1583 North Forney (TX) 00-0034680 3122136 #> 1584 Colton (CA) 00-0030665 17259 #> 1585 Minden (LA) 00-0036374 4040432 #> 1586 Stansbury Park (UT) 00-0036677 NA #> 1587 Southridge (ML) 00-0036678 NA #> 1588 Taylor (TX) 00-0035878 3916207 #> 1589 Grady (GA) 00-0036680 NA #> 1590 St. Augustine (LA) 00-0030459 15851 #> 1591 Pflugerville (TX) 00-0030503 15976 #> 1592 High Point Central (NC) 00-0035135 3914553 #> 1593 IMG Academy (FL) 00-0036632 NA #> 1594 Central (OH) 00-0033541 3045210 #> 1595 Glenville (OH) 00-0032210 2576242 #> 1596 Bishop Timon (NY) 00-0034612 3052926 #> 1597 Warren De La Salle (MI) 00-0036378 3915487 #> 1598 Mary Persons (GA) 00-0036682 NA #> 1599 Waverly (MI) 00-0035779 4408979 #> 1600 Parkway Central (MO) 00-0035656 3121634 #> 1601 Americus-Sumter (GA) 00-0035796 NA #> 1602 University City (MO) 00-0035890 4058925 #> 1603 Goldsboro (NC) 00-0032387 3115312 #> 1604 Ocean Lakes (VA) 00-0034818 3122930 #> 1605 Houston (MS) 00-0032762 3044859 #> 1606 West Morris Central (NJ) 00-0031595 2515270 #> 1607 Somerset (WI) 00-0031152 17377 #> 1608 Westminster (GA) 00-0033303 3055899 #> 1609 Our Lady of Good Counsel (MD) 00-0034781 3045132 #> 1610 Oneonta (AL) 00-0036681 NA #> 1611 Starkville (MS) 00-0036362 4259804 #> 1612 Clearview (OH) 00-0031348 16883 #> 1613 Sycamore (IL) 00-0034296 3140643 #> 1614 Oakland (TN) 00-0034153 3122169 #> 1615 Horn Lake (MS) 00-0035157 3122906 #> 1616 Lone Star (TX) 00-0036621 NA #> 1617 Treasure Coast (FL) 00-0035879 4043618 #> 1618 Washington (OK) 00-0030615 16665 #> 1619 Xavier (IA) 00-0034727 3052422 #> 1620 Midland (MI) 00-0033831 3042702 #> 1621 St. Anne's-Belfield (VA) 00-0030441 15801 #> 1622 Collège Andre-Grasset (CAN) 00-0031022 16958 #> 1623 Archbishop Alter (OH) 00-0032391 2577773 #> 1624 Lincoln-Way East (IL) 00-0035149 3115922 #> 1625 Shawnee (OK) 00-0036623 NA #> 1626 University (TN) 00-0036660 NA #> 1627 Jesuit (OR) 00-0029164 15422 #> 1628 New Canaan (CT) 00-0036367 NA #> 1629 Peachtree Ridge (GA) 00-0034752 3116370 #> 1630 <NA> <NA> NA #> 1631 Coffee (GA) 00-0035504 3128449 #> 1632 Boone (FL) 00-0035889 3915398 #> 1633 Terra Nova (CA) 00-0035988 4055171 #> 1634 Whitehouse (TX) 00-0033873 3139477 #> 1635 Wilson (PA) 00-0026197 11291 #> 1636 Lamar (TX) 00-0036679 NA #> 1637 <NA> <NA> 3118131 #> 1638 Sprayberry (GA) 00-0031376 16782 #> 1639 Jenks (OK) 00-0035148 4361606 #> 1640 Vandebilt Catholic (LA) 00-0033295 3042494 #> 1641 Nottingham (NY) 00-0035715 3925346 #> 1642 John Ehret (LA) 00-0034301 3115375 #> 1643 Catholic (LA) 00-0036360 4242214 #> 1644 Imhotep Institute Charter (PA) 00-0035881 4241213 #> 1645 Edgewood Academy (AL) 00-0036230 4035518 #> 1646 Leominster (MA) 00-0036637 NA #> 1647 Cleveland Heights (OH) 00-0030506 15847 #> 1648 Bishop Carroll (KS) 00-0032062 2514206 #> 1649 Grandview (CO) 00-0033763 2971280 #> 1650 Portage Northern (MI) 00-0034192 4329472 #> 1651 Peach County (GA) 00-0032775 3043116 #> 1652 JH Rose (NC) 00-0036647 NA #> 1653 New Brunswick (NJ) 00-0035883 4036055 #> 1654 <NA> <NA> 3119490 #> 1655 Blue Valley Northwest (KS) 00-0035960 3916124 #> 1656 Madison Prep (LA) 00-0033933 3066052 #> 1657 South Park (NY) 00-0035547 4408854 #> 1658 Washington (FL) 00-0034772 3915097 #> 1659 Elbert County (GA) 00-0035140 4035004 #> 1660 James Madison Memorial (WI) 00-0034395 3120659 #> 1661 <NA> <NA> NA #> 1662 Blue Springs (MO) 00-0035181 3120588 #> 1663 Archbishop Alter (OH) <NA> NA #> 1664 <NA> <NA> 3124538 #> 1665 Washington (IN) 00-0033474 2980460 #> 1666 <NA> <NA> 4028212 #> 1667 Robinson (FL) 00-0034297 4036416 #> 1668 Coffee (GA) 00-0033040 3116406 #> 1669 <NA> <NA> NA #> 1670 Layton (UT) 00-0033481 3046399 #> 1671 Hinsdale Central (IL) 00-0034804 3134666 #> 1672 Loyola (CA) 00-0035665 4046536 #> 1673 Summit (CA) 00-0032641 2972896 #> 1674 Brentwood Academy (TN) 00-0033055 3045373 #> 1675 Creekside (FL) 00-0034203 4239833 #> 1676 Salpointe Catholic (AZ) 00-0034562 3153653 #> 1677 Hanford (CA) 00-0036077 4040901 #> 1678 Northridge (UT) 00-0035945 3932348 #> 1679 <NA> <NA> 3116645 #> 1680 Cullman (AL) 00-0036601 NA #> 1681 Mission Hills (CA) 00-0036608 NA #> 1682 Fair Park (LA) 00-0036904 NA #> 1683 Steel Valley (PA) 00-0036599 NA #> 1684 Concord-Carlisle (MA) 00-0036600 NA #> 1685 Fairfax (VA) 00-0035669 3116179 #> 1686 Old Tappan (NJ) 00-0036431 4040613 #> 1687 Sehome (WA) 00-0035663 4039007 #> 1688 Assumption (IA) 00-0035609 3144988 #> 1689 Junipero Serra (CA) 00-0035783 4048718 #> 1690 Prestonwood Christian (TX) 00-0035830 3917012 #> 1691 Peach County (GA) 00-0035938 4035013 #> 1692 San Marcos (CA) 00-0036421 4035663 #> 1693 Notre Dame (TN) 00-0035573 3675805 #> 1694 Wise (MD) 00-0036155 4028749 #> 1695 Rocky Mountain (ID) 00-0035944 4032481 #> 1696 Ryan (TX) 00-0036855 NA #> 1697 <NA> <NA> 3047191 #> 1698 East (TN) 00-0035928 4040703 #> 1699 La Habra (CA) 00-0035667 3127294 #> 1700 Stroudsburg (PA) 00-0034810 3047495 #> 1701 Penn Hills (PA) 00-0031388 16716 #> 1702 Arlington Heights (TX) 00-0032889 3054857 #> 1703 Lamar (TX) 00-0036903 NA #> 1704 <NA> <NA> 4389458 #> 1705 Oakwood (OH) 00-0035933 NA #> 1706 Bedford (OH) 00-0035607 3914150 #> 1707 Palmer Ridge (CO) 00-0036607 NA #> 1708 Edward C. Reed (NV) 00-0034261 3056608 #> 1709 <NA> <NA> NA #> 1710 Pratville (AL) 00-0035759 3053774 #> 1711 Orem (UT) 00-0035269 4249087 #> 1712 John Curtis Christian (LA) 00-0034266 3134310 #> 1713 Salisbury School (CT) 00-0036606 NA #> 1714 Prattville (AL) 00-0035751 3115317 #> 1715 Wisconsin Lutheran (WI) 00-0036863 NA #> 1716 Salesianum (DE) 00-0035617 3116177 #> 1717 Ware County (GA) 00-0036994 NA #> 1718 Alief Taylor (TX) 00-0034807 3052667 #> 1719 Dodge County (GA) 00-0033072 3043136 #> 1720 Gilman School (MD) 00-0034806 3048692 #> 1721 Pottsboro (TX) 00-0034813 3040109 #> 1722 Martin (TX) 00-0035591 3122678 #> 1723 Soiux Center (IA) 00-0035942 3909013 #> 1724 St. John's (DC) 00-0036419 4040968 #> 1725 Longview (TX) 00-0034812 3116424 #> 1726 Mount Carmel (IL) 00-0036014 4035542 #> 1727 Paloma Valley (CA) 00-0035118 4422336 #> 1728 Vineland (NJ) 00-0034809 3120552 #> 1729 Fallbrook Union (CA) 00-0034080 3043198 #> 1730 Plano (TX) 00-0034803 3040008 #> 1731 Linganore (MD) 00-0032242 2515613 #> 1732 Florence (AL) 00-0035623 3914440 #> 1733 Downers Grove North (IL) 00-0035668 3917660 #> 1734 <NA> <NA> NA #> 1735 Bowling Green (KY) 00-0036604 NA #> 1736 McEachern (GA) 00-0036437 4035478 #> 1737 Loyola (CA) 00-0034114 3052180 #> 1738 Allen (TX) 00-0035666 3706968 #> 1739 Renaissance (MI) 00-0036603 NA #> 1740 Lakewood (CA) 00-0035331 3917563 #> 1741 West Monroe (LA) 00-0024270 9641 #> 1742 Mayfair (CA) 00-0034721 4039396 #> 1743 KIPP Atlanta Collegiate (GA) 00-0035833 NA #> 1744 Bothell (WA) 00-0028872 15153 #> 1745 Bishop Kenny (FL) 00-0034899 3124092 #> 1746 Mortimer-Jordan (AL) 00-0035577 3127051 #> 1747 Highland Park (TX) 00-0026498 12483 #> 1748 Chandler (AZ) 00-0035939 3675812 #> 1749 University Christian (FL) 00-0036969 NA #> 1750 Clinton (MS) 00-0036414 4240021 #> 1751 Cecilia (LA) 00-0036435 NA #> 1752 Spring (TX) 00-0036078 3916209 #> 1753 South Panola (MS) 00-0035664 4039359 #> 1754 Damascus (MD) 00-0036860 NA #> 1755 Ensworth (TN) 00-0036424 3918003 #> 1756 Palm Harbor University (FL) 00-0036918 NA #> 1757 East Lake (FL) 00-0033110 2573401 #> 1758 St. John Vianney (MO) 00-0035817 3924367 #> 1759 Blue Springs South (MO) 00-0035603 3122103 #> 1760 Central Catholic (CA) 00-0033246 3052096 #> 1761 Junipero Serra (CA) 00-0030431 15880 #> 1762 Washington (IA) 00-0036598 NA #> 1763 <NA> <NA> NA #> 1764 Alief Taylor (TX) 00-0036602 NA #> 1765 Homestead (IN) 00-0036862 NA #> 1766 <NA> <NA> 3051813 #> 1767 Ravenwood (TN) 00-0036415 3930066 #> 1768 West Bloomfield (MI) 00-0035934 4046715 #> 1769 San Ramon Valley (CA) 00-0035935 3910287 #> 1770 Long Beach Poly (CA) 00-0026189 11283 #> 1771 Davis (WA) 00-0033908 2977187 #> 1772 <NA> <NA> 3911927 #> 1773 <NA> <NA> 3056458 #> 1774 Miami Northwestern (FL) 00-0036849 NA #> 1775 Boardman (OH) 00-0031019 16864 #> 1776 <NA> <NA> 2982884 #> 1777 <NA> 00-0034903 4410136 #> 1778 Northgate (GA) 00-0034545 3045458 #> 1779 St. Thomas Aquinas (FL) 00-0036617 NA #> 1780 Wise (MD) 00-0032772 2574666 #> 1781 Glendale (CA) 00-0033697 3053795 #> 1782 South Mecklenburg (NC) 00-0035899 4032484 #> 1783 Whitehaven (TN) 00-0035911 4046687 #> 1784 Bixby (OK) 00-0028224 14398 #> 1785 Calhoun City (MS) 00-0035542 4243831 #> 1786 Great Valley (PA) 00-0035677 3912028 #> 1787 Bishop Moore 00-0036777 NA #> 1788 Kahuku (HI) 00-0036380 4039413 #> 1789 Archbishop Wood Catholic (PA) 00-0036665 NA #> 1790 East Bay (FL) <NA> NA #> 1791 Haines City (FL) 00-0034790 3691739 #> 1792 Hialeah (FL) 00-0035906 4365493 #> 1793 Buchholz (FL) 00-0036867 NA #> 1794 St. Thomas Aquinas (FL) 00-0033156 3051389 #> 1795 Xaverian Brothers (MA) 00-0035903 3915990 #> 1796 <NA> <NA> 3040004 #> 1797 Evangel Christian Academy (LA) 00-0035674 3863182 #> 1798 Santa Fe (FL) 00-0027885 13281 #> 1799 Vancouver College Prep (CAN) 00-0031619 2580666 #> 1800 Detroit Catholic Central (MI) 00-0034696 4339830 #> 1801 Willard 00-0036780 NA #> 1802 Colquitt County (GA) 00-0035910 3916917 #> 1803 South Cobb (GA) 00-0034677 3116746 #> 1804 Veterans (GA) 00-0035315 3139036 #> 1805 Richmond Academy (GA) 00-0036958 NA #> 1806 Kentwood <NA> NA #> 1807 Lowndes (GA) 00-0035908 4035611 #> 1808 Summit (NJ) 00-0034084 3123052 #> 1809 Damien (CA) 00-0034909 3127313 #> 1810 Clarkston 00-0036714 NA #> 1811 Carroll (IN) 00-0035262 3129310 #> 1812 Notre Dame 00-0036716 NA #> 1813 Emmaus (PA) 00-0034375 4039254 #> 1814 Elkins (TX) 00-0036441 4241394 #> 1815 Chamblee (GA) 00-0034622 3043128 #> 1816 John Carroll (MD) 00-0036965 NA #> 1817 Narbonne (CA) 00-0034350 3120358 #> 1818 Nansemond-Suffolk Academy (VA) 00-0035900 4036959 #> 1819 North Shore (TX) 00-0035538 3914613 #> 1820 Sycamore (IL) 00-0036648 NA #> 1821 Mesa (AZ) 00-0032955 2574229 #> 1822 Liberty (CA) 00-0034917 3054855 #> 1823 Riverside 00-0036715 NA #> 1824 Tracy (CA) 00-0027187 13186 #> 1825 Farrington (HI) 00-0035927 3674831 #> 1826 Farragut (TN) 00-0035904 3919555 #> 1827 Xaverian (NY) 00-0030083 15972 #> 1828 Lampeter-Strasburg (PA) 00-0031142 17404 #> 1829 La Costa Canyon (CA) 00-0034392 3047572 #> 1830 McKinleyville 00-0036717 NA #> 1831 Springfield 00-0036713 NA #> 1832 Canisius (NY) 00-0034289 3045779 #> 1833 Clements (TX) <NA> NA #> 1834 Lake Travis (TX) 00-0036636 NA #> 1835 Apple Valley (MN) 00-0035688 4411189 #> 1836 Whitmer (OH) 00-0033752 2973014 #> 1837 Marian Central Central (IL) 00-0027875 13247 #> 1838 IMG Academy (FL) 00-0034958 3917870 #> 1839 Mornington (VIC) 00-0032449 3061740 #> 1840 Roswell (GA) 00-0031543 2582324 #> 1841 Santa Margarita Catholic (CA) 00-0037014 NA #> 1842 <NA> <NA> 2983314 #> 1843 Carroll (TX) 00-0026544 12471 #> 1844 Creighton Prep (NE) 00-0035282 3120590 #> 1845 Sheldon (OR) 00-0036355 4038941 #> 1846 Eastside (CA) 00-0036370 3910544 #> 1847 Eaton (CO) 00-0033699 3068267 #> 1848 Godby (FL) 00-0035898 4040640 #> 1849 Millbrook (NC) 00-0036650 NA #> 1850 Glenbard North (IL) 00-0034440 3116136 #> 1851 St. Francis (MI) 00-0036960 NA #> 1852 Bishop Union 00-0036779 NA #> 1853 IMG Academy (FL) <NA> NA #> 1854 Lake Gibson (FL) 00-0035329 3912092 #> 1855 Adams (MI) 00-0035436 3121378 #> 1856 North Gwinnett (GA) 00-0027061 12537 #> 1857 Piedmont Hills (CA) 00-0032725 2576854 #> 1858 <NA> <NA> NA #> 1859 Cambridge (GA) 00-0036104 4683123 #> 1860 Warren Easton (LA) 00-0035457 3894912 #> 1861 Oberlin (OH) 00-0035432 4069806 #> 1862 Northern Guilford (NC) 00-0030279 15818 #> 1863 North Little Rock (AR) 00-0036382 3915522 #> 1864 St. Thomas Aquinas (FL) 00-0036988 NA #> 1865 Servite (CA) 00-0036959 NA #> 1866 Providence (NC) 00-0034442 3116680 #> 1867 Niceville <NA> NA #> 1868 Randolph-Henry (VA) 00-0036377 4037591 #> 1869 Allen (TX) 00-0035414 3932430 #> 1870 Santee Lake Marion (SC) 00-0033536 3045138 #> 1871 La Salle College (PA) 00-0036859 NA #> 1872 Bishop Chatard (IN) 00-0032969 2579850 #> 1873 Salesian (CA) 00-0035133 4259493 #> 1874 Louisville Male (KY) 00-0036871 NA #> 1875 Thibodaux (LA) 00-0036375 4239694 #> 1876 Hogan Prep (MO) 00-0031991 2613234 #> 1877 Union Grove (GA) 00-0032788 2971478 #> 1878 St. Thomas Aquinas (FL) 00-0036359 3915506 #> 1879 First Coast (FL) 00-0033390 3054031 #> 1880 Coconut Creek (FL) 00-0035695 4035458 #> 1881 Perry (GA) 00-0029261 14966 #> 1882 Rudder (TX) 00-0034980 3126182 #> 1883 East Orange (NJ) 00-0033551 3943270 #> 1884 Piper (FL) 00-0031176 16929 #> 1885 St. Edward (OH) 00-0036520 NA #> 1886 General McLane (PA) 00-0030541 15881 #> 1887 Archbishop Stepinac (NY) <NA> NA #> 1888 Brother Martin (LA) 00-0035437 3917058 #> 1889 Cypress Ridge (TX) 00-0036062 NA #> 1890 Smithson Valley (TX) 00-0036962 NA #> 1891 Vanguard (FL) 00-0036853 NA #> 1892 Central Catholic (OR) 00-0034726 3053801 #> 1893 East Marion (MS) 00-0035693 3728305 #> 1894 Edgewater (FL) 00-0032888 2976639 #> 1895 Mount Tabor (NC) 00-0036990 NA #> 1896 Malvern Prep (PA) 00-0033129 2614825 #> 1897 Vigor (AL) 00-0032116 2980071 #> 1898 Benedictine (VA) 00-0035692 3728258 #> 1899 Archbishop Stepinac (NY) <NA> NA #> 1900 Friendship Collegiate Academy (DC) 00-0033123 3053044 #> 1901 Havelock (NC) 00-0034125 3044732 #> 1902 Colleyville Heritage (TX) 00-0034973 3916655 #> 1903 Greenville (MS) 00-0034997 3115469 #> 1904 Fairmont (WV) 00-0036525 NA #> 1905 Woodland Hills (PA) 00-0032416 2577078 #> 1906 Albemarle (NC) <NA> 4242251 #> 1907 Franklin (CA) 00-0030986 17285 #> 1908 Southeastern (MI) 00-0030063 15841 #> 1909 Coppell (TX) 00-0033870 3117258 #> 1910 Junipero Serra (CA) 00-0034657 3134316 #> 1911 Elkton (MD) 00-0034077 4329484 #> 1912 Southeast (OK) 00-0027856 13240 #> 1913 Bay Port (WI) 00-0035125 3917668 #> 1914 <NA> <NA> 3064131 #> 1915 <NA> <NA> NA #> 1916 Fort Dorchester (SC) 00-0036369 4035479 #> 1917 The Classical Academy (CO) 00-0034161 3051909 #> 1918 Ben Davis (IN) 00-0035897 3932422 #> 1919 Huntsville (AL) 00-0033445 4232830 #> 1920 McClymonds (CA) 00-0036085 3921709 #> 1921 Bethel Park (PA) 00-0032773 2581818 #> 1922 Woodward Academy (GA) 00-0036524 NA #> 1923 South Point (NC) 00-0036368 3728263 #> 1924 New Albany (OH) 00-0033147 3051398 #> 1925 Mount Miguel (CA) 00-0032677 2978304 #> 1926 Palm Beach Gardens (FL) 00-0035115 3862861 #> 1927 Stone Mountain (GA) 00-0033468 2969922 #> 1928 Cretin-Derham Hall (MN) 00-0033704 3052889 #> 1929 Worthington Kilbourne (OH) 00-0036082 3915528 #> 1930 Eaton (CO) 00-0034198 3052357 #> 1931 <NA> <NA> NA #> 1932 Mountain Ridge (AZ) 00-0023516 8495 #> 1933 Rockford (MI) 00-0032771 2576569 #> 1934 Central (AL) 00-0035117 3925344 #> 1935 Gaffney (SC) 00-0031632 2985235 #> 1936 Deseret Pines (NV) 00-0032263 2971660 #> 1937 St. Francis DeSales (OH) 00-0029889 16327 #> 1938 West Catholic (PA) 00-0034628 3045160 #> 1939 A.L. Brown (NC) 00-0034763 3072292 #> 1940 Grand Street Campus (NY) 00-0036134 3930054 #> 1941 Herriman (UT) 00-0035127 3932244 #> 1942 St. Bernard (CA) 00-0023894 10062 #> 1943 Booker T. Washington (FL) 00-0036892 NA #> 1944 Roseville (CA) 00-0034759 3134312 #> 1945 St. Thomas Aquinas (FL) 00-0027778 13496 #> 1946 Gilman School (MD) <NA> NA #> 1947 Woodward Academy (GA) 00-0035190 3686689 #> 1948 Milton (FL) 00-0035821 3125280 #> 1949 Bakersfield Christian (CA) 00-0031280 16757 #> 1950 Thousand Oaks (CA) 00-0035812 NA #> 1951 Mount Pisgah Christian (GA) 00-0033672 2972092 #> 1952 Bartram Trail (FL) 00-0033958 2972236 #> 1953 St. Louis (HI) 00-0032268 2576980 #> 1954 Tuscaloosa County (AL) 00-0034432 3126367 #> 1955 McLain (OK) 00-0035700 4047365 #> 1956 Hillgrove (GA) 00-0033118 2979843 #> 1957 Freedom (NC) 00-0036797 NA #> 1958 Peabody Magnet (LA) 00-0033025 2972091 #> 1959 Immaculata (NJ) 00-0030107 15994 #> 1960 Archbishop Shaw (LA) 00-0036523 NA #> 1961 Amherst (WI) 00-0036521 NA #> 1962 Sabino (AZ) 00-0036519 NA #> 1963 Kittanning (PA) 00-0036083 3929633 #> 1964 Owen County (KY) <NA> NA #> 1965 Dwyer (FL) 00-0032117 2576804 #> 1966 North Cobb (GA) 00-0031610 2576925 #> 1967 Edgerton (WI) 00-0029119 15403 #> 1968 Delmar (DE) 00-0032864 2577731 #> 1969 Jesuit (LA) 00-0034981 3843945 #> 1970 Northside (GA) 00-0033530 3042373 #> 1971 Lee (AL) 00-0036357 4241475 #> 1972 North Gwinnett (GA) 00-0034243 3122167 #> 1973 Barbe (LA) 00-0034339 3115365 #> 1974 DeMatha Catholic (MD) 00-0036527 NA #> 1975 Homestead (FL) 00-0031051 16804 #> 1976 Stephen F. Austin (TX) 00-0033891 3059722 #> 1977 <NA> 00-0032694 3051400 #> 1978 Socastee (SC) 00-0034983 3135321 #> 1979 Wylie East (TX) 00-0034747 3046320 #> 1980 Conway (SC) 00-0036365 4038818 #> 1981 Jenks (OK) 00-0036526 NA #> 1982 Alameda (CA) 00-0035120 3120980 #> 1983 Muskegon Heights (MI) 00-0030663 17258 #> 1984 Catholic (LA) 00-0033505 3060000 #> 1985 Worthington Kilbourne (OH) 00-0032575 2576733 #> 1986 North Shore (TX) 00-0033734 3892777 #> 1987 Archbishop Stepinac (NY) 00-0036546 NA #> 1988 St. Paul Catholic (CT) 00-0032239 2513035 #> 1989 Nipomo (CA) 00-0031630 2509574 #> 1990 McEachern (GA) 00-0036594 NA #> 1991 Miami Central (FL) 00-0035137 3147988 #> 1992 Ed White (FL) 00-0035880 NA #> 1993 Klein (TX) 00-0031555 2576002 #> 1994 St. Joseph (NJ) 00-0027136 12691 #> 1995 Buena Park (CA) 00-0035346 3124702 #> 1996 Glades Central (FL) 00-0032581 2982870 #> 1997 Wheatley (TX) 00-0033050 2978935 #> 1998 Brunswick (GA) 00-0031796 2577707 #> 1999 DeMatha Catholic (MD) 00-0035858 4036214 #> 2000 Bishop O'Dowd (CA) 00-0036998 NA #> 2001 Nacogdoches (TX) 00-0036221 4039059 #> 2002 Hewitt-Trussville (AL) 00-0036287 4242516 #> 2003 Whitmer (OH) 00-0034802 3052527 #> 2004 Asheboro (NC) 00-0036089 4047458 #> 2005 Westlake (GA) 00-0035845 3914456 #> 2006 George Bush (TX) 00-0033073 2977740 #> 2007 Deerfield Beach (FL) 00-0036160 3895843 #> 2008 Tucker (GA) 00-0035343 3728308 #> 2009 <NA> 00-0035727 4421391 #> 2010 Pinckney (MI) 00-0034285 3057956 #> 2011 Wayne County (GA) 00-0035841 4035299 #> 2012 Maloney (CT) 00-0030070 15846 #> 2013 Suffield Academy (CT) 00-0035231 3728266 #> 2014 Cathedral Catholic (CA) 00-0035332 3915309 #> 2015 Duncanville (TX) 00-0033381 2972342 #> 2016 Bassfield (MS) 00-0036595 NA #> 2017 Meridian (MS) 00-0036213 4040965 #> 2018 Hough (NC) 00-0036597 NA #> 2019 Springfield (MN) 00-0032867 2576443 #> 2020 Rockford East (IL) 00-0036596 NA #> 2021 Villa Park (CA) 00-0034794 3124679 #> 2022 Rosa Fort (MS) 00-0031553 2577429 #> 2023 Rock Valley (IA) 00-0035272 3133487 #> 2024 Lowndes (GA) 00-0033532 2977645 #> 2025 Lincoln (WI) 00-0033939 2977798 #> 2026 John Curtis Christian (LA) 00-0033549 3042725 #> 2027 Francis Howell (OR) 00-0033716 3047530 #> 2028 Lakewood (FL) 00-0034755 3054029 #> 2029 Lakeview Centennial (TX) 00-0034902 2577637 #> 2030 Skyline (TX) 00-0035840 3915107 #> 2031 Benedictine (OH) 00-0034797 3915507 #> 2032 Memorial (TX) 00-0032442 2987743 #> 2033 Redlands East Valley (CA) 00-0036934 NA #> 2034 Central Catholic (OR) 00-0032734 2576885 #> 2035 Bay (OH) 00-0036443 NA #> 2036 Buford (GA) 00-0036217 3843470 #> 2037 Asotin (WA) 00-0031893 2517316 #> 2038 Foley (AL) 00-0030505 15792 #> 2039 Burkeville (TX) 00-0036325 3917592 #> 2040 Morris Knolls (NJ) 00-0033290 3115303 #> 2041 Raines (FL) 00-0036131 4035008 #> 2042 Genoa Area 00-0035686 3121541 #> 2043 Allen (TX) 00-0035694 4047661 #> 2044 Hamilton (OH) 00-0033359 2976649 #> 2045 Saint Clement (MA) 00-0036575 NA #> 2046 North Canyon (AZ) 00-0036248 4271632 #> 2047 Saint Ignatius (OH) 00-0037010 NA #> 2048 Floral Park (NY) 00-0034102 3049959 #> 2049 St. Thomas Aquinas (FL) 00-0031363 17475 #> 2050 William T. Dwyer (FL) 00-0033119 2578570 #> 2051 St. Louis (HI) 00-0036212 4241479 #> 2052 Johnston (IA) 00-0036052 3926936 #> 2053 Mission Prep (CA) 00-0035342 3127211 #> 2054 Juanita (WA) 00-0036020 4243315 #> 2055 Seattle O'Dea (WA) 00-0035311 3886818 #> 2056 Lawrence Central (IN) 00-0036578 NA #> 2057 St. Thomas Aquinas (FL) 00-0035275 3915115 #> 2058 Byron P. Steele (TX) 00-0031806 2570986 #> 2059 Lemont (IL) 00-0032807 3042455 #> 2060 Archbishop Shaw (LA) 00-0033338 3040470 #> 2061 Fletcher (FL) <NA> NA #> 2062 St. Viator (IL) <NA> NA #> 2063 Belton (TX) 00-0034798 3052897 #> 2064 Big Walnut (OH) 00-0033896 4198676 #> 2065 St. Vincent-St. Mary (OH) <NA> NA #> 2066 Cheltenham (PA) 00-0035345 3138744 #> 2067 Union (OK) 00-0035367 3116384 #> 2068 Southern Regional (NJ) 00-0034829 3116164 #> 2069 Deerfield Academy (MA) 00-0037004 NA #> 2070 Port St. Lucie (FL) 00-0030669 17051 #> 2071 Destrehan (LA) 00-0035844 3915145 #> 2072 Episcopal (TX) 00-0036613 NA #> 2073 Creekside (GA) <NA> NA #> 2074 Kenwood (TN) 00-0036245 4039436 #> 2075 Thomas Sprigg Wootton (MD) 00-0033555 2991662 #> 2076 Horn (TX) 00-0032791 2577641 #> 2077 Ballard (KY) 00-0031547 2576623 #> 2078 Carol City (FL) 00-0030821 17177 #> 2079 Warren G. Harding (OH) 00-0036364 4259979 #> 2080 Central Valley (PA) 00-0034510 3054845 #> 2081 Philadelphia Roman Catholic (PA) 00-0033127 3052876 #> 2082 Gilman (MD) 00-0036468 NA #> 2083 Trinity Christian Academy (FL) 00-0033471 3124069 #> 2084 Lovejoy (GA) 00-0035350 3915399 #> 2085 Los Osos (CA) 00-0035930 4047834 #> 2086 Charlotte Christian (NC) 00-0035588 3116729 #> 2087 St. Thomas Aquinas (LA) 00-0036330 4035385 #> 2088 Centennial (CA) 00-0036629 NA #> 2089 West Jefferson (LA) 00-0034274 3041098 #> 2090 Mallard Creek (NC) 00-0035871 3919541 #> 2091 Cherry Hill West (NJ) 00-0036344 4259170 #> 2092 New Boston (TX) 00-0036324 3676819 #> 2093 Allendale-Fairfax (SC) 00-0031052 16890 #> 2094 Immokalee (FL) 00-0032389 3045120 #> 2095 Nordonia (OH) 00-0035130 3909365 #> 2096 Wakefield (NC) 00-0031597 2588098 #> 2097 Chattahoochee (GA) 00-0033628 4220625 #> 2098 Ely (FL) 00-0027943 13980 #> 2099 Gilmer (TX) 00-0035150 3929845 #> 2100 West Monroe (LA) 00-0033579 3040572 #> 2101 Vance (NC) 00-0035979 4037511 #> 2102 Flanagan (FL) 00-0036348 4046537 #> 2103 Knoxville Catholic (TN) 00-0029606 14945 #> 2104 Garland (TX) 00-0036138 3908608 #> 2105 Morton Ranch (TX) 00-0031565 2976560 #> 2106 Lahainaluna (HI) 00-0034215 3127274 #> 2107 Bay (FL) 00-0036878 NA #> 2108 Shiloh (GA) 00-0032448 2972362 #> 2109 Grassfield (VA) 00-0037007 NA #> 2110 Lake Taylor (VA) 00-0034264 3121414 #> 2111 Northpointe Christian (MI) 00-0036350 3929833 #> 2112 Booker T. Washington (OK) 00-0035319 3122420 #> 2113 Stephenson (GA) 00-0036335 4038849 #> 2114 Agua Fria Union (AZ) 00-0027701 13373 #> 2115 Round Rock (TX) 00-0036337 4259181 #> 2116 H. D. Woodson (DC) 00-0036651 NA #> 2117 Central (CA) 00-0036814 NA #> 2118 Henry County (GA) 00-0033546 2979860 #> 2119 Gateway Tech (MO) 00-0030573 15811 #> 2120 Daphne (AL) 00-0032574 2972144 #> 2121 Pinellas Park (FL) 00-0036820 NA #> 2122 Christian Brothers College (MO) 00-0034992 3128685 #> 2123 St. Andrews (FL) 00-0035975 3895835 #> 2124 Denfeld (MN) 00-0032918 4012556 #> 2125 Liberty (AZ) 00-0036354 4682831 #> 2126 Edwardsville (IL) 00-0036816 NA #> 2127 Exeter Township (PA) 00-0032669 2578718 #> 2128 American Heritage (FL) 00-0034450 3975763 #> 2129 East Lincoln (NC) 00-0037003 NA #> 2130 Granite Bay (CA) 00-0034986 3701669 #> 2131 Hoover (CA) 00-0031554 2510863 #> 2132 Valor Christian (CO) 00-0036813 NA #> 2133 Bolingbrook (IL) 00-0036812 NA #> 2134 Gilmer (TX) 00-0035984 3892773 #> 2135 Hudson (OH) 00-0033944 3045212 #> 2136 Fremont (UT) 00-0032892 2971816 #> 2137 Eden Prairie (MN) 00-0035533 3121538 #> 2138 Loyola (CA) 00-0031256 16711 #> 2139 Norco (CA) 00-0036338 4038946 #> 2140 <NA> <NA> NA #> 2141 Mountain Ridge (AZ) 00-0036811 NA #> 2142 Parkton (MD) 00-0029714 15726 #> 2143 San Ramon Valley (CA) 00-0034976 3821678 #> 2144 St. John Bosco (CA) 00-0037006 NA #> 2145 Brookland-Cayce (SC) 00-0031017 16861 #> 2146 East Lake (FL) 00-0034785 3115972 #> 2147 Summerville (SC) 00-0035468 3924352 #> 2148 Bethel (WA) 00-0036327 4048231 #> 2149 Ed White (FL) 00-0032520 2575446 #> 2150 Salesianum (DE) 00-0034158 3123954 #> 2151 Riverdale Baptist (MD) 00-0036616 NA #> 2152 Sanford (NC) 00-0034994 3120502 #> 2153 West Seneca East (NY) 00-0035784 3916584 #> 2154 Bearden (TN) 00-0026516 12773 #> 2155 Zachary (LA) <NA> NA #> 2156 Folsom (CA) 00-0035100 3886812 #> 2157 Holland Christian (MI) 00-0029604 14880 #> 2158 <NA> <NA> 2977737 #> 2159 South Vigo (IN) 00-0034423 3052450 #> 2160 Menomonie (WI) 00-0036279 4036149 #> 2161 IMG Academy (FL) 00-0036946 NA #> 2162 <NA> <NA> 3121597 #> 2163 Homewood (AL) 00-0032104 2576336 #> 2164 McGill-Toolen (AL) 00-0034378 3123969 #> 2165 Garfield Heights (OH) 00-0036819 NA #> 2166 Miami Central (FL) 00-0033893 3116593 #> 2167 San Bernardino (CA) 00-0034972 4048244 #> 2168 Heritage (TX) 00-0036842 NA #> 2169 Central Catholic (OR) 00-0036347 3930270 #> 2170 Carroll (IN) 00-0035102 4411192 #> 2171 Brother Martin (LA) 00-0034970 4040980 #> 2172 New London-Spicer (MN) 00-0036534 NA #> 2173 L'Anse Creuse North (MI) 00-0034270 3915486 #> 2174 Webb City (MO) 00-0036640 NA #> 2175 Weequahic (NJ) 00-0036635 NA #> 2176 Aurora Christian (IL) 00-0034309 3047968 #> 2177 Plant (FL) 00-0036817 NA #> 2178 <NA> <NA> 3125115 #> 2179 Bishop Alemany (CA) 00-0036721 NA #> 2180 IMG Academy (FL) 00-0036345 3916566 #> 2181 Detroit Lakes (MN) 00-0030035 16460 #> 2182 Jasper (AL) 00-0036815 NA #> 2183 Bear Creek (CO) 00-0035006 3917067 #> 2184 Providence (NC) 00-0036818 NA #> 2185 C.H. Yoe (TX) 00-0033839 3892889 #> 2186 Downingtown-East (PA) 00-0035976 3929637 #> 2187 Destrehan (LA) 00-0036322 4262921 #> 2188 Wesleyan (GA) 00-0031852 2578529 #> 2189 Crenshaw (CA) 00-0031337 16788 #> 2190 South Pointe (SC) 00-0029542 14942 #> 2191 Spain Park (AL) 00-0035277 3917853 #> 2192 Father Ryan (TN) 00-0035241 4035286 #> 2193 Desoto (TX) 00-0032803 2976540 #> 2194 Blythewood (SC) 00-0029530 15089 #> 2195 Whitewater (GA) 00-0036231 4401811 #> 2196 Loyola (CA) 00-0036087 4039010 #> 2197 Mineral Wells (TX) 00-0033302 2971699 #> 2198 South Hills (CA) 00-0034966 3139389 #> 2199 Stephenville (TX) 00-0029764 16286 #> 2200 Woodson (DC) 00-0034964 3931774 #> 2201 Carrollton (GA) 00-0032580 2971027 #> 2202 St. Joseph (NJ) 00-0027647 13236 #> 2203 Garland (TX) 00-0031404 17487 #> 2204 Dekaney (TX) 00-0036872 NA #> 2205 Immokalee (FL) 00-0034591 3121649 #> 2206 Seminole County (GA) 00-0033779 2973647 #> 2207 Hebron (TX) 00-0033947 2980080 #> 2208 Thomas Jefferson (PA) 00-0035654 3115974 #> 2209 Woodward Academy (GA) 00-0032269 2517752 #> 2210 Immaculata (NJ) 00-0033324 3042726 #> 2211 Lake Highlands (TX) 00-0034723 3040031 #> 2212 Neumann Goretti (PA) 00-0036981 NA #> 2213 Adlai E. Stevenson (MI) 00-0031938 2511690 #> 2214 Dooly County (GA) 00-0033929 3051894 #> 2215 Delbarton (NJ) 00-0036093 3912189 #> 2216 Western (NV) 00-0028171 14185 #> 2217 Fort Walton Beach (FL) 00-0030402 15958 #> 2218 Plaquemine (LA) 00-0033860 3115383 #> 2219 Armwood (FL) 00-0035278 3916922 #> 2220 Wheaton Warrenville South (IL) 00-0032794 2974365 #> 2221 Jean Ribault (FL) 00-0035726 3115349 #> 2222 Notre Dame (CA) 00-0025565 10621 #> 2223 Clifton Park (NY) 00-0036161 3913295 #> 2224 Groveland South Lake (FL) 00-0033102 2978887 #> 2225 Rockford (MI) 00-0036488 NA #> 2226 King (GA) 00-0034962 3924319 #> 2227 Dadeville (AL) 00-0036193 3925350 #> 2228 Raines (FL) <NA> NA #> 2229 Thompson (AL) 00-0031856 3051905 #> 2230 Paramount (CA) 00-0036164 4048736 #> 2231 Columbus (FL) 00-0036159 4046528 #> 2232 Robert McQueen (NV) 00-0031360 16772 #> 2233 Lawrence Central (IN) 00-0036644 NA #> 2234 Liberty County (GA) 00-0033461 3121423 #> 2235 Bingham (UT) 00-0033392 2570996 #> 2236 DeMatha Catholic (MD) 00-0034385 3116187 #> 2237 Marshall County (TN) 00-0029669 14933 #> 2238 Lutheran North (MO) 00-0036978 NA #> 2239 West Bloomfield (MI) 00-0032415 3961466 #> 2240 Granite Hills (CA) 00-0032228 2575907 #> 2241 Bettendorf (IA) <NA> NA #> 2242 Bishop Manogue (NV) 00-0035337 3914817 #> 2243 Minnetonka (MN) 00-0031089 16912 #> 2244 Albemarle (NC) 00-0034699 3039713 #> 2245 Los Alamitos (CA) 00-0032549 3047571 #> 2246 Chandler (AZ) 00-0036200 4039374 #> 2247 Bullis (MD) 00-0036163 3124112 #> 2248 Iowa City (IA) 00-0031039 17361 #> 2249 Columbia Central (TN) 00-0031580 2576917 #> 2250 Miramar (FL) 00-0035252 3116455 #> 2251 Montevallo (AL) 00-0034687 3056899 #> 2252 Cass Tech (MI) 00-0036198 4046545 #> 2253 Cathedral (IN) 00-0032445 2576188 #> 2254 Lakewood (FL) 00-0034833 3128713 #> 2255 West St. Mary (LA) 00-0033085 2976554 #> 2256 Westover (GA) 00-0032071 3043109 #> 2257 Allen (TX) 00-0036535 NA #> 2258 Santa Fe Christian (CA) 00-0035280 3931395 #> 2259 Westlake (GA) 00-0027939 13994 #> 2260 St. Ignatius (OH) 00-0026625 12477 #> 2261 The Bolles School (FL) 00-0036972 NA #> 2262 Stephenville (TX) 00-0035264 3892775 #> 2263 St. Thomas Aquinas (FL) 00-0031062 16913 #> 2264 American Heritage (FL) 00-0034845 3128721 #> 2265 Cathedral Catholic (CA) 00-0031190 16838 #> 2266 Madison Southern (KY) 00-0035657 3925347 #> 2267 Centennial (NV) 00-0036875 NA #> 2268 Scotlandville Magnet (LA) 00-0029239 15478 #> 2269 Centennial (CA) 00-0036096 4039607 #> 2270 Rancho Cucamonga (CA) 00-0027010 12527 #> 2271 Pulaski (AR) 00-0033090 3046439 #> 2272 Waubonsie Valley (IL) 00-0034393 3045264 #> 2273 Chatfield (CO) 00-0036225 4240861 #> 2274 West Port (FL) 00-0033858 3054212 #> 2275 Naperville North (IL) 00-0031744 2576179 #> 2276 De La Salle (CA) 00-0036194 4046522 #> 2277 Sonora (CA) 00-0035660 3933327 #> 2278 St. John's Prep (MA) 00-0036088 3915308 #> 2279 Cedar Hill (TX) 00-0033366 3051869 #> 2280 Milwaukie Arts Academy (WI) 00-0033307 3045523 #> 2281 Viera (FL) 00-0036536 NA #> 2282 Arabia Mountain (GA) 00-0034960 3916433 #> 2283 Stephenson (GA) 00-0036100 3916129 #> 2284 Dorsey (CA) 00-0033094 2578369 #> 2285 Washington (OH) 00-0031934 2576395 #> 2286 Bishop Alemany (CA) 00-0034667 3052122 #> 2287 Alvin (TX) 00-0035645 4424106 #> 2288 Craigmont (TN) 00-0036183 3910176 #> 2289 Berkeley Prep (FL) 00-0031549 2971618 #> 2290 Servite (CA) 00-0026293 11387 #> 2291 Chandler (AZ) 00-0035624 4047839 #> 2292 Brother Martin (LA) 00-0034436 3115387 #> 2293 Gulliver Prep (FL) 00-0027882 13238 #> 2294 Mansfield (TX) 00-0036937 NA #> 2295 Quartz Hill (CA) 00-0036801 NA #> 2296 McCluer South (MO) <NA> NA #> 2297 The Lovett School (GA) 00-0034502 3116166 #> 2298 Southeast (FL) 00-0032596 2980115 #> 2299 Dutch Fork (SC) 00-0036792 NA #> 2300 Glenville (OH) 00-0033874 3121421 #> 2301 H.D. Woodson (DC) 00-0032875 2979612 #> 2302 Gonzaga College (DC) 00-0029065 15359 #> 2303 Vanguard (FL) 00-0032059 2977661 #> 2304 Clarksdale (MS) 00-0034116 3115481 #> 2305 McDonogh School (MD) 00-0036547 NA #> 2306 Lake Orion (MI) 00-0030196 16473 #> 2307 Apollo (AZ) 00-0027957 13975 #> 2308 St. Thomas More (LA) 00-0036791 NA #> 2309 Eastvale Eleanor Roosevelt (CA) 00-0033894 3122882 #> 2310 Prattville (AL) 00-0035896 3929920 #> 2311 Mariner (WA) 00-0033091 2980150 #> 2312 Cocoa (FL) 00-0035253 4034953 #> 2313 Independence (NC) 00-0034840 3871875 #> 2314 Vanguard (FL) 00-0034398 3121552 #> 2315 Jenkins (GA) 00-0032369 2585962 #> 2316 Taylor Allderdice (PA) 00-0031304 16758 #> 2317 Westside (TX) 00-0036926 NA #> 2318 Chandler (AZ) 00-0027962 13971 #> 2319 <NA> <NA> NA #> 2320 Forest Hill (MS) 00-0031615 2574023 #> 2321 John Paul Stevens (TX) 00-0034344 3124058 #> 2322 Grant (CA) 00-0035402 3918310 #> 2323 Wissahickon (PA) 00-0033902 2982313 #> 2324 Madison Prep (LA) 00-0035763 4039064 #> 2325 North Davidson (NC) 00-0035409 3886601 #> 2326 West Forsyth (NC) 00-0035179 3895834 #> 2327 Marmion Academy (IL) 00-0033786 2977635 #> 2328 Cardinal Gibbons (FL) 00-0034848 3917872 #> 2329 Orangeburg-Wilkinson (SC) 00-0035455 3728248 #> 2330 Kentwood (WA) 00-0036537 NA #> 2331 Chrisland (NGA) 00-0033051 4002046 #> 2332 Francis Howell (MO) 00-0035218 3921970 #> 2333 Dacula (GA) 00-0033296 4212884 #> 2334 Hamden Hall Country Day (CT) 00-0035894 NA #> 2335 Orland (CA) 00-0032870 3068939 #> 2336 Cardinal Gibbons (FL) 00-0029576 15058 #> 2337 Northgate (GA) 00-0032569 2985659 #> 2338 Kearney (NE) 00-0030332 16486 #> 2339 Olive Branch (MS) 00-0032960 2977884 #> 2340 IMG Academy (FL) 00-0036477 NA #> 2341 Lone Peak (UT) 00-0034944 2971641 #> 2342 Brandon (MS) 00-0029607 14958 #> 2343 Brown Deer (WI) 00-0036418 3917657 #> 2344 Durham Riverside (NC) 00-0036128 4027908 #> 2345 Cathedral (IN) 00-0036927 NA #> 2346 Judge Memorial Catholic (UT) 00-0035316 3124890 #> 2347 Oxford (AL) 00-0032109 2976541 #> 2348 St. Edward (OH) 00-0035412 3929818 #> 2349 Elida (OH) 00-0034793 3052996 #> 2350 Horizon (CO) 00-0023173 9287 #> 2351 Rowlett (TX) 00-0033063 2575788 #> 2352 <NA> <NA> 3052499 #> 2353 Mooresville (NC) 00-0029146 15025 #> 2354 <NA> <NA> NA #> 2355 Riverhead (NY) 00-0035403 3938169 #> 2356 Newport (WA) 00-0035764 3915147 #> 2357 Paramount (CA) 00-0036538 NA #> 2358 Corona del Sol (AZ) 00-0032203 2978278 #> 2359 East Gadsden (FL) 00-0035407 3122925 #> 2360 IMG Academy (FL) 00-0036408 4258199 #> 2361 Lufkin (TX) 00-0035242 3917331 #> 2362 Seven Lakes (TX) 00-0032779 3047575 #> 2363 Juan Diego (UT) <NA> NA #> 2364 Assumption (LA) 00-0030046 16004 #> 2365 Lafayette (KY) 00-0036930 NA #> 2366 <NA> <NA> 2979620 #> 2367 San Clemente (CA) 00-0032433 2978275 #> 2368 Plainfield (IN) 00-0030694 17178 #> 2369 Stevens Point (WI) 00-0033888 3917676 #> 2370 Cahokia (IL) 00-0030067 15821 #> 2371 The Westminster Schools (GA) 00-0035859 4045180 #> 2372 Bridgton Academy (ME) 00-0036539 NA #> 2373 Hueytown (AL) 00-0031503 2969939 #> 2374 Oak Ridge (CA) 00-0036929 NA #> 2375 Highland (ID) 00-0033357 2468609 #> 2376 Olympia (FL) 00-0032156 2511109 #> 2377 St. Mark's (TX) 00-0032200 2577134 #> 2378 IMG Academy (FL) 00-0035860 4046676 #> 2379 Miami Central (FL) 00-0031285 16944 #> 2380 Norcross (GA) 00-0033906 3054850 #> 2381 <NA> 00-0035405 3911993 #> 2382 Onondaga Central (FL) 00-0030513 15920 #> 2383 Gahr (CA) 00-0032450 3002265 #> 2384 Piscataway (NJ) 00-0026990 12426 #> 2385 Blue Valley (KS) 00-0036674 NA #> 2386 Elk Rapids (MI) 00-0036422 3911853 #> 2387 Central (OH) 00-0032394 2576399 #> 2388 Prairie Grove (AR) 00-0036540 NA #> 2389 Minster (OH) 00-0034672 3115360 #> 2390 Sacred Heart Catholic (TX) 00-0032562 2982151 #> 2391 Louisburg (KS) 00-0033095 2987440 #> 2392 Chicago Christian (IL) 00-0032689 3057863 #> 2393 Woodland Hills Taft (CA) 00-0032765 2976316 #> 2394 Junipero Serra (CA) 00-0036080 4245174 #> 2395 <NA> <NA> 3120558 #> 2396 <NA> <NA> 3044726 #> 2397 Village Academy (FL) 00-0034765 3128451 #> 2398 St. Paul's (LA) 00-0035786 3919609 #> 2399 Archbishop Curley (MD) 00-0035215 4411193 #> 2400 <NA> <NA> 3047578 #> 2401 Tift County (GA) 00-0035031 3917200 #> 2402 Emmaus (PA) 00-0031545 3042435 #> 2403 Southlake Carroll (TX) 00-0035406 4039057 #> 2404 Ramapo (NJ) 00-0028237 14402 #> 2405 W.T. Dwyer (FL) 00-0032881 2574918 #> 2406 Glassboro (NJ) 00-0036040 3929645 #> 2407 Warner Robins (GA) 00-0036219 4035170 #> 2408 Hapeville Charter Academy (GA) 00-0036939 NA #> 2409 Haslett (MI) 00-0033021 3057850 #> 2410 <NA> <NA> NA #> 2411 <NA> <NA> NA #> 2412 Bishop Gorman (NV) 00-0034445 3116096 #> 2413 <NA> 00-0032769 2972286 #> 2414 Calvary Baptist Academy (LA) 00-0036570 NA #> 2415 Olentangy (OH) 00-0035925 3911073 #> 2416 Ottawa Hills (MI) 00-0034839 3916720 #> 2417 University School (FL) 00-0033544 3121660 #> 2418 Deerfield Beach (FL) 00-0036899 NA #> 2419 Calabasas (CA) 00-0036394 4242973 #> 2420 Corinth Lake (TX) 00-0034751 3144984 #> 2421 Pleasant Grove (AL) 00-0032890 2572841 #> 2422 Alief Taylor (TX) 00-0034662 3116105 #> 2423 <NA> <NA> 3048659 #> 2424 Muscle Shoals (AL) 00-0036516 NA #> 2425 Paramus Catholic (NJ) 00-0033883 3115962 #> 2426 Copiah-Lincoln (MS) <NA> 4242245 #> 2427 Nazareth Academy (IL) 00-0034974 4046675 #> 2428 Oak Mountain (AL) 00-0035456 3117846 #> 2429 Charlton County (GA) 00-0032353 2576895 #> 2430 Lamar (TX) 00-0036084 4038440 #> 2431 Crisp County (GA) 00-0035339 3915970 #> 2432 Eastern (NJ) 00-0030411 15861 #> 2433 Northampton County (NC) 00-0034435 3117135 #> 2434 Junipero Serra (CA) 00-0033878 3120347 #> 2435 Roswell (GA) 00-0036388 4241470 #> 2436 Callaway (MS) 00-0034774 3128740 #> 2437 Mainland (FL) 00-0031933 2971622 #> 2438 Centerville (OH) 00-0033969 2974353 #> 2439 Sumter (SC) 00-0036611 NA #> 2440 St. Vincent-St. Mary (OH) 00-0035816 4030955 #> 2441 <NA> <NA> 3125853 #> 2442 Marietta (GA) 00-0036552 NA #> 2443 West Stanly (NC) 00-0034800 3116748 #> 2444 St. Augustine Prep (NJ) 00-0032763 2979591 #> 2445 Kearny (CA) 00-0035985 3127587 #> 2446 Wake Forest (NC) 00-0035683 4035483 #> 2447 Auburn (WA) 00-0032143 2578384 #> 2448 Casa Grande (CA) 00-0033584 3052175 #> 2449 Glenville (OH) 00-0032409 2977625 #> 2450 Taylor (TX) 00-0035304 3122143 #> 2451 <NA> <NA> 3045119 #> 2452 Tate (FL) 00-0026858 12460 #> 2453 Daphne (AL) 00-0033525 2976495 #> 2454 Minneapolis South (MN) 00-0036895 NA #> 2455 Bullis (MD) 00-0036400 4045165 #> 2456 Norcross (GA) 00-0034360 3128715 #> 2457 Winter Park (FL) 00-0034588 3123054 #> 2458 Harris County (GA) 00-0036167 3915171 #> 2459 Bob Jones (AL) 00-0033058 2979855 #> 2460 Eden Prairie (MN) 00-0036402 4034766 #> 2461 Hertford County (NC) 00-0035708 3123233 #> 2462 Mountlake Terrace (WA) 00-0034167 3122593 #> 2463 Kearney (MO) 00-0036172 4035109 #> 2464 Canyon del Oro (AZ) 00-0032408 2978273 #> 2465 Miramar (FL) 00-0033242 3051924 #> 2466 Paraclete (CA) 00-0031427 17497 #> 2467 Richland Northeast (SC) 00-0036404 4038811 #> 2468 Riverdale (TN) 00-0029959 16359 #> 2469 Central (IA) 00-0030957 17304 #> 2470 Moody (AL) 00-0031928 2516029 #> 2471 Lake Worth (FL) 00-0029278 15108 #> 2472 Chaparral (NV) 00-0034346 3042516 #> 2473 Elk Grove (CA) 00-0028240 14460 #> 2474 Palm Harbor University (FL) 00-0027607 13403 #> 2475 Granite Hills (CA) 00-0036609 NA #> 2476 West Valley (WA) 00-0036397 3915142 #> 2477 Attleboro (MA) 00-0035870 4032758 #> 2478 Mount Dora (FL) 00-0036610 NA #> 2479 Homewood-Flossmoor (IL) 00-0030997 16923 #> 2480 South Lake (FL) 00-0030649 17066 #> 2481 Governor's Academy (MA) 00-0036392 3921936 #> 2482 <NA> <NA> 4035114 #> 2483 Brighton (UT) 00-0035003 3122865 #> 2484 Pace Academy (GA) 00-0036386 4259566 #> 2485 Buena Vista (CO) 00-0027955 13964 #> 2486 Pace (FL) 00-0034648 3040204 #> 2487 Christian Brothers Academy (NY) 00-0032943 2577619 #> 2488 Charlotte Latin (NC) 00-0035710 3917792 #> 2489 Pinnacle (AZ) <NA> 3929824 #> 2490 Westfield (VA) 00-0030520 15837 #> 2491 Wheaton North (IL) 00-0035283 3116144 #> 2492 Lexington (IL) 00-0029623 15693 #> 2493 Grant Union (CA) 00-0032972 3122866 #> 2494 Millville (NJ) 00-0035268 3923397 #> 2495 Cass Tech (MI) 00-0035303 3915536 #> 2496 Norwalk (CA) 00-0032813 2575965 #> 2497 IMG Academy (FL) 00-0036449 4683485 #> 2498 Bayside (VA) 00-0033373 3048680 #> 2499 Madison County (AL) 00-0034551 3053732 #> 2500 St. Frances Academy (MD) 00-0036569 NA #> 2501 Whitehall (PA) 00-0034844 3929630 #> 2502 Pine Forest (FL) 00-0029141 15009 #> 2503 <NA> <NA> NA #> 2504 Glassboro (NJ) 00-0033725 3045260 #> 2505 Center Grove (IN) 00-0034128 3040210 #> 2506 St. Xavier (KY) <NA> 3916410 #> 2507 Elder (OH) 00-0027981 14054 #> 2508 Hillgrove (GA) 00-0033881 3051876 #> 2509 Tenafly (NJ) 00-0035981 3930035 #> 2510 Archbishop Moeller (OH) 00-0036746 NA #> 2511 Marcus (TX) 00-0034988 4044452 #> 2512 Rockford Lutheran (IL) <NA> 3894852 #> 2513 Vancouver College (BC) 00-0035991 4045062 #> 2514 Helix (CA) 00-0030443 15980 #> 2515 Decatur Central (IN) 00-0036433 3791110 #> 2516 Pleasant Grove (CA) 00-0033315 2968204 #> 2517 Pine (LA) 00-0035813 3843469 #> 2518 Curie (IL) 00-0035838 4041703 #> 2519 Cathedral (CA) 00-0034256 3056577 #> 2520 Blount (AL) 00-0036913 NA #> 2521 Southeast Lauderdale (MS) 00-0035401 4241723 #> 2522 West Creek (TN) 00-0033367 2973626 #> 2523 Bishop Luers (IN) 00-0035869 4040623 #> 2524 East Ridge (FL) 00-0032707 2982761 #> 2525 Greater Atlanta Christian (GA) 00-0035535 3916945 #> 2526 Oaks Christian (CA) 00-0035602 3919510 #> 2527 Eastern Christian Academy (MD) 00-0035359 3871102 #> 2528 JSerra Catholic (CA) 00-0034860 3127306 #> 2529 Auburn (AL) 00-0032795 2980378 #> 2530 <NA> <NA> NA #> 2531 Heritage Hall (OK) 00-0032385 2976592 #> 2532 Long Beach Jordan (CA) 00-0033460 3052177 #> 2533 St. Rita of Cascia (IL) 00-0033932 2974858 #> 2534 J.J. Pearce (TX) 00-0032966 2978929 #> 2535 Glades Central (FL) 00-0031359 16730 #> 2536 <NA> <NA> 3051877 #> 2537 Trinity Episcopal (VA) 00-0036021 4239965 #> 2538 Bishop McDevitt (PA) 00-0036241 NA #> 2539 <NA> <NA> 3127025 #> 2540 Windsor (CT) 00-0036502 NA #> 2541 South Paulding (GA) 00-0036501 NA #> 2542 Southaven (MS) 00-0036504 NA #> 2543 Vista Murrieta (CA) 00-0036149 4243250 #> 2544 Franklin (CA) 00-0036152 4034849 #> 2545 Shawnee Heights (KS) 00-0035633 4411769 #> 2546 Glenville (OH) 00-0033770 2970625 #> 2547 Campus Magnet (NY) 00-0035294 3870072 #> 2548 St. Thomas Aquinas (FL) 00-0031389 16769 #> 2549 Astronaut (FL) 00-0035044 4264341 #> 2550 Braden River (FL) 00-0032592 2982866 #> 2551 Holy Trinity (FL) 00-0033892 2980110 #> 2552 Raritan (NJ) 00-0031188 16879 #> 2553 Santa Cruz (CA) 00-0036329 3858271 #> 2554 Nottingham (NJ) 00-0035288 3127367 #> 2555 St. Paul Central (MN) 00-0034248 3932901 #> 2556 Antioch (CA) 00-0036506 NA #> 2557 Milton (GA) 00-0033463 3051911 #> 2558 Sprayberry (GA) 00-0036296 3915123 #> 2559 St. Paul's Episcopal (AL) 00-0036151 4039375 #> 2560 Channel Island (CA) 00-0033758 2976151 #> 2561 Chandler (AZ) <NA> NA #> 2562 <NA> <NA> 3957452 #> 2563 Neptune (NJ) 00-0029412 14959 #> 2564 Greene County (GA) 00-0032413 2567711 #> 2565 Beach Channel (NY) 00-0034275 3045172 #> 2566 Hillsboro (TN) 00-0035507 3886528 #> 2567 DePaul Catholic (NJ) 00-0036507 NA #> 2568 Greenville (TX) 00-0034805 3120464 #> 2569 Scotlandville Magnet (LA) 00-0033963 3041112 #> 2570 Wenonah (AL) 00-0035718 4040982 #> 2571 Shepherd (TX) 00-0036505 NA #> 2572 Eastside (GA) 00-0032759 2970204 #> 2573 J. Clarke Richardson (ON) 00-0034760 4076951 #> 2574 North Penn (PA) 00-0036469 NA #> 2575 Arlington (TX) 00-0036515 NA #> 2576 Concord (DE) 00-0029792 16243 #> 2577 Concord (NC) 00-0036503 NA #> 2578 Theodore (AL) 00-0031296 16720 #> 2579 Cass Tech (MI) 00-0035202 4240528 #> 2580 Eden Prairie (MN) 00-0035276 3728281 #> 2581 James F. Byrnes (SC) 00-0035549 3911689 #> 2582 Camden County (GA) 00-0033539 3054951 #> 2583 Marion (IL) 00-0035136 2579634 #> 2584 Bishop O'Dowd (CA) 00-0036511 NA #> 2585 Olentangy Liberty (OH) 00-0036509 NA #> 2586 Jensen Beach (FL) 00-0036500 NA #> 2587 St. John's (SC) 00-0031624 3137087 #> 2588 Don Bosco Prep (NJ) 00-0033260 2983155 #> 2589 <NA> <NA> NA #> 2590 Bishop O'Dowd (CA) 00-0036979 NA #> 2591 Chaminade (NY) 00-0029685 15718 #> 2592 Dacula (GA) 00-0033793 2973637 #> 2593 Center Grove (IN) <NA> NA #> 2594 Rio Rancho (NM) 00-0036513 NA #> 2595 Sandburg (IL) 00-0033910 2979482 #> 2596 Shanley (ND) 00-0033011 2577367 #> 2597 Mountain Pointe (AZ) 00-0032407 3116110 #> 2598 The Ensworth School (TN) 00-0033300 2971584 #> 2599 Sacred Heart Prep (CA) 00-0033750 2980597 #> 2600 Valley (NM) 00-0036518 NA #> 2601 Loyola Academy (IL) 00-0034295 3048026 #> 2602 Meadowbrook (VA) 00-0031330 16771 #> 2603 McClellan (AR) 00-0036486 NA #> 2604 John Adams (OH) 00-0033161 2574302 #> 2605 Highland (ID) 00-0036514 NA #> 2606 Ben L. Smith (NC) 00-0036263 3914277 #> 2607 Warren Central (KY) 00-0032466 2583951 #> 2608 Highland Springs (VA) 00-0036284 4240090 #> 2609 McEachern (GA) 00-0035698 3701582 #> 2610 <NA> <NA> NA #> 2611 Cy-Fair (TX) 00-0036313 4035239 #> 2612 <NA> 00-0034918 3042565 #> 2613 Palma (CA) 00-0031076 16821 #> 2614 Oakland Tech (CA) 00-0026300 11394 #> 2615 NSU University School (FL) 00-0034401 3051381 #> 2616 Ashwaubenon (WI) 00-0036301 3914395 #> 2617 Corner Canyon (UT) 00-0037013 NA #> 2618 Fort Hill (MD) 00-0035537 3915411 #> 2619 Navarre (FL) 00-0036924 NA #> 2620 Theodore (AL) 00-0036269 4034952 #> 2621 Crest 00-0035505 3123675 #> 2622 Crosby (TX) 00-0035187 3123857 #> 2623 Oak Forest (IL) 00-0032058 2979477 #> 2624 Central Bucks South (PA) 00-0034457 3932420 #> 2625 Norcross (GA) 00-0034766 3123050 #> 2626 Downingtown East (PA) 00-0032214 2582410 #> 2627 Musselman (WV) 00-0035259 4039253 #> 2628 Isle of Wight (VA) 00-0032098 2519013 #> 2629 Londonderry (NH) 00-0030108 15887 #> 2630 Parkland (PA) 00-0036510 NA #> 2631 Warrenville South (IL) 00-0033871 3042778 #> 2632 Monroe (NC) 00-0031941 2576716 #> 2633 Central (KY) 00-0033681 3071572 #> 2634 Leesville Road (NC) 00-0034419 3123075 #> 2635 Station Camp (TN) 00-0033859 3115330 #> 2636 Madison Central (MS) 00-0035045 4249030 #> 2637 Mansfield Legacy (TX) 00-0032760 2576019 #> 2638 Clearwater Central Catholic (FL) 00-0035510 3929118 #> 2639 Daingerfield (TX) 00-0036255 4035403 #> 2640 St. Thomas Aquinas (FL) 00-0036980 NA #> 2641 Suitland (MD) 00-0035996 4030747 #> 2642 Calvert Hall (MD) 00-0036145 3917849 #> 2643 Westwood (SC) 00-0034631 3155188 #> 2644 <NA> <NA> NA #> 2645 South Caldwell (NC) 00-0037002 NA #> 2646 Marmion Academy (IL) 00-0035999 3916744 #> 2647 Cleveland Heights (OH) 00-0028129 14124 #> 2648 Columbus East (IN) 00-0036738 NA #> 2649 Central (TX) 00-0035998 3917576 #> 2650 Martin Luther King (MI) 00-0035885 4046538 #> 2651 <NA> <NA> 3116391 #> 2652 Brunswick (GA) 00-0030062 15863 #> 2653 Chaparral (AZ) 00-0035172 3935064 #> 2654 Fairfield (OH) 00-0036303 4241977 #> 2655 Riverdale Baptist (MD) 00-0036917 NA #> 2656 Muir (CA) 00-0032942 2971603 #> 2657 Northside (GA) 00-0032150 3045287 #> 2658 Edwardsville (IL) 00-0034310 3116058 #> 2659 Martin Luther King (MI) 00-0034377 3123938 #> 2660 Edison (CA) 00-0034993 3139368 #> 2661 Lloyd C. Bird (VA) 00-0031799 2577814 #> 2662 DeMatha Catholic (MD) 00-0028899 15222 #> 2663 San Gorgonio (CA) 00-0035108 3886327 #> 2664 Grafton (MA) 00-0033900 2974247 #> 2665 Newfield (NY) 00-0036002 4036924 #> 2666 Highland Springs (VA) 00-0036395 4035463 #> 2667 Kountze (TX) 00-0035995 4035389 #> 2668 Oakland (TN) 00-0036925 NA #> 2669 Woodward Academy (GA) 00-0032637 2576599 #> 2670 Our Lady of Good Counsel (MD) 00-0032793 2576229 #> 2671 Grenada (MS) 00-0034682 3126204 #> 2672 Oscar Smith (VA) 00-0034381 3693166 #> 2673 Crockett (MI) 00-0027865 13239 #> 2674 Silver Bluff (SC) 00-0036921 NA #> 2675 Raines (FL) 00-0036737 NA #> 2676 St. Michael's (AUS) 00-0036446 4241264 #> 2677 Muncie Central (IN) 00-0027954 13973 #> 2678 Notre Dame (TN) 00-0036922 NA #> 2679 LaSalle (MI) 00-0034463 3044706 #> 2680 Brentwood Academy (TN) 00-0033876 3115336 #> 2681 DePaul College Prep (IL) 00-0036007 3929834 #> 2682 Yazoo City (MS) 00-0029653 14941 #> 2683 North Rowan (NC) 00-0033109 2983055 #> 2684 <NA> <NA> NA #> 2685 Central (OR) 00-0036920 NA #> 2686 Mansfield (TX) 00-0032402 2971725 #> 2687 Wayne County (GA) 00-0032162 2577757 #> 2688 Crowley (TX) 00-0036916 NA #> 2689 Lyons Township (IL) 00-0033787 3050478 #> 2690 Lakes Community (IL) 00-0035386 3121544 #> 2691 Rancocas Valley (NJ) 00-0036401 4038902 #> 2692 Glades Central (FL) 00-0032895 2971929 #> 2693 Cascade Christian (OR) <NA> 3910385 #> 2694 Homestead (FL) 00-0036209 4040762 #> 2695 Thousand Oaks (CA) 00-0031898 2612151 #> 2696 South Pike (MS) 00-0036393 4360645 #> 2697 Lee M. Thurston (MI) 00-0033336 3056916 #> 2698 Middletown (NJ) 00-0031911 2565971 #> 2699 Riverside (WI) 00-0029679 14962 #> 2700 St. Louis (HI) 00-0035383 4044438 #> 2701 Maple Grove (MN) 00-0036736 NA #> 2702 Stansbury (UT) 00-0035384 3121009 #> 2703 Corvallis (OR) 00-0032954 2978247 #> 2704 Lakewood (CA) 00-0034417 3055886 #> 2705 Cedar Falls (IA) 00-0035274 3126364 #> 2706 Groveton (TX) 00-0030561 15797 #> 2707 Rockdale (TX) 00-0033065 2577631 #> 2708 Condell Park (AUS) 00-0034429 4334215 #> 2709 Hamilton (AZ) 00-0035641 3117259 #> 2710 West Ashley (SC) 00-0035743 3129116 #> 2711 Daniel Hand (CT) 00-0036396 3932668 #> 2712 Woodinville (WA) 00-0035233 3127264 #> 2713 Hallam Secondary (AUS) 00-0036013 4371989 #> 2714 Graham (NC) <NA> NA #> 2715 Audubon (NJ) 00-0026158 11252 #> 2716 Spain Park (AL) 00-0033319 3059989 #> 2717 Channelview (TX) 00-0036389 4040715 #> 2718 <NA> 00-0035387 NA #> 2719 Madison Academy (AL) 00-0034349 3916925 #> 2720 Gardendale (AL) 00-0032780 3060022 #> 2721 Woodward Academy (GA) 00-0035442 4035006 #> 2722 Yazoo County (MS) 00-0036919 NA #> 2723 Woodland Hills (PA) 00-0035243 4045163 #> 2724 Zachary (LA) 00-0034414 3051439 #> 2725 Martin (TX) 00-0036278 4040790 #> 2726 Monte Vista (CA) 00-0030061 15835 #> 2727 Downington East (PA) 00-0036806 NA #> 2728 Regis Jesuit (CO) 00-0036741 NA #> 2729 Mona Shores (MI) 00-0035356 3916564 #> 2730 Norcross (GA) 00-0033627 2972240 #> 2731 Britton-Hecla (SD) 00-0034351 3121023 #> 2732 Travis (TX) 00-0035529 3917940 #> 2733 St. John's (MA) 00-0031384 16786 #> 2734 Naples (FL) 00-0035374 3915296 #> 2735 John Tyler (TX) 00-0033733 3040035 #> 2736 Junipero Serra (CA) <NA> NA #> 2737 Broad Run (VA) 00-0035592 3139522 #> 2738 Waxahachie (TX) 00-0036387 4241802 #> 2739 North Pontotoc (MS) 00-0035296 3124964 #> 2740 Athens (AL) 00-0036271 4050373 #> 2741 IMG Academy (FL) 00-0036735 NA #> 2742 Dorman (SC) 00-0035246 3931397 #> 2743 Riverdale Baptist (MD) 00-0036398 4373673 #> 2744 St. Elizabeth (DE) 00-0033705 3047504 #> 2745 Amite (LA) 00-0036912 NA #> 2746 St. Thomas Aquinas (FL) <NA> NA #> 2747 American Heritage (FL) 00-0032609 2591718 #> 2748 Peoria (IL) 00-0036983 NA #> 2749 East Ridge (MN) 00-0034142 3126353 #> 2750 Wilmer-Hutchins (TX) 00-0035801 4035103 #> 2751 Benedictine (OH) 00-0035650 4046719 #> 2752 Jonesboro (GA) 00-0033930 3044724 #> 2753 Friendly (MD) 00-0027860 13249 #> 2754 Woodland 00-0036529 NA #> 2755 Terry Sanford (NC) 00-0036530 NA #> 2756 <NA> <NA> 2516298 #> 2757 Northside (AR) 00-0036846 NA #> 2758 Dan River (VA) 00-0034858 3124067 #> 2759 Woodland Hills (PA) 00-0032617 2576665 #> 2760 Clariton 00-0036532 NA #> 2761 Bellaire 00-0036542 NA #> 2762 Hallandale (FL) 00-0035498 3115371 #> 2763 Duval (MD) 00-0036346 4036213 #> 2764 St. Peter's Prep (NJ) 00-0034789 3925345 #> 2765 Bonnabel (LA) 00-0033503 3916144 #> 2766 Deerfield Beach (FL) 00-0035795 4259252 #> 2767 James S. Rickards (FL) 00-0035598 4408864 #> 2768 Oaks Christian (CA) 00-0031175 16873 #> 2769 Whitefield Academy (GA) 00-0035916 NA #> 2770 Jesuit (OR) 00-0034318 3122690 #> 2771 <NA> <NA> 3129298 #> 2772 Ruston (LA) 00-0035219 4241451 #> 2773 Miller Grove (GA) <NA> NA #> 2774 Elk Valley (KS) 00-0036843 NA #> 2775 St. Louis (HI) 00-0027862 13233 #> 2776 Absegami (NJ) 00-0034587 3119119 #> 2777 Monroe (GA) 00-0031412 16798 #> 2778 Augusta Christian (GA) 00-0035820 3915253 #> 2779 Peachtree Ridge (GA) 00-0027969 13977 #> 2780 Blue Springs (MO) 00-0036352 3699462 #> 2781 Manatee (FL) 00-0035595 3122915 #> 2782 Pewaukee (WI) 00-0032897 2576450 #> 2783 Fossil Ridge (TX) 00-0031136 17372 #> 2784 Pace Academy (GA) 00-0036436 4038994 #> 2785 Santa Fe (OK) 00-0036545 NA #> 2786 Foothill (NV) 00-0032399 2575164 #> 2787 Waukesha West (WI) 00-0033125 2977819 #> 2788 Richmond (NC) 00-0029249 14926 #> 2789 Kimball (TX) 00-0036870 NA #> 2790 Fenwick (IL) 00-0034720 3129446 #> 2791 Bishop McNamara 00-0036533 NA #> 2792 New Town (MD) 00-0036845 NA #> 2793 Suffield (CT) <NA> NA #> 2794 Colerain (OH) 00-0034121 3128268 #> 2795 Charles W. Flanagan (FL) 00-0035525 4036261 #> 2796 Pewaukee (WI) 00-0033886 3045282 #> 2797 Aquinas Institute (NY) 00-0036068 NA #> 2798 Eugene Ashley (NC) 00-0036333 4037333 #> 2799 Henry Wise (MD) 00-0034335 3116149 #> 2800 Trinity Catholic (FL) 00-0035223 3920867 #> 2801 Chartiers Valley (PA) 00-0034051 2978524 #> 2802 Sheldon (OR) 00-0032486 2967885 #> 2803 Whitmer (OH) 00-0033913 2977615 #> 2804 St. Augustine (LA) 00-0031362 16789 #> 2805 Central Islip (NY) 00-0035463 4040626 #> 2806 Plaquemine (LA) 00-0036339 3917599 #> 2807 Andale (KS) 00-0031779 2512172 #> 2808 <NA> <NA> 3049807 #> 2809 Aquinas Institute (NY) 00-0033715 2980142 #> 2810 Southfield (MI) 00-0034768 3129473 #> 2811 Willowridge (TX) 00-0033326 2971556 #> 2812 Sheepshead Bay (NY) 00-0033631 3060134 #> 2813 Lakes (WA) 00-0033785 2971616 #> 2814 Tottenville (NY) 00-0034625 3119215 #> 2815 Westbrook (TX) 00-0036869 NA #> 2816 Tampa Catholic (FL) 00-0032204 2516053 #> 2817 Holy Savior Menard Central (LA) 00-0034937 3126261 #> 2818 <NA> <NA> NA #> 2819 Sumter (SC) 00-0036847 NA #> 2820 Melbourne (AUS) 00-0031502 2472364 #> 2821 Alpharetta (GA) 00-0033949 3044720 #> 2822 Findlay (OH) 00-0022924 5536 #> 2823 Martin Luther King (GA) <NA> NA #> 2824 Northwestern (SC) 00-0034771 3116407 #> 2825 Bullis School (NJ) 00-0035232 4040616 #> 2826 <NA> <NA> NA #> 2827 Mallard Creek (NC) 00-0034331 3116721 #> 2828 <NA> <NA> 2970270 #> 2829 Lyndhurst (NJ) 00-0036454 4262315 #> 2830 Gainesville (FL) 00-0035551 3886841 #> 2831 DeMatha Catholic (MD) 00-0036336 4241941 #> 2832 Westerville Central (OH) 00-0035217 4035072 #> 2833 Dan River (VA) 00-0033838 2970090 #> 2834 Falcon (CO) 00-0034799 3128774 #> 2835 Antioch (CA) 00-0036893 NA #> 2836 Brainerd (MN) 00-0032419 2573103 #> 2837 Smith (NC) 00-0031387 16732 #> 2838 John W. North (CA) 00-0034169 3051387 #> 2839 Brooks School (MA) 00-0036894 NA #> 2840 Pine-Richland (PA) 00-0034193 3049290 #> 2841 Eldorado (NM) 00-0035222 3929924 #> 2842 Timpview (UT) 00-0035058 3932963 #> 2843 St. Augustine (LA) 00-0035553 3126263 #> 2844 Clinton (MI) 00-0036471 NA #> 2845 Abbotsford (CAN) 00-0036326 4046692 #> 2846 Earl J. Lennard (FL) 00-0035216 3932905 #> 2847 South Pointe (SC) 00-0035474 4049301 #> 2848 Eisenhower (OK) 00-0036541 NA #> 2849 Norcross (GA) 00-0036531 NA #> 2850 Stamford (TX) 00-0034676 3122449 #> 2851 Walled Lake Western (MI) 00-0035891 4241983 #> 2852 McEachern (GA) 00-0036070 4035018 #> 2853 Sickles (FL) 00-0034407 3728262 #> 2854 Long Beach Poly (CA) 00-0033857 3120348 #> 2855 Liberty Christian (TX) 00-0034239 3122432 #> 2856 Merrillville (IN) 00-0034527 3121344 #> 2857 Christian Brothers (CA) 00-0033783 3122630 #> 2858 Francis Howell Central (MO) 00-0031331 16948 #> 2859 Midwest City (OK) 00-0035972 3821692 #> 2860 Archbishop Stepinac (NY) 00-0036056 3912347 #> 2861 Independence (CA) 00-0034384 3139387 #> 2862 Pensacola (FL) 00-0032251 3043258 #> 2863 Judson (TX) 00-0034756 3046326 #> 2864 Union (OK) 00-0036885 NA #> 2865 Wooster (OH) 00-0035139 4243244 #> 2866 Oceanside (CA) 00-0035285 3886824 #> 2867 Overton (TN) 00-0035142 3886834 #> 2868 Long Beach Poly (CA) 00-0036794 NA #> 2869 Raytown (MO) 00-0027945 13988 #> 2870 Austin (AL) 00-0036063 4039919 #> 2871 Hopewell (VA) 00-0036413 3915396 #> 2872 Judson (TX) 00-0036426 4254276 #> 2873 McKeesport (PA) 00-0033024 2577642 #> 2874 Altoona (PA) <NA> 3911910 #> 2875 Junipero Serra (CA) 00-0034831 3912562 #> 2876 Fort Dorchester (SC) 00-0027662 13274 #> 2877 Munday (TX) 00-0035636 3116449 #> 2878 Inglewood (CA) 00-0030380 16528 #> 2879 Lyndon B. Johnson (TX) 00-0030946 17068 #> 2880 Elton (LA) 00-0027723 13493 #> 2881 Mansfield Summit (TX) 00-0035946 4039164 #> 2882 Highland (UT) 00-0035094 3115979 #> 2883 East English Village Prep (MI) 00-0036058 4036138 #> 2884 Venice (FL) 00-0036805 NA #> 2885 Grayson (GA) 00-0032761 3051886 #> 2886 Hilton Head (SC) 00-0034234 3125114 #> 2887 Whitefish Bay (WI) 00-0028292 14471 #> 2888 Canton (MS) 00-0036417 4362647 #> 2889 Westlake (GA) 00-0030593 15814 #> 2890 Birdville (TX) 00-0036798 NA #> 2891 Wylie (TX) 00-0033592 2978933 #> 2892 Mater Dei Catholic (CA) 00-0031492 2473037 #> 2893 Sacred Heart Prep (CA) 00-0035143 3886816 #> 2894 Stratford (TX) 00-0036409 4043130 #> 2895 Brighton (UT) 00-0035672 3926229 #> 2896 Spanaway Lake (WA) <NA> NA #> 2897 <NA> <NA> NA #> 2898 Colony (CA) 00-0029255 14979 #> 2899 Neuqua Valley (IL) 00-0036802 NA #> 2900 John Ehret (LA) <NA> 4035443 #> 2901 University Lab (LA) 00-0033915 3054862 #> 2902 Chattahooche (GA) <NA> NA #> 2903 John Curtis Christian (LA) 00-0035824 4042125 #> 2904 <NA> <NA> NA #> 2905 Jenks (OK) 00-0031156 17378 #> 2906 Amite County (MS) 00-0031367 16753 #> 2907 Raleigh Enloe (NC) 00-0035141 3136374 #> 2908 Lemont (IL) 00-0033901 3042738 #> 2909 Crespi (CA) 00-0033446 2971614 #> 2910 <NA> 00-0036800 NA #> 2911 De La Salle (IL) 00-0034729 3121417 #> 2912 West Orange (FL) 00-0036653 NA #> 2913 Philadelphia (MS) 00-0036796 NA #> 2914 Allen (TX) 00-0032233 2511825 #> 2915 Hermitage (VA) 00-0026166 11260 #> 2916 Goose Creek (SC) 00-0032420 2577690 #> 2917 Decatur Central (IN) 00-0035132 3116658 #> 2918 Redwood (CA) 00-0036795 NA #> 2919 Kirrawee (AUS) 00-0034160 3929851 #> 2920 Gaither (FL) 00-0034732 3128843 #> 2921 <NA> <NA> NA #> 2922 Miramar (FL) 00-0030565 15864 #> 2923 Foothill (CA) 00-0032245 2517017 #> 2924 Collegiate (VA) 00-0029263 14881 #> 2925 <NA> <NA> 4241403 #> 2926 Norwalk (CA) 00-0034750 3139925 #> 2927 South Plantation (FL) 00-0032426 3046409 #> 2928 The Woodlands (TX) 00-0036054 3915427 #> 2929 Central Catholic (OR) 00-0036179 3931401 #> 2930 Glynn Academy (GA) 00-0036425 4240631 #> 2931 Opelika (AL) 00-0036799 NA #> 2932 Oxbridge Academy (FL) 00-0035594 4037457 #> 2933 Parkview (GA) 00-0033594 3919596 #> 2934 Carrollton Hebron (TX) 00-0033872 3115373 #> 2935 Creekside (GA) 00-0035555 3917203 #> 2936 Angleton (TX) 00-0031608 2577553 #> 2937 Copiah-Lincoln (MS) 00-0035986 4242246 #> 2938 Columbia (GA) 00-0033895 3918639 #> 2939 IMG Academy (FL) 00-0036059 3916587 #> 2940 Steele Canyon (CA) 00-0036064 NA #> 2941 Oaks Christian (CA) 00-0036244 4242557 #> 2942 Waukee (IA) <NA> NA #> 2943 Norco (CA) 00-0035773 4373904 #> 2944 Bozeman (MT) 00-0034159 3127292 #> 2945 Red Wing (MN) 00-0036931 NA #> 2946 Sumner (WA) 00-0036804 NA #> 2947 Turner County (GA) <NA> NA #> 2948 Mona Shores (MI) 00-0036475 NA #> 2949 Booker T. Washington (OK) 00-0032211 2577327 #> 2950 Cedar City (UT) 00-0035597 3933064 #> 2951 Lovejoy (TX) 00-0035987 4039000 #> 2952 North Marion (FL) 00-0036247 4034950 #> 2953 Butler (NC) 00-0035520 3895828 #> 2954 King's Ridge Christian (GA) 00-0035022 3917546 #> 2955 Elkins (TX) 00-0034710 3051650 #> 2956 Oxford (MS) 00-0035640 4047650 #> 2957 Huron (OH) 00-0035164 3126115 #> 2958 <NA> <NA> NA #> 2959 Bluffton (IN) 00-0036620 NA #> 2960 Lamar (TX) 00-0029664 15705 #> 2961 Bellevue West (NE) 00-0036810 NA #> 2962 Bushland (TX) 00-0031238 16746 #> 2963 San Marcos (CA) 00-0026997 12616 #> 2964 Plano East (TX) 00-0032701 2577185 #> 2965 Elkhorn (NE) 00-0031047 16743 #> 2966 <NA> <NA> 4232831 #> 2967 College Park (TX) 00-0035188 4039292 #> 2968 Dudley (NC) 00-0034096 3115337 #> 2969 Stockbridge (GA) 00-0035318 3128743 #> 2970 Warwick (VA) 00-0030403 15939 #> 2971 St. Joseph Regional (NJ) 00-0031253 17444 #> 2972 Rodriguez (CA) 00-0031334 16726 #> 2973 William A. Hough (NC) 00-0035155 3728261 #> 2974 Wichita South (KS) 00-0034388 3047188 #> 2975 Martin Luther King (MI) 00-0037008 NA #> 2976 Pennington Prep (NJ) 00-0031061 16893 #> 2977 Eastlake (CA) 00-0030294 16195 #> 2978 Dr. Phillips (FL) 00-0031333 16735 #> 2979 H.D. Woodson (DC) 00-0029410 14977 #> 2980 Sachse (TX) 00-0035808 4040975 #> 2981 Dr. Phillips (FL) 00-0034730 3043110 #> 2982 Quitman (MS) 00-0034263 4039278 #> 2983 Davidson (AL) 00-0032057 2509844 #> 2984 Salesian (CA) 00-0036563 NA #> 2985 Crescent Valley (OR) 00-0036564 NA #> 2986 Davidson (AL) 00-0031298 16717 #> 2987 Liberty (NV) 00-0033649 3053804 #> 2988 Middletown (NJ) 00-0033122 2576257 #> 2989 Rockhurst (CA) 00-0033912 3052434 #> 2990 Quince Orchard (MD) 00-0031105 17071 #> 2991 Pleasant Grove (CA) 00-0032164 2971275 #> 2992 Ogemaw Heights (MI) 00-0032435 2582150 #> 2993 Desert Ridge (AZ) 00-0033746 2976114 #> 2994 Hapeville Charter (GA) 00-0034825 3843843 #> 2995 St. Thomas Aquinas (FL) 00-0035717 4040605 #> 2996 David Douglas (OR) 00-0033945 3045527 #> 2997 Grandview (CO) 00-0032480 2576040 #> 2998 Lyman (FL) <NA> 3929896 #> 2999 St. Clair County (AL) 00-0031297 16707 #> 3000 Lancaster (TX) 00-0033285 3051807 #> 3001 Goose Creek (SC) 00-0036260 4259491 #> 3002 Rose (NC) 00-0034320 3116726 #> 3003 Xaverian Brothers (MA) 00-0034746 3045220 #> 3004 Bishop Dunne (TX) 00-0035802 3919607 #> 3005 Wren (SC) 00-0033297 3894915 #> 3006 Auburn Placer (CA) 00-0033924 3047570 #> 3007 Altoona (PA) 00-0035026 3929641 #> 3008 Clovis (CA) 00-0035807 4049391 #> 3009 Cloverleaf (OH) 00-0029892 16002 #> 3010 Central Mountain (PA) 00-0023252 9354 #> 3011 Los Gatos (CA) 00-0030401 15819 #> 3012 Mountain View (AZ) 00-0035020 3931424 #> 3013 Mission Hills (CA) 00-0034815 3138826 #> 3014 St. Xavier (OH) 00-0036673 NA #> 3015 Academy at Shawnee (KY) 00-0035804 3908558 #> 3016 Hillsborough (FL) 00-0035166 3919117 #> 3017 Hoover (CA) 00-0029409 14978 #> 3018 Tucker (GA) 00-0036675 NA #> 3019 Homestead (FL) 00-0032627 2970181 #> 3020 Fayetteville (AR) 00-0034982 3916903 #> 3021 Landmark Christian (GA) 00-0033420 3048402 #> 3022 Saline (MI) 00-0033199 2979553 #> 3023 Lane Technical (IL) 00-0032234 2512477 #> 3024 El Cerrito (CA) 00-0036551 NA #> 3025 Holy Names (CAN) 00-0034229 4335942 #> 3026 Timpview (UT) 00-0034945 2970513 #> 3027 Consortium (MI) 00-0036557 NA #> 3028 Evergreen (WA) 00-0029546 15123 #> 3029 Rosemount (MN) 00-0029144 15082 #> 3030 Union Local (OH) 00-0036256 3916075 #> 3031 <NA> <NA> NA #> 3032 Valley Center (CA) 00-0033221 2976117 #> 3033 Longview (TX) 00-0027857 13241 #> 3034 Centerville (VA) 00-0034989 3915777 #> 3035 William Penn Charter (PA) 00-0034847 3052885 #> 3036 Olive Branch (MS) 00-0033097 2574573 #> 3037 Lumen Christi College (AUS) 00-0034941 4035685 #> 3038 Modesto Christian (CA) 00-0032792 2979501 #> 3039 Rolling Meadows (IL) 00-0031345 16760 #> 3040 Marshall Senior (MN) 00-0037012 NA #> 3041 <NA> <NA> NA #> 3042 Erath (LA) 00-0036567 NA #> 3043 Elkhart (TX) 00-0034115 3122976 #> 3044 Grayson (GA) 00-0033950 3045127 #> 3045 New Smyrna Beach (FL) 00-0031687 2576414 #> 3046 Sprayberry (GA) <NA> NA #> 3047 Longview (TX) 00-0035806 3928925 #> 3048 <NA> <NA> 3055905 #> 3049 Kirkwood (MO) 00-0031585 2508256 #> 3050 Oakridge (CA) 00-0034073 3120303 #> 3051 Hargrave (TX) 00-0035805 3880416 #> 3052 Gahr (CA) 00-0032599 2578377 #> 3053 Madison Academy (AL) 00-0031299 16763 #> 3054 Rabun County (GA) 00-0036429 4035020 #> 3055 Norman (OK) 00-0033288 3040151 #> 3056 Beech (TN) 00-0034971 3115328 #> 3057 Detroit Country Day (MI) 00-0030670 16995 #> 3058 Centennial (AZ) 00-0035035 4039604 #> 3059 South Brunswick (NJ) 00-0029632 14922 #> 3060 Inman Chapman (SC) 00-0035719 3126486 #> 3061 Blackman (TN) 00-0036259 3886598 #> 3062 Glades Central (FL) 00-0029269 15062 #> 3063 Riverview (FL) 00-0034286 3122899 #> 3064 North Fort Myers (FL) 00-0036676 NA #> 3065 Santa Margarita Catholic (CA) 00-0034054 3052056 #> 3066 McQueen (NV) 00-0036261 4360438 #> 3067 Deer Valley (CA) 00-0035621 3119317 #> 3068 Junipero Serra (CA) 00-0031431 16787 #> 3069 Gainesville (FL) 00-0033855 3054970 #> 3070 Danville (IL) 00-0034487 3122168 #> 3071 Belton (TX) <NA> 4039042 #> 3072 Latta (SC) 00-0035846 3126490 #> 3073 Fort Morgan (CO) 00-0029895 16038 #> 3074 Strom Thurmond (SC) 00-0032933 3056354 #> 3075 Whitehouse (TX) 00-0035485 3914477 #> 3076 Chippewa Valley (MI) 00-0035239 3932886 #> 3077 Whale Branch Early College (SC) 00-0034515 3049726 #> 3078 Eleanor Roosevelt (CA) 00-0036667 NA #> 3079 Miramar (FL) 00-0035210 3919107 #> 3080 Lausanne Collegiate (TN) <NA> NA #> 3081 Cocoa (FL) 00-0035699 3873935 #> 3082 Miami Norland (FL) 00-0034778 3916923 #> 3083 Charlotte Latin (NC) 00-0031016 16843 #> 3084 Ridgeview (CA) 00-0036763 NA #> 3085 Central Valley (PA) 00-0034374 3895798 #> 3086 Commack (NY) <NA> NA #> 3087 Trinity Christian Academy (FL) 00-0036046 3920823 #> 3088 University (FL) 00-0032042 2525492 #> 3089 Iona Prep (NY) 00-0034085 3912343 #> 3090 First Colonial (VA) 00-0034179 3049331 #> 3091 Winton Woods (OH) 00-0035681 3155647 #> 3092 The Woodlands (TX) 00-0036411 4034790 #> 3093 <NA> <NA> NA #> 3094 St. Rita (IL) 00-0033595 2980206 #> 3095 Hazen (WA) 00-0036967 NA #> 3096 Southeastern (MI) 00-0030386 16019 #> 3097 Gainesville (GA) 00-0033582 3892689 #> 3098 Maple Grove (MN) 00-0035941 NA #> 3099 South Cobb (GA) 00-0036761 NA #> 3100 Lakes (WA) 00-0036050 3886826 #> 3101 Carroll (AL) 00-0026564 12895 #> 3102 Grant (OR) 00-0027855 13234 #> 3103 Archer (GA) 00-0036180 4038840 #> 3104 Milpitas (CA) 00-0034773 3134362 #> 3105 Blue Springs (MO) 00-0036430 3699530 #> 3106 Central (AL) 00-0031957 2575453 #> 3107 <NA> <NA> 2973659 #> 3108 New Smyrna Beach (FL) 00-0035586 3121542 #> 3109 Faith Lutheran (NV) 00-0036048 3722375 #> 3110 Concord (NC) 00-0036105 3920591 #> 3111 Booker T. Washington (FL) 00-0036757 NA #> 3112 Hickory (NC) 00-0026968 12731 #> 3113 Oak Ridge (TX) 00-0036672 NA #> 3114 Oxford (AL) 00-0036643 NA #> 3115 Peachtree Ridge (GA) 00-0030382 15856 #> 3116 Vanden (CA) 00-0031366 16723 #> 3117 Waukee (IA) 00-0035254 3894856 #> 3118 Boys Town (NE) 00-0031101 16967 #> 3119 Chapel Hill (GA) 00-0036045 4034496 #> 3120 North Webster (LA) 00-0035707 4035434 #> 3121 Northwestern (FL) 00-0029562 14985 #> 3122 Wekiva (FL) <NA> NA #> 3123 Plano (IL) 00-0033659 2974344 #> 3124 Deerfield Beach (FL) 00-0027867 13256 #> 3125 Costa Mesa (CA) 00-0035000 3933407 #> 3126 Corrigan-Camden (TX) 00-0036030 4039075 #> 3127 Jesuit (FL) 00-0026844 13078 #> 3128 Marshfield (MA) 00-0033196 3065813 #> 3129 <NA> <NA> NA #> 3130 Huntingdon (TN) 00-0036759 NA #> 3131 St. Anne's-Belfield (VA) 00-0034668 3049339 #> 3132 Hastings (NY) 00-0032243 3165702 #> 3133 Dublin (CA) 00-0034678 3059021 #> 3134 <NA> <NA> 2971823 #> 3135 Simon Gratz (PA) 00-0030504 15901 #> 3136 Mt. Greylock (MA) 00-0035915 NA #> 3137 Owings Mills (MD) 00-0032217 2582147 #> 3138 Kilgore (TX) 00-0035839 3929752 #> 3139 Hanover (VA) 00-0030829 17283 #> 3140 Brunswick (CT) 00-0033795 2982323 #> 3141 Mount Vernon (IA) 00-0036406 4240589 #> 3142 Champagnat Catholic (FL) 00-0034940 3938130 #> 3143 Seminole (FL) 00-0036123 4040778 #> 3144 St. John's (DC) <NA> NA #> 3145 IMG Academy (FL) <NA> NA #> 3146 Northwest Cabarrus (NC) 00-0032065 2977680 #> 3147 <NA> 00-0034908 2973605 #> 3148 Francis W. Parker (CA) 00-0031876 2576240 #> 3149 Chaminade College Prep (CA) 00-0029857 16140 #> 3150 Harrison (MI) 00-0025430 10487 #> 3151 Parkway West (MO) 00-0027948 13987 #> 3152 Junipero Serra (CA) 00-0019596 2330 #> 3153 Manvel (TX) 00-0036928 NA #> 3154 McKinney North (TX) 00-0034816 3912550 #> 3155 Pearl-Cohn (TN) 00-0036450 3917612 #> 3156 Cedar Hill (TX) 00-0035716 3912551 #> 3157 St. Thomas Aquinas (FL) 00-0030456 15826 #> 3158 Anniston (AL) 00-0033164 2983319 #> 3159 St. Augustine (LA) 00-0033856 3115364 #> 3160 Woodberry Forest (VA) 00-0032393 2980148 #> 3161 Northern Guilford (NC) 00-0033789 3039723 #> 3162 <NA> <NA> 3115259 #> 3163 Stone (MS) 00-0033898 3895859 #> 3164 Dominguez (CA) 00-0034027 3912558 #> 3165 Scott's Branch (SC) 00-0032429 2978727 #> 3166 Autauga Academy (AL) 00-0033879 3043080 #> 3167 Camden Central (TN) 00-0034613 3050481 #> 3168 Naperville Central (IL) 00-0031273 17453 #> 3169 Woodland Hills (PA) 00-0027656 13229 #> 3170 Chattanooga (OK) 00-0034735 3951441 #> 3171 Dorsey (CA) 00-0033006 2978308 #> 3172 Rummel (LA) 00-0033215 4217370 #> 3173 Middletown (PA) 00-0033921 3116165 #> 3174 Austin (AL) 00-0036107 4368796 #> 3175 Norland (FL) 00-0027793 13934 #> 3176 Clay-Chalkville (AL) 00-0036762 NA #> 3177 <NA> <NA> 3042890 #> 3178 South Plantation (FL) 00-0034705 4035496 #> 3179 Servite (CA) 00-0036047 NA #> 3180 North (MN) 00-0036427 2310331 #> 3181 Ball (TX) 00-0031408 16737 #> 3182 Eisenhower (TX) 00-0036877 NA #> 3183 Barrington (IL) 00-0035298 3914397 #> 3184 South Fayette (PA) 00-0034386 3118892 #> 3185 <NA> <NA> NA #> 3186 Evangelical Christian (TN) 00-0032911 2577792 #> 3187 Guyer (TX) 00-0034118 3040013 #> 3188 Bibb County (AL) 00-0029413 15109 #> 3189 Notre Dame (CA) 00-0032192 2511330 #> 3190 Skyline (TX) 00-0036171 4040537 #> 3191 Statesville (NC) 00-0033435 3048663 #> 3192 Calvary Christian Academy (FL) 00-0033430 2979515 #> 3193 Archbishop Rummel (LA) 00-0036416 4035433 #> 3194 Wagoner (OK) 00-0032848 2977742 #> 3195 Pahokee (FL) 00-0029681 14974 #> 3196 <NA> <NA> 3045577 #> 3197 Del Norte (CA) 00-0034523 3931400 #> 3198 Sandalwood (FL) 00-0034641 3116104 #> 3199 Maiden (NC) 00-0036615 NA #> 3200 West Linn (OR) 00-0036992 NA #> 3201 Christian (NC) 00-0032496 2579840 #> 3202 Park Center (MN) 00-0035632 4036134 #> 3203 Southridge (FL) 00-0033819 3051925 #> 3204 Florida A&M University (FL) 00-0036240 4043605 #> 3205 Valencia (CA) 00-0033554 3052125 #> 3206 Wilmington Delcastle Tech (DE) 00-0032517 2970694 #> 3207 Fort Bend Dulles (TX) 00-0033415 3054859 #> 3208 Stonewall Jackson (VA) <NA> NA #> 3209 Ayala (CA) 00-0034389 3931422 #> 3210 Central Catholic (OR) 00-0036656 NA #> 3211 Carvers Bay (SC) 00-0031571 2519211 #> 3212 Martin Luther King (GA) 00-0033132 2574056 #> 3213 Scioto (OH) 00-0030161 16269 #> 3214 Grandview (MO) 00-0035600 3116082 #> 3215 Albemarle (NC) 00-0031254 17447 #> 3216 St. Thomas Aquinas (FL) 00-0035048 3915285 #> 3217 Raleigh (MS) 00-0032578 2577392 #> 3218 Cary (NC) 00-0035390 4239817 #> 3219 Miramar (FL) 00-0032566 2982880 #> 3220 <NA> <NA> NA #> 3221 Evanston Township (IL) 00-0036695 NA #> 3222 Noxubee County (MS) 00-0035643 4035369 #> 3223 West Philadelphia (PA) 00-0036181 4374269 #> 3224 Gladewater (TX) 00-0034985 3917316 #> 3225 Williamstown (NJ) 00-0034283 3051320 #> 3226 La Habra (CA) 00-0032463 3134288 #> 3227 E. Bladen (NC) 00-0036237 4240123 #> 3228 Lee County (LA) 00-0036691 NA #> 3229 <NA> <NA> 3915519 #> 3230 Fowlerville (MI) 00-0036923 NA #> 3231 Algona (IA) 00-0036690 NA #> 3232 <NA> <NA> 3117315 #> 3233 Campolindo (CA) 00-0028907 15245 #> 3234 O'Fallon (IL) 00-0036177 4035098 #> 3235 Canisius (NY) <NA> NA #> 3236 Valparaiso (IN) 00-0033138 2582139 #> 3237 Brennan (TX) 00-0035521 3125126 #> 3238 Mission Viejo (CA) 00-0032081 2518789 #> 3239 George Bush (TX) 00-0034204 3126081 #> 3240 Danville (IL) 00-0031999 2574282 #> 3241 Cooper City (FL) 00-0036938 NA #> 3242 James Clemens (AL) 00-0037000 NA #> 3243 Cardinal Mooney (OH) 00-0030442 16010 #> 3244 Wilkinson County (GA) 00-0032146 2576702 #> 3245 Pine Forest (NC) 00-0034828 3122793 #> 3246 Governor Mifflin (PA) 00-0036067 3929644 #> 3247 Auburn (AL) 00-0034743 3126349 #> 3248 Long Beach Poly (CA) 00-0033954 3047559 #> 3249 Winton Woods (OH) 00-0035292 3916074 #> 3250 Lincoln-Way West (IL) 00-0033642 2970622 #> 3251 Evangelical Christian (TN) 00-0027557 13848 #> 3252 Bedford (OH) 00-0027648 13294 #> 3253 Waukee (IA) 00-0035036 3144994 #> 3254 Celina (TX) 00-0033740 2977779 #> 3255 Perry (AZ) 00-0036694 NA #> 3256 La Costa Canyon (CA) 00-0030097 15946 #> 3257 Stone Bridge (VA) 00-0035649 3120070 #> 3258 Williston (ND) 00-0031031 17087 #> 3259 Chaparral (AZ) 00-0031442 16708 #> 3260 Becker (MN) 00-0036619 NA #> 3261 Green (OH) 00-0034250 3042468 #> 3262 Christ Presbyterian (TN) 00-0035007 3122099 #> 3263 St. Francis Catholic (CA) 00-0032147 2514397 #> 3264 Butler (NC) 00-0031921 2509370 #> 3265 Mason (OH) 00-0034664 3059936 #> 3266 Harlem (IL) 00-0036178 NA #> 3267 ProKick Australia (AUS) 00-0036699 NA #> 3268 Grand Island (NY) 00-0025825 11555 #> 3269 Mater Dei (CA) 00-0030533 15948 #> 3270 Big Spring (TX) 00-0029701 14876 #> 3271 Toledo Central Catholic (OH) 00-0033899 3129302 #> 3272 Franklin County (KY) 00-0034438 3042749 #> 3273 New Smyrna Beach (FL) 00-0036297 4036431 #> 3274 Santa Margarita Catholic (CA) 00-0033955 3127586 #> 3275 Buckhorn (AL) 00-0035099 3122154 #> 3276 Yulee (FL) 00-0032764 3043078 #> 3277 Belleville West (IL) 00-0033567 3125403 #> 3278 Key West (FL) 00-0036698 NA #> 3279 Columbia (GA) 00-0036175 4408915 #> 3280 Southern (KY) 00-0034319 3059766 #> 3281 Madison Southern (KY) 00-0028042 14099 #> 3282 Pleasant Valley (CA) 00-0032141 3046704 #> 3283 Blue Springs South (MO) 00-0036696 NA #> 3284 Manalapan (NJ) 00-0033455 3049698 #> 3285 St. Thomas Aquinas (FL) 00-0031884 2468368 #> 3286 Norcross (GA) 00-0035787 3915772 #> 3287 Lakeview (MI) 00-0034611 3129455 #> 3288 Archbishop Mitty (CA) 00-0036173 3675550 #> 3289 Cartersville 00-0036692 NA #> 3290 Millwood (OK) 00-0034652 3139456 #> 3291 Jim Hill (MS) 00-0033994 2971397 #> 3292 Charlottesville (VA) 00-0034034 3049329 #> 3293 Foley (AL) 00-0027944 13982 #> 3294 Lee (AL) 00-0032355 2983209 #> 3295 Starkville (MS) 00-0035676 4047646 #> 3296 Jesuit (LA) 00-0035887 4035277 #> 3297 Clear Springs (TX) 00-0032980 2971718 #> 3298 Lake Mary (FL) 00-0036182 3929785 #> 3299 Edna Karr (LA) 00-0036652 NA #> 3300 Jay (TX) 00-0033943 3115306 #> 3301 Mountain View (OR) 00-0033386 3115443 #> 3302 Mott (MI) 00-0036627 NA #> 3303 Habersham Central (GA) 00-0036176 4057082 #> 3304 Brebeuf Jesuit (IN) 00-0034058 2971093 #> 3305 Burnsville (MN) 00-0033529 2976182 #> 3306 Sacred Heart Cathedral (CA) 00-0036342 4036831 #> 3307 <NA> <NA> NA #> 3308 Jordan (UT) 00-0030869 17196 #> 3309 Oxford (AL) 00-0031587 2575606 #> 3310 Owasso (OK) 00-0031259 16900 #> 3311 Lakeland (FL) 00-0031628 2515490 #> 3312 Stonewall Jackson (VA) 00-0034337 3124086 #> 3313 Carol City (FL) 00-0034276 3042496 #> 3314 Cathedral (CA) 00-0033405 3058965 #> 3315 Wheatley (TX) 00-0033107 3061106 #> 3316 East Feliciana (LA) 00-0034071 3141066 #> 3317 Euclid (OH) 00-0034130 3125816 #> 3318 Hamilton (AZ) 00-0033410 3052883 #> 3319 Royal Palm Beach (FL) 00-0035307 3120508 #> 3320 Good Counsel (MD) 00-0033084 3045465 #> 3321 Lone Star (TX) 00-0036060 4035402 #> 3322 Dutchtown (LA) 00-0032262 2979841 #> 3323 Walnut Ridge (OH) 00-0036638 NA #> 3324 DeRidder (LA) 00-0031844 2578692 #> 3325 Muskogee (OK) 00-0036349 4242154 #> 3326 Cegep du Vieux Montreal (CAN) 00-0036625 NA #> 3327 Paradise Valley (AZ) 00-0035305 3121034 #> 3328 Pensacola Catholic (FL) 00-0034465 3125248 #> 3329 Mount Lebanon (PA) 00-0034334 3116152 #> 3330 West Potomac (VA) 00-0034602 3060151 #> 3331 Millbrook (NC) 00-0036351 3686690 #> 3332 Stephenson (GA) 00-0035647 3134690 #> 3333 Cathedral Catholic (CA) 00-0036403 3931408 #> 3334 Hogan Preparatory Academy (MO) 00-0036664 NA #> 3335 Central Catholic (OH) <NA> NA #> 3336 DeMatha Catholic (MD) 00-0036321 4241986 #> 3337 Crescent City (FL) 00-0033962 3054950 #> 3338 Desert Vista (AZ) 00-0035314 3122692 #> 3339 Imhotep Charter (PA) 00-0036666 NA #> 3340 Hunterdon Central (NJ) 00-0032781 2976263 #> 3341 <NA> 00-0036447 4686421 #> 3342 Shades Valley (AL) 00-0034333 3925354 #> 3343 Hebron (TX) 00-0035423 3133368 #> 3344 Stonewall Jackson (VA) 00-0034397 3929956 #> 3345 Carolina (SC) 00-0033501 3121581 #> 3346 Carver (GA) 00-0031574 2574579 #> 3347 Stone Bridge (VA) 00-0033523 3054840 #> 3348 Woodstock (IL) 00-0031722 2566837 #> 3349 <NA> <NA> 3040163 #> 3350 North Shore (TX) 00-0034097 3117420 #> 3351 Clear Lake (TX) 00-0030098 15965 #> 3352 McPherson (KS) 00-0034202 3068715 #> 3353 Palm Beach Central (FL) 00-0030064 15827 #> 3354 Scappoose (OR) 00-0031596 2972400 #> 3355 Long County (GA) 00-0036614 NA #> 3356 Centennial (CA) 00-0032998 2575997 #> 3357 Troup County (GA) 00-0033887 3054844 #> 3358 Roseville (CA) 00-0035444 4035866 #> 3359 McKeesport (PA) 00-0036343 4046525 #> 3360 Pearland (TX) 00-0035419 3122441 #> 3361 Palos Verdes (CA) 00-0032809 3043184 #> 3362 New Smyrna Beach (FL) 00-0035286 3116689 #> 3363 Lincoln (OH) 00-0036659 NA #> 3364 Chaparral (AZ) 00-0032432 2581273 #> 3365 Milton-Union (OH) 00-0035263 3128263 #> 3366 Grafton (WI) 00-0035323 3121537 #> 3367 Denison (IA) 00-0032053 2511708 #> 3368 Atascocita (TX) 00-0036618 NA #> 3369 Middletown (MD) 00-0034379 3122927 #> 3370 Loyola Blakefield (MD) 00-0034610 3051330 #> 3371 San Leandro (CA) 00-0031095 16848 #> 3372 Madison-Ridgeland Academy (MS) 00-0036334 4242230 #> 3373 Miami Norland (FL) 00-0032259 2969952 #> 3374 Grafton (MA) 00-0034456 3049836 #> 3375 Duncan Fletcher (FL) 00-0033946 3121656 #> 3376 Edna Karr (LA) 00-0030725 17202 #> 3377 Union (OK) 00-0030140 16166 #> 3378 Collins Hill (GA) 00-0031800 2565969 #> 3379 Desert Mountain (AZ) 00-0034577 3115293 #> 3380 Del Valle (TX) 00-0036022 3915436 #> 3381 Highland (AZ) 00-0023682 8664 #> 3382 Killian (FL) 00-0029615 14886 #> 3383 Central (AL) 00-0032602 2572861 #> 3384 Allen (TX) 00-0032975 2980077 #> 3385 Milton (GA) 00-0032741 3051902 #> 3386 Eagle's Landing Christian (GA) 00-0036328 4360294 #> 3387 Saint Vincent Pallotti (MD) 00-0036755 NA #> 3388 North Broward Prep (FL) 00-0036474 NA #> 3389 Benilde-St. Margaret (MN) <NA> NA #> 3390 Sealy (TX) 00-0033611 3051806 #> 3391 <NA> <NA> NA #> 3392 Brookville (VA) 00-0031260 16813 #> 3393 Whitehouse (TX) 00-0034409 3052576 #> 3394 Junipero Serra (CA) 00-0035320 3932936 #> 3395 Lebanon (OR) 00-0036628 NA #> 3396 North Myrtle Beach (SC) 00-0033112 2580330 #> 3397 Whitewright (TX) 00-0033742 3046705 #> 3398 Paulding County (GA) 00-0036340 4029893 #> 3399 Washington (CA) 00-0031763 2580216 #> 3400 Bingham (UT) 00-0036671 NA #> 3401 <NA> <NA> 3139946 #> 3402 Erasmus Hall (NY) 00-0033282 3121427 #> 3403 Indianapolis Cathedral (IN) 00-0035659 3121422 #> 3404 Ouachita Parish (LA) 00-0034104 3115314 #> 3405 La Mirada (CA) 00-0036111 3915821 #> 3406 Palmyra (NJ) 00-0035297 4036163 #> 3407 Dorman (SC) 00-0032009 2576491 #> 3408 Centennial (TN) 00-0035070 3924318 #> 3409 Kingswood-Oxford (CT) 00-0036142 4044121 #> 3410 Travis (TX) 00-0034928 3917960 #> 3411 West Mecklenburg (NC) 00-0036626 NA #> 3412 Lakeland (FL) 00-0027953 13974 #> 3413 Stranahan (FL) 00-0031399 16954 #> 3414 La Costa Canyon (CA) 00-0033317 2977627 #> 3415 Hanford (WA) 00-0032459 2565338 #> 3416 <NA> 00-0032692 2976257 #> 3417 Servite (CA) 00-0025446 10503 #> 3418 <NA> 00-0032324 2565684 #> 3419 Skyline (UT) 00-0029699 14976 #> 3420 Moon Area (PA) 00-0026950 12726 #> 3421 <NA> 00-0034712 3057534 #> 3422 <NA> 00-0035503 3120360 #> 3423 <NA> 00-0035372 3126330 #> 3424 Lakeland (FL) 00-0027870 13250 #> 3425 <NA> 00-0034896 3049048 #> 3426 <NA> 00-0035612 4031164 #> 3427 Seton-LaSalle (PA) 00-0029268 14999 #> 3428 <NA> 00-0035481 3163365 #> 3429 Maplewood (TN) 00-0030750 17262 #> 3430 <NA> 00-0034658 3043224 #> 3431 Aynor (SC) 00-0030126 15915 #> 3432 <NA> 00-0034269 3052065 #> 3433 <NA> 00-0031994 2511557 #> 3434 Dobyns-Bennett (TN) 00-0028101 14110 #> 3435 <NA> 00-0035201 3126288 #> 3436 Greenwich (CT) 00-0026327 11421 #> 3437 Montgomery Bell Academy (TN) 00-0031314 16846 #> 3438 <NA> 00-0034447 3894905 #> 3439 Kingwood (TX) 00-0031284 16752 #> 3440 <NA> 00-0034849 3116734 #> 3441 <NA> 00-0035545 3116186 #> 3442 <NA> 00-0031698 2516310 #> 3443 <NA> 00-0034241 3066250 #> 3444 <NA> 00-0033256 2979810 #> 3445 <NA> 00-0035106 3916742 #> 3446 <NA> 00-0035389 3144996 #> 3447 Crespi (CA) 00-0031561 2516984 #> 3448 <NA> 00-0033279 4081136 #> 3449 <NA> 00-0035439 3120593 #> 3450 Oceanside (CA) 00-0030486 15978 #> 3451 <NA> 00-0034852 3044707 #> 3452 <NA> 00-0033682 3049566 #> 3453 <NA> 00-0034328 3138835 #> 3454 <NA> 00-0032989 2972298 #> 3455 Centreville (VA) 00-0031191 16830 #> 3456 Lakewood Ranch (FL) 00-0031958 2514816 #> 3457 <NA> 00-0035015 3125783 #> 3458 <NA> 00-0034178 3048669 #> 3459 Hawaii Prep (HI) 00-0027025 12624 #> 3460 <NA> 00-0033586 3045378 #> 3461 Palmdale (CA) 00-0028069 14157 #> 3462 <NA> 00-0033845 3052502 #> 3463 Bloomfield (CT) 00-0030127 15888 #> 3464 <NA> 00-0032456 2994680 #> 3465 <NA> 00-0032810 2972090 #> 3466 Etowah (GA) 00-0028075 14139 #> 3467 Creekside (GA) 00-0035207 3915190 #> 3468 Plantation (FL) 00-0029691 14948 #> 3469 Dudley (NC) 00-0030420 15820 #> 3470 <NA> 00-0033299 3051880 #> 3471 John Marshall (MN) 00-0027547 13843 #> 3472 St. Thomas Aquinas (FL) 00-0031383 16747 #> 3473 <NA> 00-0034329 3120863 #> 3474 Dobyns-Bennett (TN) 00-0029529 14998 #> 3475 St. John Bosco (CA) 00-0030556 15854 #> 3476 Dunbar (DC) 00-0027001 12424 #> 3477 Marshall (TX) 00-0029050 15350 #> 3478 <NA> 00-0035069 4036434 #> 3479 Dominguez (CA) 00-0028092 14086 #> 3480 Elkins (TX) 00-0030572 15794 #> 3481 <NA> 00-0031563 2978256 #> 3482 <NA> 00-0035430 3110509 #> 3483 Rockhurst (MO) 00-0032212 2513908 #> 3484 Greenwood (SC) 00-0029285 15124 #> 3485 <NA> 00-0032511 2973033 #> 3486 Campbell (GA) 00-0029696 15713 #> 3487 <NA> 00-0033350 4218143 #> 3488 <NA> 00-0034123 3052013 #> 3489 <NA> 00-0034692 4339831 #> 3490 Highland (CA) 00-0029191 15419 #> 3491 <NA> 00-0034884 4037345 #> 3492 <NA> 00-0033453 3045642 #> 3493 <NA> 00-0034821 4327530 #> 3494 Northeast (PA) 00-0024183 10913 #> 3495 <NA> 00-0032157 2515587 #> 3496 <NA> 00-0032014 2976500 #> 3497 Crockett (MI) 00-0031594 2515418 #> 3498 <NA> 00-0033853 2969856 #> 3499 <NA> 00-0026283 11366 #> 3500 Carman-Ainsworth (MI) 00-0026280 11363 #> 3501 <NA> 00-0035174 3912029 #> 3502 Lancaster (TX) 00-0030275 16144 #> 3503 Calvert Hall (MD) 00-0032916 2979605 #> 3504 <NA> 00-0033652 3045202 #> 3505 <NA> 00-0032631 2577071 #> 3506 <NA> 00-0035080 4405778 #> 3507 <NA> 00-0035490 3916913 #> 3508 <NA> 00-0032552 2971880 #> 3509 <NA> 00-0034685 3116159 #> 3510 Grant (OR) 00-0031186 16914 #> 3511 Hopkins (MN) 00-0031151 2508192 #> 3512 <NA> 00-0033826 3057517 #> 3513 Fair Park (LA) 00-0029676 14943 #> 3514 <NA> 00-0033425 NA #> 3515 Long Beach (MS) 00-0027375 13681 #> 3516 <NA> 00-0035056 3155134 #> 3517 <NA> 00-0034471 4039221 #> 3518 Fort Dorchester (SC) 00-0028111 14133 #> 3519 <NA> 00-0032710 2981866 #> 3520 <NA> 00-0033533 2971036 #> 3521 <NA> 00-0032066 2574530 #> 3522 <NA> 00-0034095 3921563 #> 3523 <NA> 00-0033710 2971986 #> 3524 Salina Central (KS) 00-0022045 4463 #> 3525 <NA> 00-0032856 2573091 #> 3526 <NA> 00-0035162 3921688 #> 3527 Helix (CA) 00-0030484 15866 #> 3528 <NA> 00-0033575 2985844 #> 3529 <NA> 00-0035088 3929849 #> 3530 <NA> 00-0033363 3049271 #> 3531 Deer Valley (CA) 00-0028767 14802 #> 3532 <NA> 00-0034216 3126096 #> 3533 <NA> 00-0032663 2577421 #> 3534 <NA> 00-0032687 2582034 #> 3535 <NA> 00-0034455 4331771 #> 3536 <NA> 00-0032931 3140596 #> 3537 <NA> 00-0033587 3040198 #> 3538 <NA> 00-0034327 3116618 #> 3539 <NA> 00-0033558 3126176 #> 3540 <NA> 00-0033362 2972562 #> 3541 <NA> 00-0033809 3929030 #> 3542 <NA> 00-0033070 3116598 #> 3543 <NA> 00-0034086 3115496 #> 3544 <NA> 00-0033440 3047486 #> 3545 Plant (FL) 00-0035714 3139613 #> 3546 Ooltewah (TN) 00-0030703 17244 #> 3547 <NA> 00-0034904 3042880 #> 3548 Tucker (GA) 00-0029329 15535 #> 3549 <NA> 00-0035175 4240629 #> 3550 Klein Collins (TX) 00-0031080 16949 #> 3551 Trinity Christian Academy (FL) 00-0034603 3843234 #> 3552 Fayette County (GA) 00-0029416 15057 #> 3553 <NA> 00-0035575 3115329 #> 3554 Pace (FL) 00-0030523 15872 #> 3555 James R. Rickards (FL) 00-0025557 10613 #> 3556 <NA> 00-0034701 3920576 #> 3557 St. Vincent-St. Mary (OH) 00-0031944 2576385 #> 3558 Stafford (VA) 00-0031414 16805 #> 3559 <NA> 00-0034526 3124080 #> 3560 Largo (FL) 00-0029087 15398 #> 3561 <NA> 00-0032643 2578305 #> 3562 Northwestern (SC) 00-0024239 9610 #> 3563 Eastlake (WA) 00-0033608 2970264 #> 3564 <NA> 00-0034105 3040007 #> 3565 Colton (CA) 00-0028027 14010 #> 3566 Jacket Integrated Academy (NC) 00-0031688 2565759 #> 3567 <NA> 00-0032485 4010743 #> 3568 Scotland (NC) 00-0032934 2969422 #> 3569 <NA> 00-0033756 2969716 #> 3570 Berkner (TX) 00-0026160 11254 #> 3571 <NA> 00-0031878 3053794 #> 3572 Westlake (GA) 00-0023441 8421 #> 3573 Olive Branch (MS) 00-0031552 2577292 #> 3574 <NA> 00-0034425 3052169 #> 3575 Highland Springs (VA) 00-0029942 16131 #> 3576 Vista Ridge (TX) 00-0031276 17450 #> 3577 Aiken Silver Bluff (SC) 00-0033462 3045136 #> 3578 Luling (TX) 00-0032106 2510713 #> 3579 <NA> 00-0035047 3118081 #> 3580 S.S. Murphy (AL) 00-0026944 12703 #> 3581 <NA> 00-0034589 3060794 #> 3582 <NA> 00-0034541 3124861 #> 3583 <NA> 00-0032290 2512218 #> 3584 <NA> 00-0032946 2972273 #> 3585 <NA> 00-0033187 4084949 #> 3586 <NA> 00-0035446 3915240 #> 3587 <NA> 00-0034506 3045123 #> 3588 <NA> 00-0032798 2974631 #> 3589 Gadsden City (AL) 00-0029560 14940 #> 3590 <NA> 00-0032390 2979849 #> 3591 Serra (CA) 00-0031262 16872 #> 3592 North Gwinnett (FL) 00-0031232 17416 #> 3593 <NA> 00-0035081 4242420 #> 3594 Assumption (LA) 00-0024061 5432 #> 3595 Vista (CA) 00-0025405 10462 #> 3596 East Webster (MS) 00-0030469 15824 #> 3597 <NA> 00-0034481 3126311 #> 3598 <NA> 00-0031239 16774 #> 3599 Lakewood Ranch (FL) 00-0026156 11250 #> 3600 Judson (MA) 00-0031015 16750 #> 3601 <NA> 00-0033482 2977735 #> 3602 River Hill (MD) 00-0031548 2511523 #> 3603 Wilmington (OH) 00-0031937 3125961 #> 3604 <NA> 00-0034637 3046689 #> 3605 <NA> 00-0035197 3929033 #> 3606 St. Augustine (LA) 00-0032136 2972135 #> 3607 <NA> 00-0032978 2972550 #> 3608 <NA> 00-0034814 3059832 #> 3609 <NA> 00-0033671 2971592 #> 3610 <NA> 00-0034300 3050887 #> 3611 <NA> 00-0034120 3123972 #> 3612 Duncanville (TX) 00-0030963 17333 #> 3613 Jefferson Davis High School (AL) 00-0031829 2969954 #> 3614 <NA> 00-0032676 3961462 #> 3615 Booker (FL) 00-0027440 13769 #> 3616 <NA> 00-0033432 3042884 #> 3617 <NA> 00-0032546 2576437 #> 3618 Andre Agassi Prep (NV) 00-0032783 2575171 #> 3619 <NA> 00-0033333 2980480 #> 3620 <NA> 00-0034005 4058338 #> 3621 Miami Killian (FL) 00-0031020 16930 #> 3622 <NA> 00-0034636 3125790 #> 3623 Mayfair (CA) 00-0027705 13478 #> 3624 <NA> 00-0034871 3127082 #> 3625 <NA> 00-0035435 3910120 #> 3626 Kempner (TX) 00-0029215 15085 #> 3627 T. Wingate Andrews (NC) 00-0027988 14018 #> 3628 Riverview (FL) 00-0030312 16039 #> 3629 <NA> 00-0035211 3122710 #> 3630 <NA> 00-0034299 3122666 #> 3631 Independence (TN) 00-0034362 3115333 #> 3632 <NA> 00-0035554 3134000 #> 3633 North Fort Myers (FL) 00-0031261 16877 #> 3634 Richwoods (IL) 00-0027743 13419 #> 3635 <NA> 00-0035091 3128785 #> 3636 <NA> 00-0035568 4331772 #> 3637 Southfield (MI) 00-0033022 3124889 #> 3638 <NA> 00-0034093 3128687 #> 3639 Ely (FL) 00-0032410 3042718 #> 3640 <NA> 00-0035675 3912549 #> 3641 <NA> 00-0034544 3045126 #> 3642 Smithson Valley (TX) 00-0027914 13939 #> 3643 Greenwood (SC) 00-0030566 15865 #> 3644 <NA> 00-0035564 3119436 #> 3645 <NA> 00-0035388 4423369 #> 3646 Daniel (SC) 00-0027979 14019 #> 3647 <NA> 00-0034718 3052283 #> 3648 Adairsville (GA) 00-0032240 2512400 #> 3649 <NA> 00-0034009 3049426 #> 3650 <NA> 00-0034650 3676003 #> 3651 <NA> 00-0033176 4043720 #> 3652 Huffman (AL) 00-0027941 13992 #> 3653 <NA> 00-0032428 2982949 #> 3654 St. Anne's-Belfield (VA) 00-0026142 11236 #> 3655 <NA> 00-0035195 3928743 #> 3656 <NA> 00-0034742 3117912 #> 3657 Petersburg (VA) 00-0026206 11300 #> 3658 Dallas County (AL) 00-0027044 12436 #> 3659 <NA> 00-0034230 4043157 #> 3660 Tustin (CA) 00-0024306 9677 #> 3661 <NA> 00-0034865 3049025 #> 3662 <NA> 00-0034134 3042381 #> 3663 <NA> 00-0034477 3045268 #> 3664 <NA> 00-0030864 17184 #> 3665 Nashua North (NH) 00-0029256 14953 #> 3666 Andrews (NC) 00-0026243 11337 #> 3667 <NA> 00-0033075 2976623 #> 3668 Palo Duro (TX) 00-0027008 12442 #> 3669 Windsor (CT) 00-0031843 2519069 #> 3670 Glassboro (NJ) 00-0027495 13812 #> 3671 <NA> 00-0034604 3125208 #> 3672 Creekview (TX) 00-0031948 2511687 #> 3673 Simeon Academy (IL) 00-0031081 16959 #> 3674 Wayne (OH) 00-0029257 14967 #> 3675 <NA> 00-0034089 3053800 #> 3676 <NA> 00-0031982 2514374 #> 3677 <NA> 00-0033693 3115911 #> 3678 <NA> 00-0035113 3917834 #> 3679 San Jacinto (CA) 00-0031997 2577162 #> 3680 Clintondale (MI) 00-0031607 2516417 #> 3681 <NA> 00-0033272 2977620 #> 3682 Taft (OH) 00-0030457 15829 #> 3683 Hardaway (GA) 00-0031371 16712 #> 3684 Hutchinson (KS) 00-0031940 2514217 #> 3685 New Madrid (MO) 00-0031336 16773 #> 3686 <NA> 00-0033493 2971499 #> 3687 <NA> 00-0034290 3054854 #> 3688 <NA> 00-0034851 3063943 #> 3689 <NA> 00-0034886 3049337 #> 3690 Southern Nash (NC) 00-0021140 3530 #> 3691 <NA> 00-0033614 3122879 #> 3692 <NA> 00-0033248 3053000 #> 3693 <NA> 00-0032883 2578754 #> 3694 Kahuku (HI) 00-0032056 2509488 #> 3695 <NA> 00-0032859 2978355 #> 3696 <NA> 00-0035391 3127379 #> 3697 Hightower (TX) 00-0029111 15278 #> 3698 <NA> 00-0034012 NA #> 3699 <NA> 00-0032800 2567970 #> 3700 <NA> 00-0033358 2972118 #> 3701 <NA> 00-0032344 2578530 #> 3702 <NA> 00-0034916 3049326 #> 3703 Kimball Union (NH) 00-0031255 17141 #> 3704 Northern Guilford (NC) 00-0031208 17430 #> 3705 Presbyterian Boys' Secondary (GHA) 00-0030059 15785 #> 3706 <NA> 00-0034906 3043274 #> 3707 South Oak Cliff (TX) 00-0029112 15356 #> 3708 Dematha (MD) 00-0023368 12417 #> 3709 <NA> 00-0033726 3049895 #> 3710 Hollywood Hills (FL) 00-0027975 14036 #> 3711 Blake (FL) 00-0029053 15319 #> 3712 <NA> 00-0034166 3041114 #> 3713 <NA> 00-0034519 3057530 #> 3714 <NA> 00-0035511 3123681 #> 3715 Notre Dame (CA) 00-0030251 16431 #> 3716 American (FL) 00-0029693 14982 #> 3717 <NA> 00-0034538 3042873 #> 3718 <NA> 00-0035476 3915769 #> 3719 <NA> 00-0035204 3042883 #> 3720 <NA> 00-0033673 3045152 #> 3721 <NA> 00-0033651 2986781 #> 3722 <NA> 00-0034879 3924375 #> 3723 <NA> 00-0035493 3914384 #> 3724 <NA> 00-0034030 2973627 #> 3725 <NA> 00-0032719 2573947 #> 3726 <NA> 00-0034482 3139339 #> 3727 Brophy (AZ) 00-0031300 16751 #> 3728 Chandler (AZ) 00-0030555 15800 #> 3729 Alief Taylor (TX) 00-0026618 12762 #> 3730 <NA> 00-0035565 3129292 #> 3731 Nyack (NY) 00-0031317 16860 #> 3732 Jacksonville (AR) 00-0026964 12692 #> 3733 <NA> 00-0033270 3057998 #> 3734 Linden (NJ) 00-0027968 13985 #> 3735 <NA> 00-0033254 3050096 #> 3736 <NA> 00-0035071 3916590 #> 3737 <NA> 00-0032730 2970397 #> 3738 <NA> 00-0033113 2576678 #> 3739 <NA> 00-0035046 3122439 #> 3740 <NA> 00-0034157 3042693 #> 3741 Eaton (CO) 00-0027573 13860 #> 3742 <NA> 00-0035191 4051591 #> 3743 Wichita Falls (TX) 00-0030553 16037 #> 3744 Highland (UT) 00-0031556 3052511 #> 3745 <NA> 00-0034702 3119152 #> 3746 <NA> 00-0034547 3045532 #> 3747 <NA> 00-0033574 2974324 #> 3748 <NA> 00-0034308 3957496 #> 3749 Strake Jesuit Prep (TX) 00-0030121 15905 #> 3750 <NA> 00-0034770 3123045 #> 3751 Louisa County (VA) 00-0030776 17296 #> 3752 Gonzaga (DC) 00-0029310 15064 #> 3753 <NA> 00-0034045 4255255 #> 3754 <NA> 00-0035221 3049043 #> 3755 McIntosh County Academy (GA) 00-0028024 14020 #> 3756 Catholic Central (CAN) 00-0029641 14987 #> 3757 <NA> 00-0034617 3163390 #> 3758 Webster Groves (MO) 00-0027958 13965 #> 3759 <NA> 00-0033438 2981846 #> 3760 Splendora (TX) 00-0025489 10546 #> 3761 <NA> 00-0034451 3939134 #> 3762 <NA> 00-0035063 4411188 #> 3763 <NA> 00-0034620 3116632 #> 3764 <NA> 00-0035362 3121643 #> 3765 <NA> 00-0034453 3123079 #> 3766 <NA> 00-0034143 NA #> 3767 <NA> 00-0035496 4263210 #> 3768 <NA> 00-0034630 3053061 #> 3769 <NA> 00-0035421 3124087 #> 3770 <NA> 00-0033351 3894927 #> 3771 Pelham (AL) 00-0035518 3115492 #> 3772 Flushing (NY) 00-0031403 16776 #> 3773 Eastdale Collegiate and Vocational Institute (ON) 00-0030132 16568 #> 3774 <NA> 00-0034866 3115307 #> 3775 Moss Point (MS) 00-0024030 16695 #> 3776 Compton (CA) 00-0030576 15798 #> 3777 Wooddale (TN) 00-0029688 14939 #> 3778 <NA> 00-0033711 2970137 #> 3779 <NA> 00-0033661 3042744 #> 3780 <NA> 00-0034638 4035707 #> 3781 <NA> 00-0034605 3053054 #> 3782 North Shore (TX) 00-0027684 13288 #> 3783 Foster (TX) 00-0031676 2575583 #> 3784 <NA> 00-0035682 3127341 #> 3785 Copper Hills (UT) 00-0028256 14441 #> 3786 Las Vegas (NV) 00-0029303 15021 #> 3787 <NA> 00-0032750 3121601 #> 3788 Miami Carol City (FL) 00-0026502 12443 #> 3789 Highland (UT) 00-0024227 9598 #> 3790 <NA> 00-0034321 3057976 #> 3791 Centerville (OH) 00-0032154 2576371 #> 3792 Northside (GA) 00-0029946 16376 #> 3793 <NA> 00-0030871 17253 #> 3794 Weatherford (TX) 00-0029894 15937 #> 3795 <NA> 00-0033626 2970111 #> 3796 <NA> 00-0032034 3051674 #> 3797 Ruston (LA) 00-0024348 9720 #> 3798 Jefferson City (MO) 00-0030577 15816 #> 3799 Valley Forge (OH) 00-0030697 17214 #> 3800 Columbia (FL) 00-0031170 16785 #> 3801 <NA> 00-0031225 17428 #> 3802 <NA> 00-0034018 3052751 #> 3803 <NA> 00-0030106 15955 #> 3804 <NA> 00-0035618 3125300 #> 3805 St. Thomas Aquinas (FL) 00-0027720 13311 #> 3806 <NA> 00-0031914 2579622 #> 3807 <NA> 00-0034082 3052510 #> 3808 Westgate (LA) 00-0029208 15460 #> 3809 <NA> 00-0034880 3040172 #> 3810 <NA> 00-0034228 3118188 #> 3811 Seguin (TX) 00-0034262 3050754 #> 3812 <NA> 00-0033771 2971436 #> 3813 <NA> 00-0035178 3131528 #> 3814 <NA> 00-0034454 3128455 #> 3815 <NA> 00-0034873 3929841 #> 3816 <NA> 00-0035110 3115929 #> 3817 <NA> 00-0031832 3042645 #> 3818 Lake Charles Boston (LA) 00-0029040 15380 #> 3819 <NA> 00-0034583 3040516 #> 3820 Hialeah (FL) 00-0027956 13989 #> 3821 Gonzaga College (DC) 00-0029972 16398 #> 3822 <NA> 00-0034564 4038466 #> 3823 Bloomfield (NJ) 00-0031618 2515893 #> 3824 <NA> 00-0032529 2581513 #> 3825 <NA> 00-0032981 2978281 #> 3826 Pago Pago (ASM) 00-0024338 9709 #> 3827 Escambia (FL) 00-0026330 11424 #> 3828 Charlotte (FL) 00-0032169 3043238 #> 3829 <NA> 00-0033037 2976317 #> 3830 <NA> 00-0034122 3042747 #> 3831 <NA> 00-0034138 3125884 #> 3832 Washburn (MN) 00-0031281 16744 #> 3833 Star City (AR) 00-0028424 14310 #> 3834 <NA> 00-0033513 2469470 #> 3835 <NA> 00-0034246 3918012 #> 3836 Woodland (GA) 00-0031848 3908873 #> 3837 Pensacola (FL) 00-0028003 14014 #> 3838 Central (IN) 00-0030448 15862 #> 3839 McCutcheon (IN) 00-0032649 3040661 #> 3840 Wilson (WA) 00-0032061 2578408 #> 3841 Muskogee (OK) 00-0030515 15906 #> 3842 <NA> 00-0035429 4240239 #> 3843 Muskogee (OK) 00-0031006 5273 #> 3844 Yazoo County (MS) 00-0032031 2516320 #> 3845 Centennial (CA) 00-0031048 16738 #> 3846 Enterprise (AL) 00-0029940 16127 #> 3847 Long Beach Poly (CA) 00-0028015 14047 #> 3848 <NA> 00-0034568 3116072 #> 3849 <NA> 00-0035501 3122924 #> 3850 <NA> 00-0035348 3115478 #> 3851 <NA> 00-0033086 2572846 #> 3852 <NA> 00-0033374 2978244 #> 3853 <NA> 00-0033719 2981212 #> 3854 <NA> 00-0032375 2576236 #> 3855 <NA> 00-0032499 2977698 #> 3856 <NA> 00-0033736 2513199 #> 3857 <NA> 00-0034237 3045222 #> 3858 UMS-Wright (AL) 00-0031085 16875 #> 3859 <NA> 00-0033967 3045472 #> 3860 Vigor (AL) 00-0032130 2515931 #> 3861 Troy (CA) 00-0029068 15351 #> 3862 <NA> 00-0027925 13940 #> 3863 <NA> 00-0034946 3136308 #> 3864 <NA> 00-0032745 2586700 #> 3865 <NA> 00-0034314 3045201 #> 3866 Oxford (MI) 00-0029931 16366 #> 3867 Hickory (NC) 00-0029729 15765 #> 3868 Dayton (TX) 00-0031612 2577467 #> 3869 <NA> 00-0034225 3116375 #> 3870 Reynoldsburg (OH) 00-0030741 17223 #> 3871 Lake Brantley (FL) 00-0028581 14332 #> 3872 <NA> 00-0034119 3042434 #> 3873 Apopka (FL) 00-0035310 3843217 #> 3874 Tuscaloosa (AL) Northridge 00-0032068 2516316 #> 3875 <NA> 00-0034148 3117250 #> 3876 <NA> 00-0034149 3075100 #> 3877 <NA> 00-0032852 2578390 #> 3878 Port Allen (LA) 00-0031087 17467 #> 3879 Christian County (KY) 00-0029422 15001 #> 3880 <NA> 00-0033389 2969018 #> 3881 <NA> 00-0033692 3049640 #> 3882 Loyola (CA) 00-0028031 14016 #> 3883 <NA> 00-0035522 3912991 #> 3884 <NA> 00-0031754 2577110 #> 3885 <NA> 00-0034078 4039283 #> 3886 <NA> 00-0033977 3051737 #> 3887 <NA> 00-0033675 3045206 #> 3888 <NA> 00-0031978 2516019 #> 3889 <NA> 00-0032922 3053027 #> 3890 <NA> 00-0031070 16850 #> 3891 Amanda Elzy (MS) 00-0031512 2574557 #> 3892 O. Perry Walker 00-0027736 13404 #> 3893 <NA> 00-0034467 3128706 #> 3894 <NA> 00-0032749 2570484 #> 3895 Bridgeport (TX) 00-0028128 14117 #> 3896 <NA> 00-0033520 2977613 #> 3897 <NA> 00-0035561 3115379 #> 3898 Griffin (GA) 00-0032050 2578554 #> 3899 Northmont (OH) 00-0027835 13340 #> 3900 Liberty-Eylau (TX) 00-0031059 16904 #> 3901 Carroll (NY) 00-0025555 10611 #> 3902 West Orange-Stark (TX) 00-0027866 13251 #> 3903 Bishop Hendricken (RI) 00-0024330 9701 #> 3904 Passaic County Technical Institute (NJ) 00-0022247 5893 #> 3905 <NA> 00-0035379 3930075 #> 3906 <NA> 00-0034252 2980441 #> 3907 <NA> 00-0035470 3915291 #> 3908 Lee (AL) 00-0027256 13645 #> 3909 Sprayberry (GA) 00-0030020 16419 #> 3910 <NA> 00-0033076 2971550 #> 3911 <NA> 00-0033274 3892785 #> 3912 Woodland Hills (PA) 00-0030170 16206 #> 3913 <NA> 00-0033316 3050534 #> 3914 <NA> 00-0034098 3124020 #> 3915 <NA> 00-0029958 16450 #> 3916 Denbigh (VA) 00-0024421 9793 #> 3917 Timberview (TX) 00-0030317 16054 #> 3918 Washington (VA) 00-0027124 12644 #> 3919 North Pike (MS) 00-0027081 12716 #> 3920 <NA> 00-0034217 3043146 #> 3921 Sandy Creek (GA) 00-0031657 2510547 #> 3922 Alta Loma (CA) 00-0025424 10481 #> 3923 <NA> 00-0035508 3128688 #> 3924 Palm Bay (FL) 00-0025408 10465 #> 3925 Highlands (KY) 00-0027023 12619 #> 3926 <NA> 00-0033233 2971542 #> 3927 <NA> 00-0033486 3046342 #> 3928 <NA> 00-0034695 3049935 #> 3929 Washington (GA) 00-0027762 13395 #> 3930 <NA> 00-0035098 3915373 #> 3931 <NA> 00-0035453 3123658 #> 3932 <NA> 00-0034408 3122800 #> 3933 David W. Butler (NC) 00-0029575 15079 #> 3934 <NA> 00-0034556 3139926 #> 3935 <NA> 00-0035072 4076949 #> 3936 <NA> 00-0034324 3125916 #> 3937 Beaufort (SC) 00-0028445 14297 #> 3938 <NA> 00-0030908 17317 #> 3939 <NA> 00-0033470 3043217 #> 3940 <NA> 00-0034443 3051706 #> 3941 <NA> 00-0034734 3050953 #> 3942 <NA> 00-0035151 4422420 #> 3943 <NA> 00-0035543 4243241 #> 3944 Lincoln Way East (IL) 00-0029139 14995 #> 3945 <NA> 00-0034124 3908989 #> 3946 Dorman (SC) 00-0031305 16739 #> 3947 <NA> 00-0033310 17727 #> 3948 <NA> 00-0033391 2977770 #> 3949 <NA> 00-0035225 3115391 #> 3950 <NA> 00-0033502 3047195 #> 3951 Dawson County (MT) 00-0028177 14070 #> 3952 <NA> 00-0035335 3124111 #> 3953 <NA> 00-0033663 2613168 #> 3954 <NA> 00-0032714 2971279 #> 3955 <NA> 00-0032827 4002060 #> 3956 Mariposa (CA) 00-0032247 2517252 #> 3957 Berkner (TX) 00-0029666 14961 #> 3958 <NA> 00-0033287 2976113 #> 3959 <NA> 00-0033301 2980036 #> 3960 Southern Lab (LA) 00-0029010 15276 #> 3961 <NA> 00-0034581 3122851 #> 3962 Western (CA) 00-0027869 13246 #> 3963 <NA> 00-0030833 17102 #> 3964 <NA> 00-0033618 2977653 #> 3965 King George (VA) 00-0025512 10568 #> 3966 Ripley (TN) 00-0026561 12883 #> 3967 <NA> 00-0033688 3115302 #> 3968 <NA> 00-0035563 3116094 #> 3969 Hillcrest (UT) 00-0027658 13261 #> 3970 <NA> 00-0035065 3128346 #> 3971 <NA> 00-0033253 2969004 #> 3972 <NA> 00-0030579 15871 #> 3973 <NA> 00-0034645 3049589 #> 3974 <NA> 00-0033383 2991684 #> 3975 <NA> 00-0032638 2986639 #> 3976 Greenville (TX) 00-0028738 14753 #> 3977 <NA> 00-0033959 2971635 #> 3978 <NA> 00-0034582 3057991 #> 3979 Salinas (CA) 00-0026784 12972 #> 3980 Chattahoochee (GA) 00-0028039 14178 #> 3981 Middleton (WI) 00-0031128 17063 #> 3982 Merrill F. West (CA) 00-0029254 14981 #> 3983 <NA> 00-0033667 3052094 #> 3984 <NA> 00-0033483 3120361 #> 3985 Hephzibah (GA) 00-0027963 13993 #> 3986 Edward H. White (FL) 00-0031766 2582406 #> 3987 <NA> 00-0034448 3052023 #> 3988 Stamford (CT) 00-0027667 13273 #> 3989 <NA> 00-0035729 4239773 #> 3990 Central Islip (NY) 00-0029661 15098 #> 3991 Hoggard (NC) 00-0030590 15787 #> 3992 <NA> 00-0035075 3059734 #> 3993 <NA> 00-0033942 3045153 #> 3994 <NA> 00-0035424 3120365 #> 3995 <NA> 00-0034947 3125897 #> 3996 San Lorenzo Valley (CA) 00-0027027 12614 #> 3997 Sweet Home (OR) 00-0026500 12728 #> 3998 Bear Creek (CO) 00-0030923 17040 #> 3999 <NA> 00-0033005 3046434 #> 4000 <NA> 00-0032930 2577172 #> 4001 Fleming Island (FL) 00-0032067 2516067 #> 4002 <NA> 00-0030755 17210 #> 4003 Nathan Hale (WI) 00-0029893 15900 #> 4004 Fern Creek (KY) 00-0032244 2576647 #> 4005 <NA> 00-0035333 3124550 #> 4006 <NA> 00-0033039 2574570 #> 4007 <NA> 00-0032976 2577042 #> 4008 <NA> 00-0031180 16859 #> 4009 Seneca Valley (PA) 00-0028110 14208 #> 4010 <NA> 00-0035746 3910591 #> 4011 <NA> 00-0033465 2575978 #> 4012 <NA> 00-0034231 3046696 #> 4013 Miami Central (FL) 00-0031182 16835 #> 4014 <NA> 00-0035487 3127365 #> 4015 Mason (OH) 00-0029992 16403 #> 4016 <NA> 00-0033377 3122894 #> 4017 <NA> 00-0032879 2577115 #> 4018 <NA> 00-0034644 3052887 #> 4019 <NA> 00-0032962 2582006 #> 4020 Olentangy (OH) 00-0030937 17013 #> 4021 <NA> 00-0034254 3056493 #> 4022 <NA> 00-0032503 2576355 #> 4023 <NA> 00-0034459 3054041 #> 4024 Madison Central (KY) 00-0030065 15870 #> 4025 <NA> 00-0031647 2512571 #> 4026 <NA> 00-0034585 3046392 #> 4027 <NA> 00-0033565 4081809 #> 4028 <NA> 00-0034546 3042907 #> 4029 <NA> 00-0033323 2573414 #> 4030 <NA> 00-0034691 3069758 #> 4031 <NA> 00-0035093 3121419 #> 4032 University (WA) 00-0032418 2978331 #> 4033 <NA> 00-0035502 3116735 #> 4034 <NA> 00-0033277 2977624 #> 4035 DeMatha Catholic (MD) 00-0031942 2515944 #> 4036 Beckman Catholic (IA) 00-0030149 16235 #> 4037 <NA> 00-0032874 2578713 #> 4038 <NA> 00-0032297 2470264 #> 4039 Glendale (Ontario) 00-0029076 15347 #> 4040 <NA> 00-0035066 3126065 #> 4041 <NA> 00-0034627 3040102 #> 4042 Brother Rice (MI) 00-0027078 12680 #> 4043 <NA> 00-0035571 3929863 #> 4044 <NA> 00-0035690 4036407 #> 4045 Anamosa (IA) 00-0025473 10530 #> 4046 <NA> 00-0034155 3052516 #> 4047 <NA> 00-0034868 3892890 #> 4048 <NA> 00-0032646 3915883 #> 4049 Boardman (OH) 00-0026205 11299 #> 4050 <NA> 00-0034108 3051321 #> 4051 Rhea County (TN) 00-0030652 17095 #> 4052 Pensacola Catholic (FL) 00-0026275 11382 #> 4053 Farrington (HI) 00-0027694 13283 #> 4054 Seneca Valley (PA) 00-0029187 15409 #> 4055 <NA> 00-0034026 2979845 #> 4056 South Panola (MS) 00-0027678 13278 #> 4057 <NA> 00-0030017 16412 #> 4058 <NA> 00-0033996 3116592 #> 4059 <NA> 00-0034475 4294246 #> 4060 <NA> 00-0034579 3045217 #> 4061 <NA> 00-0030629 16686 #> 4062 Oberlin (OH) 00-0030071 15869 #> 4063 King College Prep (IL) 00-0029524 14990 #> 4064 <NA> 00-0034260 2973599 #> 4065 <NA> 00-0033346 2978250 #> 4066 Hibriten (NC) 00-0031765 2507667 #> 4067 Puyallup (WA) 00-0033151 2978263 #> 4068 <NA> 00-0034212 3052709 #> 4069 <NA> 00-0035411 NA #> 4070 Lovejoy (GA) 00-0027750 13451 #> 4071 <NA> 00-0035016 3914595 #> 4072 <NA> 00-0032979 3056472 #> 4073 <NA> 00-0034525 3045469 #> 4074 <NA> 00-0033368 2970256 #> 4075 <NA> 00-0034566 3045249 #> 4076 <NA> 00-0034905 3047235 #> 4077 <NA> 00-0034769 3128747 #> 4078 <NA> 00-0033678 2980586 #> 4079 <NA> 00-0034181 3046694 #> 4080 <NA> 00-0034190 3051458 #> 4081 <NA> 00-0031696 2974300 #> 4082 <NA> 00-0034537 3051412 #> 4083 <NA> 00-0034191 4334406 #> 4084 <NA> 00-0035198 4262186 #> 4085 <NA> 00-0033738 2980070 #> 4086 <NA> 00-0033337 3057972 #> 4087 <NA> 00-0034288 3052144 #> 4088 <NA> 00-0035458 3127302 #> 4089 <NA> 00-0033447 3042403 #> 4090 <NA> 00-0031058 16926 #> 4091 <NA> 00-0035158 4259349 #> 4092 <NA> 00-0033185 2323439 #> 4093 <NA> 00-0034534 3045180 #> 4094 <NA> 00-0033140 2986701 #> 4095 <NA> 00-0035497 4040893 #> 4096 <NA> 00-0033424 2979532 #> 4097 <NA> 00-0034595 3129306 #> 4098 <NA> 00-0035326 4035474 #> 4099 <NA> 00-0033938 3042733 #> 4100 <NA> 00-0034711 3116737 #> 4101 <NA> 00-0031290 16924 #> 4102 <NA> 00-0035373 3122794 #> 4103 <NA> 00-0033849 3045149 #> 4104 <NA> 00-0034303 3128853 #> 4105 <NA> 00-0035052 3700080 #> 4106 <NA> 00-0033700 3051368 #> 4107 <NA> 00-0034923 4250485 #> 4108 <NA> 00-0032452 2585785 #> 4109 <NA> 00-0035349 3115923 #> 4110 <NA> 00-0034931 3133361 #> 4111 <NA> 00-0034599 2974249 #> 4112 <NA> 00-0034232 4037632 #> 4113 <NA> 00-0032406 2971051 #> 4114 <NA> 00-0032422 2577354 #> 4115 <NA> 00-0034422 3052161 #> 4116 <NA> 00-0033494 3040065 #> 4117 Seabreeze (FL) 00-0019646 2148 #> 4118 <NA> 00-0032584 2971728 #> 4119 Southwest Covenant (OK) 00-0028660 14322 #> 4120 Lake Highlands (TX) 00-0004091 1440 #> 4121 Alta Loma 00-0031112 17130 #> 4122 Centerville (OH) 00-0023482 8461 #> 4123 Needham (MA) 00-0025944 11923 #> 4124 <NA> 00-0034147 3059104 #> 4125 Clinton (MS) 00-0032835 3135726 #> 4126 <NA> 00-0035171 3128692 #> 4127 Prince of Peace Christian (TX) 00-0034921 3048898 #> 4128 St. Augustine (FL) 00-0030390 15918 #> 4129 <NA> 00-0032616 2582419 #> 4130 Notre Dame (CA) 00-0028787 14816 #> 4131 Central (SD) 00-0016919 1097 #> 4132 Christ Church Episcopal (SC) 00-0030896 16976 #> 4133 Hoggard (NC) 00-0026138 11737 #> 4134 Madison Central (MS) 00-0024333 9704 #> 4135 Bridge City (TX) 00-0020578 4333 #> 4136 Albemarle (VA) 00-0023096 9329 #> 4137 Conestoga (PA) 00-0028620 14262 #> 4138 Maury (VA) 00-0029955 16449 #> 4139 Logan-Rogersville (MO) 00-0033765 2986109 #> 4140 Clearwater (FL) 00-0031018 16897 #> 4141 Novi (MI) 00-0033997 3057876 #> 4142 Brookwood (GA) 00-0031815 2577602 #> 4143 Hill Murray (MN) 00-0034415 3045259 #> 4144 Ansbach (DEU) 00-0031961 2576030 #> 4145 West Side (NJ) 00-0029212 15070 #> 4146 Bozeman (MT) 00-0030770 16983 #> 4147 Havelock (NC) 00-0027978 14026 #> 4148 John Ehret (LA) 00-0031354 16852 #> 4149 Seaside (CA) 00-0028022 14023 #> 4150 Stevenson (MI) 00-0027442 13779 #> 4151 La Grange (GA) 00-0025828 11609 #> 4152 <NA> 00-0034580 3121376 #> 4153 Jefferson (FL) 00-0031943 2578565 #> 4154 Terry Parker (FL) 00-0030119 15954 #> 4155 State College Area (PA) 00-0029629 15040 #> 4156 Inglewood (CA) 00-0032573 2576761 #> 4157 Central (OH) 00-0031491 2265764 #> 4158 <NA> 00-0035354 3120075 #> 4159 Hollywood Hills (FL) 00-0031729 2579598 #> 4160 Cherokee Trail (CO) 00-0030160 16268 #> 4161 King's Academy (FL) 00-0029479 15640 #> 4162 <NA> 00-0034518 3056831 #> 4163 Champlin Park (MN) 00-0026672 12988 #> 4164 Dublin (GA) 00-0026307 11401 #> 4165 Wilde Lake (MD) 00-0029566 14973 #> 4166 St. Paul's (AL) 00-0029670 14932 #> sportradar_id yahoo_id rotowire_id pff_id #> 1 6cb85ce9-39d3-4453-9104-36adef874db1 NA 15380 NA #> 2 5a1e63b3-6dcc-48f5-927c-0fc141085f32 29849 11504 11228 #> 3 1f0d9995-7ace-44ab-8d61-2f3924d5b75d 24842 7439 6207 #> 4 c025b513-9431-4097-bc25-9777bf08f846 31865 13560 44027 #> 5 ab49bafe-7023-46ce-9606-9a9823eabee6 28244 9944 9040 #> 6 cff07c85-137a-4496-8df9-4f96f68f1318 32095 14032 30126 #> 7 528bf5c9-1d23-40c3-adda-df21f8f0e2ab 33089 14793 50465 #> 8 cbce4c7c-b22f-48de-b653-cdc19f9a6320 29311 10941 10711 #> 9 05b308c7-13f6-4ea7-baed-4314896663cb 27552 9619 8659 #> 10 409f6cf2-cfd2-4712-80a2-9a62e0ad75c4 NA 15313 NA #> 11 56d8015b-aed7-4a46-868e-a85672cde790 33115 14950 83079 #> 12 4f5ca039-21f3-4045-9c2e-c0b4d5d564c5 26683 8645 7841 #> 13 588d8e04-98dc-478a-b3ba-9e3cb58d9afc 32092 14031 35173 #> 14 f59cbb36-23cc-4caf-bceb-edd7b1ff99e3 NA 15187 NA #> 15 ba7e7289-6b7f-4db1-85aa-514d4fa0d367 NA 15342 NA #> 16 56992f39-70e7-4b6a-86da-0a4776504e7a 32623 14330 49116 #> 17 7757384a-6b03-41fb-9c77-3c016a968d1c 29781 11341 11137 #> 18 c9e9bbc5-2aeb-4f72-9b7c-1a688fb235fb 26707 8777 7865 #> 19 db3a0416-6758-485d-89e1-806af99e0991 31971 13586 25444 #> 20 6c7704c2-f833-46aa-9f9c-d975d5ad1297 26621 9101 8419 #> 21 0e6f6610-0276-4229-9cf1-66f0d011c1a9 NA 15625 NA #> 22 75f445e3-0fc9-45e5-8f1e-767022f0332a 30969 12978 NA #> 23 f68685e7-9904-47bc-b39a-e1c813435385 31897 13742 49605 #> 24 023af11a-3aa1-4266-b163-31cf6369ef3b 28440 10311 9485 #> 25 19269eae-f3f2-47ac-b755-843489f29f65 26676 8659 7834 #> 26 dc11299d-6c24-4048-8b2f-f929e4ed0b92 24798 7323 6163 #> 27 fe9c0458-1a1a-4e88-b974-2de7426fa520 32180 14057 36551 #> 28 cf0c253d-45bd-48f5-9602-88c3d9ca1082 32081 13709 48850 #> 29 6399b33c-6d3d-4fc5-b142-1a5deb33ef76 27815 9412 9003 #> 30 a50e3085-370b-4fd2-b79a-28d3b9c5c1c7 24058 6682 5607 #> 31 376a61bd-de05-4fb1-a698-7f93fd1a102c 28539 10461 9584 #> 32 2040899a-0b04-4de7-900b-f9e6861c6150 32784 14712 44614 #> 33 8363a880-0f4d-44be-bad7-2815c7c3ea00 28815 10675 9809 #> 34 6e9763f5-2f5c-45d4-b50b-d7bbf91e1a65 32801 14717 44515 #> 35 3a2a4022-a54c-4325-b521-e46e460559ab 25868 8148 7151 #> 36 d3186202-386f-443e-92ad-37d8e41dca55 28591 10485 9636 #> 37 2510a6c1-aabd-4d23-ae14-166c19f898e7 31319 13076 NA #> 38 64d8dddf-b3fe-4146-8d08-36e9c0b6eede 29720 11204 11142 #> 39 cca4c795-7fa2-479c-9395-dff76a0abb20 24013 6657 NA #> 40 67f5e782-f91c-4536-9818-cf4a0e7e821d 8565 5051 3471 #> 41 48700b7b-210c-4ced-9c57-3e21162e7752 31299 13210 66928 #> 42 036131ed-3862-4f06-8379-084d3b2352d5 27702 9377 8809 #> 43 e2a4fca8-0482-442e-93f7-3cef0fb2358d 28419 10355 9464 #> 44 83849bc5-0b6c-4c76-b622-9c7042758e97 31324 13222 49167 #> 45 ec198436-31b1-458e-a47b-9d1cd134300f 31151 12823 48553 #> 46 4f090881-03fc-4a34-b02f-fd1df1e411de 28472 10452 9517 #> 47 b4a1df84-9467-48b0-bf65-053744916892 33218 14936 NA #> 48 23f29e42-92e5-41b2-88eb-b9fb17a0eede 30308 11982 11950 #> 49 78eb0872-fff0-4fc2-94ee-6a5c518ecaa5 28446 10329 9491 #> 50 0643e15e-76f5-4eea-a08e-d35eba7f13f7 32320 14073 56886 #> 51 89be4a71-66f0-4566-8e85-372e8b4e6412 NA NA NA #> 52 5197def5-f444-4561-ad28-7aac10dc748e 25731 8140 7027 #> 53 75513062-bfe5-4e32-af04-04a805c0fd8d 33086 15102 26885 #> 54 61fda7fc-a8d7-435f-9397-5657662cd6b2 NA 15288 NA #> 55 975de072-24f3-4345-bbb1-ccdf48f87d83 33069 15002 NA #> 56 dc447507-2380-494c-96c9-e0edb2679a3c 29885 11179 11181 #> 57 41dabf34-2055-4420-8aef-c222d7df48e6 32872 14752 NA #> 58 b87d80b7-f129-4f3d-938a-1272f8122589 32678 14525 42451 #> 59 da99611b-81f8-43f3-861c-7e9bbbe3452b 30966 12536 NA #> 60 99149c69-e14f-4e05-9c3a-8ae7e3b1f00b 25976 8543 7301 #> 61 b6fe2eb8-3692-450a-98b3-11e47c8b6711 26642 8733 7800 #> 62 f19b687d-b81f-4104-9151-92e2af7d234d 28521 10279 9566 #> 63 c33e9d4b-dce7-452c-81e5-9737c158e803 NA 15716 NA #> 64 476d6de7-0d10-4f9c-96c9-2bd289052dce 32742 14584 26634 #> 65 be193ede-9edf-4c21-aa48-35310703da14 33134 14966 NA #> 66 8b7ee20f-238e-4b6f-b43d-4f9624bf2534 32432 13845 46676 #> 67 870b53b7-1a36-487c-b086-b0daf0f5ce08 31316 13216 NA #> 68 f4f08533-c692-4aba-84fe-fc21101c7bda 30249 11796 11891 #> 69 1bdb2a2a-62bc-4043-8c80-f9b501d2003d 26695 8738 7853 #> 70 d96246d7-aa2c-4d05-9c58-8d6bc5e20cdf 25958 8243 7229 #> 71 c0221755-d6a6-4f55-9ed3-672a9625ee6c 32080 13681 29038 #> 72 87f9b9a9-5362-4947-8fc4-3b718b00566a 29625 11424 11022 #> 73 cb332cbe-4490-48c6-9a21-046475206e07 24850 7552 6215 #> 74 1dc22599-4ce9-49c2-bc8a-179a50e13cc1 32546 13963 NA #> 75 90d9c6b2-3970-45e1-a558-b68a977a8995 28412 10259 9457 #> 76 80ebeab8-891e-4a54-80ec-3f102fed7cc7 31670 12941 NA #> 77 44f6c82c-528a-41fe-9cfb-721ab4a4c1a1 27982 9672 NA #> 78 b24beb2f-de5d-4160-8b82-d7a5578b59af 32548 14265 NA #> 79 edaad8e3-62cd-4715-b225-0010ee9825a0 6947 4044 1906 #> 80 3699dfd9-d437-43f7-b674-adbb31e7e64b 24060 6444 5609 #> 81 2d907c0c-cf4e-4564-b9eb-560d84f16144 32894 14493 NA #> 82 dd5a6b6e-ffae-45a5-b8e6-718a9251f374 31833 13613 38334 #> 83 23461354-f2d7-4e36-9046-fe9cde6dd413 32662 14587 46440 #> 84 d8d9b161-7ef4-42bf-89b7-7edf806a0ad1 31104 12667 45851 #> 85 d16f5060-d562-492b-9ab8-4a495920e808 30355 12089 11996 #> 86 aebf7b65-da15-4499-b1af-6687fa50b2e4 32892 14372 NA #> 87 28a084c0-14df-499f-bd1f-b975603626b7 30218 11691 11860 #> 88 0d77e008-ec6d-4816-a186-329c0ecdb6be 33126 14592 NA #> 89 1dc6b133-355f-451e-856f-d02839681578 33088 15106 25859 #> 90 1686f2b7-90e8-4d0a-89f8-415310ae2bd8 28508 10420 9553 #> 91 5ce20f3e-0f02-4f53-a2ef-5b076361f2b1 30149 11986 11791 #> 92 75dfd9cc-5419-49e1-bade-0632d03ca4b4 29208 10837 10320 #> 93 7574eb56-a34a-419e-9682-c4788cfe2019 30523 11890 12122 #> 94 38b32cb2-42a0-44ce-87ae-bf16c338b3af 32250 14132 47147 #> 95 f5153e47-fc18-4441-afc0-10c8a5ffec53 32339 14102 NA #> 96 0a084635-4e5b-42ed-a85c-7d0ea1ed76f0 NA 15684 NA #> 97 b8edd278-b5cb-43b4-812f-468d8e5e84a3 32163 13972 NA #> 98 52f4a43a-64a9-4d69-a9e2-28bd60f68e49 28443 10128 9488 #> 99 1a486956-1aa5-495e-bf1c-8dadc74be7c4 NA 15715 NA #> 100 8506c15c-15cc-4d2c-aebf-270c605fe0ec 27174 9847 8524 #> 101 c9701373-23f6-4058-9189-8d9c085f3c49 24791 7241 6156 #> 102 4484c7d1-025a-4f26-8e9b-48503afb0c68 32523 13469 42237 #> 103 8e43eb21-92e4-4720-8766-c9204259c063 32317 13447 39967 #> 104 7e8f4076-25e1-41e5-8e71-f70397a3729d 32006 13628 39587 #> 105 1af02026-aef5-4dcb-baa2-9c9c91d22533 30637 12106 12251 #> 106 58266b36-fa48-4f51-b41c-909bf82748f3 32943 14942 NA #> 107 975555d0-fe82-4e88-90f4-d690f5000671 NA 15514 NA #> 108 51952c7b-11c5-4229-baf9-08d4694cc2ad 27074 9046 8128 #> 109 04f9a4be-b236-4eed-9bc4-794f615ccd13 31894 13612 47448 #> 110 5c48ade7-4b9a-4757-9643-87a6e3839e2b 26650 8619 7808 #> 111 3ad7f1fa-2389-4cea-94a1-28c5479ca542 32159 14043 47896 #> 112 8f71dfc2-f702-431f-a4b0-70b72ebdaad9 32945 14879 NA #> 113 ebcd87ce-218c-4144-810b-921c2f59d6e8 31017 12508 47546 #> 114 <NA> NA NA NA #> 115 d2710837-baa1-46e3-94c8-7dffe08c93bb NA 15584 NA #> 116 18fc2ade-5106-491d-9e5f-97926e64459a 27785 9799 9068 #> 117 3cb5ccb6-375a-44b7-b0a5-31e88e438c2c 30456 NA NA #> 118 c498bd15-f54b-4371-ab38-549b1c6d9201 32748 14408 41141 #> 119 e2aa4576-83a6-4b81-ab95-49126a0cf1d4 NA 15474 NA #> 120 5ff63fe6-3b33-4f0d-bc51-d5e84d862b08 30194 11970 11836 #> 121 25396df1-3597-468c-b1d7-ce40edb0f7f2 32917 14836 NA #> 122 a0edbda0-7a76-4c56-af14-14d02fd7a02b NA NA NA #> 123 6b2ee61f-463f-478a-9bfa-e43c8e9b0c2e NA NA NA #> 124 <NA> NA NA NA #> 125 1eae2610-be1d-4f53-82a2-28cf4a2db352 32686 14526 55586 #> 126 83d45661-2687-4ca9-ac45-91beac7b7082 31028 12581 50393 #> 127 ddbe4da5-1393-4b1f-8708-92f66412d6a9 NA 15755 NA #> 128 f88281f5-4bb6-4269-b9ae-8f21dba42699 NA 15758 NA #> 129 2899f9bf-018a-4c91-8fe8-c42a5b6c12c4 33042 14993 83192 #> 130 486c2ff3-5e42-4bad-9849-2084ad0af423 29291 11045 10691 #> 131 a2802951-e573-4e8f-ad31-14b9ae5f8e7c 26714 8906 7872 #> 132 b46f97e6-f722-4926-8bef-f0d8a87ddaca 31358 13092 NA #> 133 b86765a3-6035-4b1b-aa5e-c5626d6b3ab1 NA 15235 NA #> 134 fafdc4a3-ddbd-48b4-b10e-cd8a0189dae1 31943 13618 34105 #> 135 3cd103cf-cc2e-458e-94bc-a7a7ce1632c0 29224 10858 10346 #> 136 3beaed67-ca01-4603-be1f-78abfb6037b5 NA 15452 NA #> 137 c639a18a-ee1a-46ed-8707-580711fa33db 26770 8974 7929 #> 138 ccfcbd2c-6e35-49b9-b131-ba2143665260 29306 10926 10706 #> 139 c41a772c-8458-4f5d-b7b5-8c2a23406fa3 31967 13798 88313 #> 140 73afc75b-68f0-4cb0-823d-5bfe33969766 32717 14540 48741 #> 141 41025198-9eb3-4ced-8743-94e685d6090e NA NA NA #> 142 b0501e9c-4f03-4bd8-baae-1e39b3ef751e NA NA NA #> 143 6524f633-b8dd-439d-82df-cd4f9f07ad29 31060 12754 48815 #> 144 106c9a1b-6bc7-4cab-bc52-cb58d5319ede 32631 13948 NA #> 145 32b5fb32-1fcf-4955-9621-669c246a9fd3 30792 12358 48856 #> 146 f413306f-0134-467d-82d0-df73f5f7bbe5 32077 13707 48713 #> 147 648bcdd5-7239-41b4-b346-a2424f6c01d3 31647 12910 49918 #> 148 a6dee71f-acc2-464d-b271-a5a3f03bda84 NA 15752 NA #> 149 e1fe1900-fae3-414e-8530-55eece80471f 28525 10458 9570 #> 150 be07b323-a23c-4589-9fe0-29ae6a537de9 28542 10325 9587 #> 151 f5510376-f94b-470c-94ce-88098635c4ff NA 15236 NA #> 152 25adacdc-f26c-4955-af91-2d9fede395d6 NA 15662 NA #> 153 955093e0-39aa-48b4-b34d-259b369e6535 28141 9990 9302 #> 154 a8c79523-3d0e-48dd-b4c6-e3d8afd24a13 30426 12292 NA #> 155 86d7dd69-9957-4853-b069-5ad7e35edc64 32789 14754 57834 #> 156 ccb8931d-221c-41d3-9b9b-a4c4efa56edd NA 15753 NA #> 157 0f57f7d4-41b1-400d-bec5-09da91d825f1 31377 12553 50287 #> 158 6bc85af5-fc58-4656-82da-d02780a0f6f6 28391 10349 9436 #> 159 a2a587d3-2971-41f5-a5d4-828d9cf1494e 29285 11080 10686 #> 160 e47c71c1-2e10-42d0-b5f8-5651909a0ff4 31352 13087 50141 #> 161 61a78458-8764-41ea-81ef-6275211760b6 NA 15648 NA #> 162 26d3edb9-e572-4272-835a-21b63200ea64 31970 13499 28307 #> 163 bd4a07dd-aeae-4ae0-87e4-a8b65ad6870c 33311 15134 NA #> 164 8471f3e4-b507-4554-afbb-df333694360b 32582 14293 44583 #> 165 a1c170a1-f0ff-43cd-ac41-19a1e36bd72e NA 15759 NA #> 166 68c82358-44df-4884-9e5d-f5102435c32d 31356 13090 50893 #> 167 e0924e2e-74c2-4ae7-8d2a-4579871c6c29 32234 14085 31696 #> 168 0a415a08-ea30-40b2-aac9-42689e3e996a 31170 12995 24904 #> 169 6d50cf5f-21a3-45fa-a675-0d266baebb0f NA 15756 NA #> 170 b6d2274d-87cf-4427-bddf-ee8a1b4ea652 27259 9806 8378 #> 171 8bbd5520-52e9-4187-889f-bd4552622869 26168 8553 7748 #> 172 e4250936-5b20-4f18-80cd-7a0b8fa7964a 29355 10904 10755 #> 173 e02c98ff-b5d8-4647-a4ed-bba595ae9e5a 31846 13808 46692 #> 174 4ca23813-a36e-45be-a01f-6321b4e84f18 NA NA NA #> 175 319009fc-aece-4236-8545-0134ce5d0d8f NA NA NA #> 176 01dd8219-f1df-4a6e-95b2-27317daca89f 29282 11181 10682 #> 177 9240e2e7-b6dc-4498-9abd-eb79a1df5462 32160 13467 37023 #> 178 d014defb-fb47-4391-89dd-dcb5e7c30b2c NA NA NA #> 179 10f9c2c7-d03d-45b4-979f-0fd9b6938aa7 NA NA NA #> 180 c3de87d2-5461-491f-8f36-1421ec9c0a76 31153 12552 38935 #> 181 7579c408-f3d3-43a6-a05a-2aec8291a618 32290 14148 46989 #> 182 7e666f6d-b92d-44b8-af06-8fec36a3b834 NA NA NA #> 183 e2dde73e-9516-4c0a-80c6-8fbf0f47f930 NA 15175 NA #> 184 a6b00103-9678-41e4-b310-fef78c2a6e43 31343 13080 66448 #> 185 ee9c975e-68f9-49cc-886d-f1d00286305d 27534 9248 8641 #> 186 37095914-53be-4d16-b5c7-2194dbb6d6c2 31863 13748 46912 #> 187 ee894f69-ff62-4f60-a5fb-5307fce1de73 32650 14348 NA #> 188 aecf0860-27aa-49ac-b133-69fe2c4c63e1 32898 14653 33541 #> 189 c7273f41-5e8b-4e0c-9606-c8c1bf6f6298 33000 15142 NA #> 190 7e648a0b-fdc8-4661-a587-5826f2cac11b 8780 5610 4317 #> 191 79a849be-0552-4da9-89ff-11d20a7a764a NA 15324 NA #> 192 d4b30988-e8c5-4689-8037-f79a0d3c2774 27692 9319 8799 #> 193 5c079a21-ae9e-4b38-a69a-47706fa8dd67 30980 12489 35460 #> 194 77921652-c664-4511-91c7-77027bbb2647 NA 15239 NA #> 195 5c4763e0-656f-4d97-b72e-7939c2610558 NA 15207 NA #> 196 02779042-2b4e-4fa9-b598-364fe01b523a 30202 11685 11844 #> 197 e311a7a2-eddb-439c-86b4-b1f1984186bc 28514 10083 9559 #> 198 da85107c-365c-4d58-90ab-479d97d798b4 26652 8792 7810 #> 199 c44534f8-a567-40e7-b51e-1a72c49cb24e 31984 13494 45934 #> 200 f4ebaa64-aebe-4a32-b11e-f4f47f511770 26703 8888 7861 #> 201 0a44ce13-28ff-4577-be74-501382fcf7f9 NA 10003 NA #> 202 c588e277-fc9e-4187-9358-2b9e1a2b0cd9 32804 14697 51423 #> 203 1f3deb24-9ff8-4769-8f42-825eff7742f6 NA 15265 NA #> 204 5aab93f1-bc81-4d83-b105-d579a14eb349 32588 14295 48369 #> 205 08119cab-78d1-4afe-ad0b-e27f0335f35a 33071 14871 NA #> 206 268c8b1e-b217-474d-a92f-4f924273c938 31283 12692 34985 #> 207 1b125fc4-5dd9-4eb9-a42f-048e61ca42b7 30995 12467 47294 #> 208 97e65d1d-c738-4812-840e-030f0242bc29 31749 13356 31849 #> 209 cf23126f-055b-4617-819b-bb4bcb84541a 24946 7425 6311 #> 210 926e2674-52d6-4cec-9991-46ee85cc8cfd 30996 12616 48262 #> 211 d8281390-f081-41e5-b55e-75779536fe94 32123 13833 44920 #> 212 b4e5a9af-6d00-4d51-9bb9-c7d5f69898df 29374 11003 10774 #> 213 9c2185ab-5dcb-485e-950b-e035d9edb692 33057 14976 NA #> 214 <NA> 30110 12193 NA #> 215 40f11577-5646-4da3-99ba-ea8b038b17a3 33066 14885 NA #> 216 52f8f4a4-3d70-4d43-9a3d-9f7356033f2f NA 15465 NA #> 217 c95f9fd7-9c7e-43d3-a6aa-2ba78ce09fbb 31103 12811 48316 #> 218 d90a2ae8-cbd6-40cd-a545-3501c93c0822 31347 13083 47900 #> 219 4501e6f4-4683-4357-b241-8b4a0b6aae81 31164 12992 44771 #> 220 b20d61df-7706-490a-b9ac-8f0e6e24c557 NA 15578 NA #> 221 e98ce252-583a-4c74-a718-d38f1ba5793d 31227 12739 48309 #> 222 bc175901-4a1f-4132-abb4-e49cc7d35e12 29397 11014 10797 #> 223 c1d52f55-4c65-4b37-8457-f0dc028c85bc NA 15663 NA #> 224 a3f67680-66f1-4efc-b21b-badd19467cc9 32997 14519 41117 #> 225 402f063b-4703-4729-b6ea-3a9d45a314c7 28406 10407 9451 #> 226 1880777d-9908-4a32-a492-264b4fec967d 29338 10889 10738 #> 227 c3d6c803-1c91-4bd9-956c-7f6c292558c5 24814 7511 6179 #> 228 e8b1322a-6162-4535-b6af-4ca60ce8b09c 33012 15137 27819 #> 229 0b93712a-3c39-4d73-aca5-ca04ed05bd59 31959 13654 NA #> 230 bf9749c6-6609-456e-a3eb-b8cab21dd76a 30129 12017 11771 #> 231 791b7f98-c5ff-4145-ab8c-c67e3ca801c4 31088 12905 50365 #> 232 ac84c815-7ed4-49b2-b84a-08cf6c016eb5 32199 13914 49401 #> 233 6dbc1c10-83ed-40ba-b747-365ef1c0623a NA 15193 NA #> 234 f5fc76fa-4381-4026-b8c0-384cb4dff19b 33004 14675 NA #> 235 76647249-62a0-4038-a597-8d0aad1ef3b5 NA 15415 NA #> 236 c30da9e4-f0d5-472f-9c20-45f2bc7eaa54 NA 15644 NA #> 237 13f716fb-7249-4b0a-9858-8af8cb83f78b 28452 10399 9497 #> 238 04e8ea8f-8424-4196-a0fd-7dff3740c734 24677 7013 6013 #> 239 83128a20-392f-4ca7-878e-689c6e6dfbfc 31160 12459 28854 #> 240 1105ae60-a4b6-4246-a77e-0849179b07b2 30299 12010 11941 #> 241 95f3b8ac-e10f-4f0d-8650-b464b37ded86 32889 14474 55967 #> 242 aeb2566b-6a0e-4f02-8f75-75a8a9c21043 31728 13325 NA #> 243 df08d4a5-2979-469d-9775-ed34fc3f43ee 27687 9409 8794 #> 244 0333b8f0-3aab-45aa-a684-6d402a309413 8827 5587 4364 #> 245 6e967bff-11af-4b5e-bf72-a22e6162c08a NA 15776 NA #> 246 30f98123-214c-4f32-b29c-ac6f3ff56f39 25746 8204 7040 #> 247 904f702b-e8b1-4fef-a4a0-278d18cc15e3 32741 14380 44304 #> 248 1c1c956f-0f4c-4b22-98f2-6bbbd5e4a504 33008 15140 48721 #> 249 6f695364-f31f-420d-8baa-434539e2b12d 32840 14720 50049 #> 250 5f9b2c2b-d688-48c9-ba9a-1d9b7f45bcbb NA 15429 NA #> 251 cc4d595a-3fd3-49ed-a332-8d9bab9159fd 32309 14124 NA #> 252 7e2c36bd-bae6-42e8-84fc-147106ed7270 27635 9397 8742 #> 253 97c96dce-9b33-4d0e-ba01-5eb629192d19 26838 8987 7997 #> 254 cb68b95f-ef6f-4e5e-b861-8bfe6cfeacf5 30592 12298 48862 #> 255 <NA> 30590 12300 NA #> 256 98074bf2-0c4d-48d4-b3c9-52f707a22280 32310 14128 NA #> 257 89580a43-ec9a-49d3-86de-07810bcb8cdb NA NA NA #> 258 20a0bad2-d530-4ff4-a2df-5c0a21a1f5db 26534 8398 7604 #> 259 e0710cfd-f7fc-4514-a99d-f5144fce08a9 NA 15771 NA #> 260 232b1ab6-7a50-48a3-b213-681e782d6daa NA 15305 NA #> 261 72bae032-79e6-4a3d-b74c-37c7a0973e99 NA 15482 NA #> 262 209307c5-8e39-44a6-8879-5e033e017eb4 32304 13539 49757 #> 263 0782b3a2-9693-40f6-aff2-a21bc8fa4c5d 33005 15141 51283 #> 264 4b62138a-e222-408c-8595-936d1a194eca 24952 7457 6317 #> 265 bc4c0c7d-a6f4-4cff-95ec-a4d0523c2232 32698 14508 57941 #> 266 98841eb4-0f2a-4073-bc91-0fa8548b305b 24857 7476 6222 #> 267 4706e72c-c7ef-4fa0-b16b-e864a1085dd7 31917 13468 48362 #> 268 44e91d62-1877-4143-b4f3-3ede3c435490 31246 13127 NA #> 269 b36539fa-de45-4cfd-90be-49d14149e64e 30160 11961 11802 #> 270 32575119-3aca-47cb-aaaf-162c48b7d372 32768 14648 28081 #> 271 a84d5d5d-3fa3-483e-b737-6587971decc5 31785 13386 49836 #> 272 0cc99dff-5895-48ed-9f30-e70e916bb52a 26370 8526 7292 #> 273 07247409-1cf8-4e67-a05b-15de83ca1bf9 31750 13353 29456 #> 274 32ad0298-bbc6-4b66-bd4d-e87a169ad27a 32496 13821 NA #> 275 7963d8ea-c627-47cb-b46f-a917abb9e9d7 26717 8678 7875 #> 276 7d58beec-bd16-475d-bf08-9137b86aef17 28894 10300 10019 #> 277 cfcac921-0ac6-457c-9f37-82324327f3e3 31955 13823 41482 #> 278 ab3ce81f-6625-45d3-aa6d-79f95ae4f503 32813 14470 27305 #> 279 b3e1206d-38e3-4ad3-be9e-8bf3daa62cad 25737 8125 7032 #> 280 b4908ca3-f723-4d41-ab98-58acf0aa4a94 32776 14685 59874 #> 281 00a4b082-e55a-4273-afa9-5b481d9d70ea NA 15495 NA #> 282 d027528c-6fb1-41bb-9ede-4f45ec731fdd 32315 14126 46219 #> 283 20c1c6e8-509a-46a6-8edf-d402d56c20b2 31185 12854 27934 #> 284 17a056be-39c0-4913-bacf-1663f3ac4a56 9270 5992 4929 #> 285 7256fbcb-dfc1-4f06-aac5-7ecad322984e NA NA NA #> 286 a792cbbf-d96a-48fc-a187-6f7f5b7dd214 29240 11184 10640 #> 287 cb3ce7d5-ab02-4a97-b165-1c62ad497727 NA NA NA #> 288 08e9f65e-cf4c-4af5-939f-a93d1cf34b2e 27528 9762 9091 #> 289 305c4a34-6428-418e-adf6-09f60e83c674 27623 9426 8730 #> 290 ec2895a1-4907-4a18-a526-f2db4b663c3e 27547 9423 8654 #> 291 2eb0706c-3017-4895-a207-71d6fe9e1549 31143 12777 22261 #> 292 544e4159-3da3-47ad-866c-bf48d7634f25 7952 7073 3148 #> 293 <NA> 30509 NA NA #> 294 7c226f73-a59f-4db6-ad98-2766d05d4d5a 32993 14563 46448 #> 295 e06a9c07-453a-4bb0-a7e9-2c3a64166dad 31002 12561 46416 #> 296 1c186672-d91b-4881-85cc-a8c1980cbdd9 NA 15704 NA #> 297 <NA> 30845 12297 NA #> 298 d4d135fd-b710-4c12-9082-9d6e544b3f8d 32029 13752 32819 #> 299 9e31f935-1e60-437d-9859-e1f2bb936aa5 33006 14404 NA #> 300 3ffc3993-461e-4477-9def-c9633b7feac1 31424 13123 46027 #> 301 a57b9914-4315-4295-98b4-9b348c52d6a1 32725 14418 57366 #> 302 528e71ec-8fb3-4928-ace5-fc5ffbf26eb3 31945 13427 45865 #> 303 8f5392ce-36c3-4613-967c-abcec98f591c NA 15667 NA #> 304 a8614822-2740-4b1f-a01e-b7960a4f07f6 32994 14628 NA #> 305 ae900153-c5cb-477f-86e0-e5e1378c30cf NA 15469 NA #> 306 0618f387-9b72-4270-8b8f-dec4cccc9e4a 31056 12559 47436 #> 307 b9bcdb7f-2db2-4bf1-843c-9733f6fe8474 NA 15506 NA #> 308 71c657d6-a2d9-48f3-b6db-dd4372e910f4 33007 14375 NA #> 309 dc83f7af-7b30-4c4a-9c93-f67bd8db954b 31901 13786 47083 #> 310 b3d7169b-9cf6-4fea-815a-26e4fb0ec16a 28658 10553 9786 #> 311 9480dd9f-151f-4e6d-b5a3-35f07bda4cac 28559 10252 9604 #> 312 c9557ff2-899f-41e3-8a0e-35ca874db9b2 28184 9283 9092 #> 313 <NA> 30894 12280 NA #> 314 d1ed6f8c-1611-4695-8b48-5adce0de50dd 31925 13553 48209 #> 315 7d80b51f-1462-442e-aa7f-8c320a62deed 27532 9249 8639 #> 316 c65488d4-251e-40fc-9f32-7019bbdaf75e 32871 14415 48037 #> 317 e0abf267-f265-4682-9bb7-72bbcefda451 28800 10243 9697 #> 318 182873ba-9fea-469e-94a1-2192c822737d NA 15706 NA #> 319 feeee40a-dd63-41a7-89cd-6c95b5456833 31857 13502 61568 #> 320 3da67e95-bd15-409f-b5de-b2feb54efda7 31155 12611 13597 #> 321 e214454a-bba3-417e-a6fe-cfc8f784c7f8 33013 15121 NA #> 322 1e2bbdff-9e08-438f-8506-cafe83066222 NA NA NA #> 323 34cc08f0-53ee-4fc8-95a3-971e6620884c 33001 15135 NA #> 324 35823109-daf1-4825-92b8-564271398ecb 27652 9274 8759 #> 325 7b4091b3-fab5-43e4-93cb-bd2c8eab17c0 33353 14863 NA #> 326 29269863-13cf-4c66-ac3c-5d9a47e2040a NA 15310 NA #> 327 35b82de6-eded-4f37-9bcd-33eb8ed001bd 31349 13085 48301 #> 328 630e6b5d-0486-4bc3-a919-1f02687c1291 33040 14529 NA #> 329 d9f8b92b-69d4-4d83-9bf2-106ee523efed NA 15210 NA #> 330 d93dbc83-e604-4823-a24e-d162cbd8d4d9 32762 14636 40006 #> 331 49c9f374-118a-4207-8030-dcdaf938dac5 28437 10273 9482 #> 332 13de701c-c77c-4eb5-b54c-8881ca5e0871 30140 12127 11782 #> 333 e289cb0a-2447-458a-a47b-5f843c0edd3c 32030 13692 49512 #> 334 7e5aaa20-df98-403f-92df-c3cc2ca9907d 29808 11475 11170 #> 335 089763ae-208d-4ad9-bb30-c97c0fcfdcd1 32909 14549 32989 #> 336 5a97c54f-85ab-4829-a7ed-2f12dcc2eb3e 33356 15165 NA #> 337 09dc5222-9669-4aba-9b67-dc87dfcf01fc NA 15509 NA #> 338 d5dee97b-aa96-4fa6-868f-b6dc1f66245c 32416 14253 49395 #> 339 ab7df007-37bf-407b-b77d-0e719c80f065 27716 9335 8823 #> 340 59f781db-3955-451b-9b17-31b5a1823aa2 NA 15215 NA #> 341 3cd88d26-6c80-47a1-a044-9164fa96459a 31603 12843 25445 #> 342 82100457-f4ee-4f24-8ca2-584bfdc85749 31124 12817 27130 #> 343 5fbc8b9b-db04-46f7-8974-35a73e29d725 NA 15629 NA #> 344 3443dde2-23bc-4dba-b499-069d501a59cf 31091 12784 49511 #> 345 3a6b8eac-9a76-47e0-b791-b6ee245ae924 NA NA NA #> 346 c128dad7-899d-4bdf-af9b-9c205dbd4666 32013 13819 51433 #> 347 e030ef2b-1dcc-4c66-b8de-0016ca0d52d2 26782 8892 7941 #> 348 95fab6fa-3ee1-47d0-93ad-c7ff41744be7 26841 8639 8000 #> 349 44b6bfc4-337f-4247-87f5-1445a36c32e8 NA 15298 NA #> 350 9c84646c-75d9-41f3-9cad-f3f002ca82a5 33358 14882 NA #> 351 18eae132-a14e-4de6-bae2-77c9ce8f5864 NA 15260 NA #> 352 0e72812f-db64-4eb8-a7e4-41347067b375 32057 13989 37479 #> 353 f40e0707-1bf5-44d4-b447-7c03255aa423 24006 6576 5556 #> 354 c47a2147-d70d-4874-91b3-8548b26fb3ec NA 15283 NA #> 355 3fa3a270-f8b2-4d53-a265-84bc928af5c5 32724 14501 56369 #> 356 ac7b90e4-0f47-4f77-b521-7dc92043a9f3 31605 13230 48376 #> 357 ea2fda83-2817-4884-9e85-973263a4e069 25147 7889 6558 #> 358 0043c962-e726-4ed2-8aa3-b0eb5cdc5567 30379 11910 12092 #> 359 7d7aae3c-c186-4ded-bbaa-df05f697ef29 28386 10448 10235 #> 360 2d19098b-f154-4b28-976d-79182af014df 26637 8668 7795 #> 361 ddc66539-5847-4c01-9283-595bde0ff97a 30215 11923 11857 #> 362 840b2183-02bc-4a2a-b415-c62ceecca1b2 31066 12551 48690 #> 363 8b1be2ac-e483-4f39-9bf9-a81be33ac92e 29813 11557 11280 #> 364 f88cf8ff-c5be-4e41-bbe3-a8657935bf3a 32575 14271 NA #> 365 73e84e89-4bd3-480e-b862-68502c8c295a 29264 10931 10664 #> 366 f125395e-820f-40d7-9775-ac101292719d 29559 11327 10975 #> 367 adabdc56-278f-48b9-a003-1329b7f2f663 31841 13653 42200 #> 368 4e710e1a-2654-4e2f-9be0-5b9941025477 30341 12051 11984 #> 369 6a859e36-f31a-4a75-8cd2-905833042fcc 30357 11920 11999 #> 370 3c06038b-0714-425d-9b05-75ef837b1052 30840 NA NA #> 371 bfccbff4-bc01-41ed-aa11-be976160504c 32858 14609 NA #> 372 88976fed-0ffd-40a8-98ea-0c6c55010000 30986 12612 50905 #> 373 f72d4897-8dd9-48d4-9da9-90deb4550d4f 31204 12498 50897 #> 374 62976179-ae2c-495f-9e94-cb3e49933243 32091 13492 39382 #> 375 5edc6528-898b-4ec6-bf0d-b01134430c40 33092 13481 NA #> 376 4688d4e5-bbea-41c9-8a6a-c06bc34ac7b4 29111 10835 10140 #> 377 a1d54aed-e9e7-4a77-95c5-5d62be8fe75c 32192 14063 29951 #> 378 1881d1a7-218b-4690-9065-497946d1ec1e 32411 13512 51045 #> 379 9342eba6-e307-4c55-a0f7-993518dd4415 26771 8942 7930 #> 380 b217c699-2eb4-4c60-9d7f-2df8e4232009 29480 11129 10880 #> 381 99e9c388-c562-40d4-b225-e99c57cb55ba 30281 11975 11923 #> 382 825fe252-36b9-48d9-a845-29114c5aae8a 30276 11978 11918 #> 383 63ed7895-38bf-44ff-9b8a-8d5b0b5bd1eb 29549 11321 10965 #> 384 392ccaf6-6d81-453f-85e3-7702ac081db3 28516 10456 9561 #> 385 ae5e774f-fb4c-4a59-87bb-57fb18d32b4e NA 14384 NA #> 386 ae250261-fdac-4d0e-b480-72529864cce4 NA NA NA #> 387 232655ce-8f50-4d71-b2cb-a4be961e8d1b 33078 14804 NA #> 388 a4d45211-eb06-4c63-9487-ba4ad326893d 31599 13226 46918 #> 389 0b699477-6801-4154-ad51-e8352a3bdac4 30151 11801 11793 #> 390 74a588d5-22b6-42da-8d59-c79d4f7634d2 31870 13498 39805 #> 391 b167835a-3f62-4755-9acd-319c5a3903e3 28490 10284 9535 #> 392 08553010-dfb8-4ca8-86a0-8159355f8705 32402 13520 28300 #> 393 9be53b35-e7fe-4f28-97bc-09d87f782ced 28502 10294 9547 #> 394 6a8a9040-0b42-40c0-a827-94e4150add24 27260 9506 8268 #> 395 980d9a73-9dbb-4456-9256-d4021c013acf 33355 14366 NA #> 396 522a97f7-8cf7-4c50-afe9-1beb6ffadcb2 30176 11788 11818 #> 397 f0deb589-ddc6-4feb-91b6-8922ad26e259 NA 15494 NA #> 398 449401ef-0251-4895-8f56-eaf5ef7f9cf8 28614 10297 9659 #> 399 f32c4441-b0de-4bbe-a9cf-d7b88acaefe7 NA 15555 NA #> 400 efe7d321-9ce8-4a43-9c00-999eda83d73a 32229 14087 46788 #> 401 9164fac3-2540-4f64-ba29-96fb0ce1c7eb 30641 12402 12212 #> 402 12ce10f6-7f95-42db-8ed3-36b14933484f 32837 14486 NA #> 403 7a1b8f1a-9024-4897-86b0-01c63e00305e 30115 11709 11757 #> 404 b45cd0e5-42b3-4847-aeec-a3afd07a0160 30200 11843 11842 #> 405 3069db07-aa43-4503-ab11-2ae5c0002721 30977 12483 46601 #> 406 d8fef424-aa41-4c26-9bce-1265b53cd5e2 32756 14564 40341 #> 407 6249d2c0-75dc-4586-943b-1c103a9eb419 30552 12289 12271 #> 408 0a040f48-4fa1-479d-ae9d-3ab1457539ee 32054 13454 26392 #> 409 adadafa1-dc37-486d-8538-7db1e1b5f71e 24912 7324 6277 #> 410 a511be63-5fc1-4e67-b798-fc801e3c166d 31822 13930 92925 #> 411 aae9da80-c88f-4de3-b088-42553cf351ce 33359 14884 40197 #> 412 a961b0d4-5d7c-438e-90f0-2e1fa09f6c89 31906 13449 40485 #> 413 62c07124-0252-4553-99cc-9d0f1d647742 30853 12245 46319 #> 414 5fb525c5-4e70-4ede-8c49-94ad0cf66b7d 31928 13466 35883 #> 415 34ecc6f0-1ee7-4d66-b8e6-e66307e5c835 32449 14208 29141 #> 416 eab74cbc-ed11-46b3-bd16-1d4c997adc22 NA 15460 NA #> 417 4475bb8a-b5a6-4527-bfc7-8e7e03900984 33357 14844 40951 #> 418 ec63ee49-3a03-44ca-a083-3916f0bccd76 32060 13667 47216 #> 419 dcf6b57b-6706-4d73-8242-2f71667be0e7 30526 11862 12125 #> 420 ad2a1d03-020b-487a-bd5f-7ca9fbc250fe 30661 12271 12051 #> 421 55482edf-8604-4cf6-9a5c-d1124e22ac83 29973 10945 11366 #> 422 6130be96-edf3-4361-b666-860c4ec46e7d 30285 11866 11927 #> 423 be4ca95f-d707-4d52-8731-35b73059d805 NA 15425 NA #> 424 aa759477-6206-4984-ab9c-eb213abfd020 28974 10544 9883 #> 425 a1c40664-b265-4083-aad2-54b4c734f2c5 28534 10133 9579 #> 426 e6f6dd1f-536f-41be-bf56-7ea6999d5b2c NA 15436 NA #> 427 47520723-6d02-4c3b-b786-a7dfcea15efc 30720 12353 12170 #> 428 4f4f888c-08d3-4ea8-ab8f-0ddcf8bf195e 30899 12287 31892 #> 429 7092bb09-a161-4ab9-8d19-fdcf1a91bb3d 26060 8249 7330 #> 430 f7365f88-4cd0-42e9-9e4e-7bade08e9e5b 31607 13297 29622 #> 431 fd4e8681-f2f4-47c7-b954-a72be9b1ca00 24057 6523 5606 #> 432 5ec01774-4a79-40aa-be4a-e33c71bd5bf4 31641 13036 48036 #> 433 dc397432-7157-4ce4-976d-b9662cc6f551 32798 14359 55410 #> 434 1d1c217b-6407-40d7-aebb-ba95fa05d127 32877 14356 NA #> 435 b35211e2-a35f-41e1-b32b-3b31b70330b7 27735 9694 8841 #> 436 5cc69b4f-6ac4-4854-b3ab-5f669e0d8239 33155 14974 NA #> 437 90b71985-5235-4d5a-b95a-405129be496f NA 15209 NA #> 438 9dc1308a-5cf2-45c1-b5ad-fc64fff3e94f 31025 12610 49377 #> 439 20b43016-a174-423d-9551-7f62ababad3c 27041 9135 8334 #> 440 a72561d6-fd30-4910-ac44-eb9416e792ea NA 15486 NA #> 441 e4538897-a749-41a8-8220-332e8229ac41 25775 8167 7067 #> 442 f1d18900-126e-4d88-948b-ec3c255b95c6 32956 15076 NA #> 443 0e4e082e-6dc7-41c4-baa1-2c1367f8f9f9 32783 14581 42883 #> 444 6c162e60-0d39-46b4-bd8d-d2f3c6d6c7e5 32891 14707 NA #> 445 4d6c923d-4776-4558-a30f-739dc4070ffb 27337 9070 8110 #> 446 3b1bb0da-607a-4502-8855-8ab5095334da 33137 14931 43580 #> 447 0d226e62-3a43-4a9f-a985-05214182146f 32822 14787 60789 #> 448 d5fde14a-1f7e-4db7-ad67-e6ea1cd415e2 30208 11992 11849 #> 449 5f3a60b9-64ac-41f0-877b-cfd2cdfe23c9 29352 10929 10752 #> 450 73b6e69a-516b-4b95-9edd-0a8959500956 32919 14620 NA #> 451 87e59fe7-8744-4318-a41e-53a18d1f9647 33139 14968 49159 #> 452 88f31a44-caae-4e5b-a786-8a229374a19d 31548 12923 51315 #> 453 de6f20c5-7028-4ecc-82e8-6516ab1c470a 32591 13902 49066 #> 454 0e41e388-6e5b-4a12-aa2f-45bf83ffadc5 29798 11459 11262 #> 455 47d3d8b8-b0c4-4c4b-84a6-4a6b48975feb NA 15550 NA #> 456 3d988522-2246-4517-8537-c1bfa7989f79 32329 13886 NA #> 457 ed54f1f3-65b8-4b54-8a64-81858ca9f50f 29714 11571 11184 #> 458 6dffc17c-86ca-4ffb-8ef2-12b4f832ce3e 32278 13956 NA #> 459 8a60686b-fdf6-4293-846e-92c1b1d586b9 31106 12841 50244 #> 460 9fe70732-0c55-42ff-a79c-9d234fbc995c 31286 13251 38754 #> 461 66e4fc6d-abef-4c6b-a102-556da3b64740 25813 8286 NA #> 462 d96afcfe-32fb-4a59-b75c-94a6184d3136 32707 14355 56444 #> 463 ef0a8abc-074e-4ed1-a053-846c3b1d9cc5 31649 13188 39383 #> 464 dbf199a9-542e-4279-8764-3341b9f80910 31848 13439 44522 #> 465 eb2a534f-2dd9-484c-b464-455311f1a9e3 31218 13014 50198 #> 466 e8a774bd-079d-48ac-aaa6-01c8fcb46e4a 31243 13062 48459 #> 467 0d038341-cd66-4651-93c4-e76c6d218135 27640 9393 8747 #> 468 38acce95-f677-4045-bd2e-4580b772adb6 NA 15653 NA #> 469 9c8292c7-b406-4a31-a781-7c72aac6b053 32677 13852 43883 #> 470 aa82ed23-934e-451f-ac47-65c63a84bf16 27686 9395 8793 #> 471 a938a2b4-753b-47bc-ab25-61842c78571e NA 15320 NA #> 472 4f115bb3-1468-4bfb-a239-e55e6dc7ce3f 33354 14905 NA #> 473 de41a84a-9f98-42c3-b35e-7c99b0ffa5c7 32515 14231 56733 #> 474 47dedc0e-a2fd-415c-8619-5a46867d83e2 32854 14824 25644 #> 475 21722003-1366-4e06-8d8a-41a01e712c5d NA 15646 NA #> 476 c255066f-15de-4e9e-9de6-fca78d86b258 33327 14867 NA #> 477 d4acfff4-7bee-49f7-abc2-3847a8b85dce 33142 14970 NA #> 478 2bd96d27-08b2-42b3-ad89-b01442c07fe2 33352 14903 NA #> 479 ef4998e0-c9ef-4afe-88ab-d09b48975a08 32384 14172 NA #> 480 00484794-97e8-443b-876f-d192722cd70c 33144 14745 NA #> 481 40403404-4624-4bd0-b11d-ec8299c48a42 25719 8198 7015 #> 482 2b13e2a3-22c5-41cc-b13f-30c501f7c810 32206 13860 51497 #> 483 ee399a97-6868-4db1-9381-09073914c2d6 30126 11937 11768 #> 484 87745a22-9ce8-4a5a-8935-dcc102ce4b18 25358 7740 6503 #> 485 717ebb17-f54f-4052-b9fb-af641a25ebe2 31503 13159 51028 #> 486 6c1cd007-fea3-47bb-a8b1-4e4c040a2d94 31947 13762 50078 #> 487 05640572-1b4d-40d5-b584-d79bdd7d5c5f 26093 8437 7372 #> 488 3bf0711c-793a-47e7-bcbd-a0ddf350fef4 28413 10034 9458 #> 489 9fc6e49f-c863-419d-9dca-8f0da3f3c9c7 28436 10356 9481 #> 490 829c836e-8040-48ca-aa20-5ad24f0ff37f 31131 12988 28838 #> 491 d6ce86bc-7c3c-42c5-82eb-c8bc51e7e94d 32904 14743 25685 #> 492 d15e6d19-924c-4c1f-9d1a-e15b378c2875 31780 13381 50667 #> 493 7764d830-c85f-4995-98b8-756044461bb3 NA 15492 NA #> 494 ee29b5be-a126-4f1a-bb58-c051d7ba9c5e 33248 14679 NA #> 495 5f623fbc-415e-4035-b423-7850cf1153b4 32734 14623 43179 #> 496 e2ee3901-8de4-4585-a6ca-b7d77d271d9e 9585 7078 4712 #> 497 3ed3f6b8-324f-4fce-ae91-b8a2836f6eff NA 15627 NA #> 498 9615d2fc-fa2d-4402-ac5f-fd62406cf978 NA 15491 NA #> 499 1a7ff6d7-85c8-4ef1-8db7-b629b451e368 28469 10283 9514 #> 500 06f3a0fc-2a07-4ecc-b5c3-873b2f615809 32044 13790 60063 #> 501 a25c5a77-967c-4a4f-a885-0178868bbf67 28407 10264 9452 #> 502 f9d87dfe-4a57-482a-a77f-37906daa4382 30183 11791 11825 #> 503 b84b415e-a7a5-4d3c-8128-9e58f002578c 32441 14281 25693 #> 504 de3c68c3-9c11-4c0c-82ef-bc0d536820c2 31687 13059 24481 #> 505 cbe71aae-2475-487f-a78d-c1d7f021c097 30177 11812 11819 #> 506 4cac4ec4-d719-4f77-a714-0a8ed45be814 32635 13604 46178 #> 507 943a818d-074a-4243-9d54-f91ada96923b 32175 14051 94359 #> 508 3eba23df-f60c-41da-9094-74c146b017cf NA 15552 NA #> 509 7ce06610-df7b-4b55-84df-8892ce4dd012 NA NA NA #> 510 9a76c690-1946-4860-9564-a0b7b9bbaf0a 33360 14652 33672 #> 511 0666e6c6-42d9-40ab-83bd-7bbf81e9ac9c 30538 12371 12134 #> 512 7905e9be-2f66-4ff5-a6e9-dbe281bf4822 31932 13446 38265 #> 513 13d826c5-9b22-4e0a-a877-02d8c84c546b 30973 12490 29048 #> 514 32205e74-b23f-420a-b312-465b29260745 NA 15242 NA #> 515 2d16fcef-89b8-4a92-844f-a92c4e20b5c9 31302 13233 47542 #> 516 0fe5d2c8-9cf4-4983-b160-468362c1a23c NA 15580 NA #> 517 b89c853a-6bd8-42ec-ae52-a11831923631 31174 12997 66446 #> 518 ee96c74a-7a51-478a-99f9-97ddaaac1e34 33153 14435 26306 #> 519 f96db0af-5e25-42d1-a07a-49b4e065b364 30121 11690 11763 #> 520 37339e36-741c-4c1c-a9ab-bd89ed866fa0 28718 10630 9996 #> 521 c0a0eb54-1070-43d2-bd33-1ae8315b2c0f 33048 14995 NA #> 522 b5ba01c4-999b-4a82-9bcd-3540ee60d71e NA 15535 NA #> 523 ed8a8fd2-df67-45e7-a34f-984afb82f6ea 31071 12858 42130 #> 524 1d55ba37-c09e-4945-b7ae-8d84e2357283 30740 12375 12239 #> 525 a41b8454-0326-4c56-87a2-f2aac3814961 32921 14570 40411 #> 526 689de342-1d99-4a4d-976d-f6573ef3a8c2 33151 14785 NA #> 527 8c076589-88fe-43ea-9aaf-178312f2d4ee 30864 12125 NA #> 528 <NA> 30681 12269 NA #> 529 cbee2fd3-e5f2-4316-bffd-531f1873f032 NA 15371 NA #> 530 d479a777-b53b-4bbf-a8e4-0c1675ac48df 30891 12276 51842 #> 531 2da353f0-5570-4539-bd42-1b0a7c017210 NA 15775 NA #> 532 c58e6a2c-2206-4d42-b368-fe6f0ecb1262 30279 11721 11921 #> 533 a2368d42-9e6b-4268-883a-f23ef7ef5638 30487 11860 12014 #> 534 69388223-d1e7-46c3-9106-e10edb7073e9 NA 15214 NA #> 535 488cf673-fb92-4701-abd0-4641987642ee 33132 14585 NA #> 536 3885b40b-c31b-4cd6-a0fd-3d24bede2771 30959 12533 66438 #> 537 1e664071-60d0-47da-94c8-e5c8617e11f6 NA 15226 NA #> 538 634dcf96-92ca-474a-8a09-e26a12a7bafa 31832 13967 28621 #> 539 e81fb788-1478-4936-ae12-f6ed7ec23476 29785 11191 11254 #> 540 85325fdc-da47-4992-af60-a20d0b1ec980 32556 14236 47959 #> 541 aecc1809-4628-4c3a-8b2b-c8f2858d2492 30339 12216 11981 #> 542 d8202e6d-d03b-4cd1-a793-ff8fd39d9755 30994 12477 48267 #> 543 430446f6-a74c-496b-8f49-4464e7d8149d 31517 13019 48017 #> 544 3714df7a-a59f-4f0b-8689-0ba0a5ada62a NA 15544 NA #> 545 95bccf33-b911-4bfa-96b4-a15b9a160c68 29290 10897 10690 #> 546 a7450b47-b784-490b-8edd-b5502f16366f 32037 13986 49569 #> 547 7ba5935c-0e54-4ad0-b90e-ff4af7d62b85 29925 11506 11310 #> 548 99b81b41-fb3b-4650-940b-9cb3770021ba 32720 14627 56259 #> 549 6311b3ee-d514-415a-941c-4bda88a6bb55 30495 12029 12021 #> 550 f14e6b34-3c77-44e7-bc9c-6c691d3fe46b 26645 8641 7803 #> 551 4ed347d1-170b-408e-b360-46a83557b56a 31660 12780 66576 #> 552 e1072f9a-86f7-4d01-89a6-33fe0186f232 32833 14706 49346 #> 553 5b652a55-0431-41e8-838c-db903463abee 31713 13311 NA #> 554 f4c59ced-4d11-4314-a761-ec0883edd3c1 30225 11993 11867 #> 555 c3ff85db-bad4-444c-9123-812c933c8227 32027 13430 50326 #> 556 d5efd828-7339-43a7-ad7e-6f936dbbabb2 26372 8567 7288 #> 557 f40995fc-bd95-41f1-b9ef-4ab938c3aafa 29259 10928 10659 #> 558 abb612d4-f5b9-4644-b9ed-f13fa0da7e98 29358 10930 10758 #> 559 978eb5b8-9ae9-473e-a1ef-1ad2bd1b7ae5 29438 11120 10838 #> 560 04799aa9-8488-4096-97cf-f0d5f77aca46 NA 15728 NA #> 561 b6fa8c3c-c729-4178-8e9c-c7e784a872c1 29401 11223 10801 #> 562 43ccb78e-353d-4d0b-ac51-4103415a568c 29419 11060 10819 #> 563 6bbffdec-af71-4378-b0cc-e1375643ef57 30166 12052 11808 #> 564 f817da48-83fb-4172-b4cf-0bacc532b4d7 NA 15191 NA #> 565 80defaa5-684a-48c5-b50e-ac94ab1aa590 NA 15729 NA #> 566 e9799059-f592-47e8-aab3-e2027fe7b148 28488 10453 9533 #> 567 fdfb980b-1493-4698-9b97-f445a8f495da 28423 10450 9468 #> 568 e5ea211c-bcd2-4a7b-b6ef-911e7e796266 NA 15270 NA #> 569 2d133844-4e02-460b-819b-d8176407dedb 32258 NA NA #> 570 0a6c2bfc-19a4-47f9-ba60-74265af6e947 31115 12711 28451 #> 571 881eb214-c981-46c0-a0cf-34023e773754 28427 10067 9472 #> 572 8b9bc551-66bb-4948-849f-c0471caaeb19 28085 9661 9316 #> 573 7b2e9dfa-96c6-4bbf-80c4-094f9683b217 NA 15725 NA #> 574 b8c4a63d-775b-47c6-9be3-ef321658c600 32047 NA 39527 #> 575 253afa4e-a404-41e5-82bc-4c41508498f5 NA 15325 NA #> 576 eb8e3dbc-e840-497f-9a77-62e45d3393ff NA 15365 NA #> 577 e2d85e2a-3d88-42e7-95ca-8db79228135c 25799 8350 7090 #> 578 f3adad78-ada5-4ded-bb47-cbf8518f7bba 33175 15052 NA #> 579 65f6cfb9-dcfd-4874-b409-0b0be99654ea 31698 13328 NA #> 580 d96ff17c-841a-4768-8e08-3a4cfcb7f717 28227 9633 8932 #> 581 ebc1fb19-90ac-4a76-a878-d1760e7f3636 NA 15723 NA #> 582 306d7e5a-f0f6-4b30-8484-5d933361278e 33176 14979 NA #> 583 b94f3978-ba88-428a-924b-3fbfdf04b058 26653 8695 7811 #> 584 3291c582-9377-4bc2-8ee5-61d887873797 30978 12644 50892 #> 585 2814f1e7-dca6-4bd9-80a9-9af480d10546 32825 14680 35241 #> 586 ea59d8de-e3df-4a7b-9778-7d6dc4892fc3 31085 12640 51221 #> 587 8cbac569-6612-41fe-ae95-beb9e4771ed3 NA 15724 NA #> 588 ee209aa3-145f-4acb-85fd-e8a2420b4d2a 28934 10850 9934 #> 589 0a605e2f-4c81-453d-941b-4e9f143210f8 25898 8285 7177 #> 590 abdf27dc-a54d-427c-a745-173f1c485292 31753 13361 49023 #> 591 33c74bf8-7621-48be-a769-e219703988d9 27533 9251 8640 #> 592 614c6237-8fe9-4a62-beec-0c44ca0fc2ad 27578 9343 8685 #> 593 b2d80e3c-1485-488d-8033-52443c63909b 30568 12232 50640 #> 594 82505f2b-7b63-48d1-a715-a197ae3a32c3 26661 8693 7819 #> 595 57bd3249-bae3-4e13-b4d6-f86dbc4978e7 24801 7418 6166 #> 596 10d49d75-aa4a-4d26-b9b5-c74f4e3c9ac8 27839 9384 9020 #> 597 ff4c90f1-60a7-40f4-ba21-c7abe6800000 25370 10021 6508 #> 598 b773b001-b1f6-42d0-aecd-4ea3f279a2fd NA NA NA #> 599 70d87779-f25f-4dff-8c5d-82b818090c57 31009 12565 45576 #> 600 1a4b38f7-48f8-43b3-be9a-96671feb1fa6 33173 15167 NA #> 601 b99b9548-ad04-4361-b145-0c1942fdd89d NA 15268 NA #> 602 23ce41df-3f29-4f67-9fb5-b9778ac931f8 29265 11062 10665 #> 603 a5838673-7753-426c-a18e-5195fbfdcc37 32897 14830 NA #> 604 1b379101-6c8f-42d4-843c-9a3cc44993ff 29608 11426 10915 #> 605 7c4ff408-85b0-49b5-a3b6-ab299f149592 NA NA NA #> 606 00fdaebe-c8f6-43fa-addb-6a57dc6c5969 30826 12449 46238 #> 607 9eaecf8f-eb0a-49ea-a8f5-3f31c08e0fa6 NA NA NA #> 608 0db05e51-1e24-4f1a-9008-2e610e260c5d 32247 13840 47018 #> 609 20e8addc-8e4f-4c4e-937d-3788de9c1e6f 32259 14150 13026 #> 610 1d40e4f7-2991-4aa0-aa0a-1e7df79aab07 32896 14815 60003 #> 611 2f995e2b-1e30-4cff-809d-68c0366dda3a NA 15551 NA #> 612 46aab8e6-3ca9-4213-a6cb-87db90786f6b 7122 3874 2148 #> 613 096f3b4f-34cc-448f-9fb1-9a7f30a1ecdc 33181 15168 NA #> 614 ccb2f18f-1454-4ec4-a9ae-2d7f5c20f86f 27719 9769 8826 #> 615 d2a0e5af-3850-4f16-8e40-a0b1d15c2ce1 24822 7355 6187 #> 616 c8232b55-6617-4dd9-a7cf-cf14cd9a29ab 25798 8066 7089 #> 617 cf15be8f-9117-4531-a517-2b9c7cb3e9e1 NA 15416 NA #> 618 02880089-ccba-44f0-9d6c-fe6f12d15e5b 31662 12513 45753 #> 619 02af99e0-3c84-4d4e-937a-a9f29a02323b NA 15281 NA #> 620 90908a56-901b-466d-8689-943075da96fe 28115 9644 9205 #> 621 a7c0f9fe-fdb4-4fd9-a6c0-a11ef3527a7c NA 15308 NA #> 622 a21cba9e-32a9-494b-b2a1-d454b65872b6 33179 14881 45749 #> 623 a8342d20-9901-49a6-bc45-79f192418188 30232 11758 11874 #> 624 1c9e1cd5-8cb1-4a15-a2c8-3a0c0fd5423c 31905 13556 45719 #> 625 bbb63a36-8613-4675-8e5e-34200d245ff0 26817 8625 7975 #> 626 <NA> 30721 NA NA #> 627 dcdfc42f-2889-4c8a-8b65-b18de1a30e30 32663 14467 NA #> 628 8d3ac8d8-e18f-4485-acc6-55c79adcc2a8 29666 11364 11062 #> 629 a37a5bfd-b48c-4d8b-817a-d8ce7ca3592d 28548 10150 9593 #> 630 6d49d4d1-a254-48de-9f6f-eeecac82ad88 30258 11888 11900 #> 631 ba7bb51e-eb93-457e-91b1-5e44fc352206 NA 15722 NA #> 632 036feeb6-9a22-43c5-a8e3-7ac611d8ff49 32713 14436 60995 #> 633 48c56733-6644-42ee-9020-07bd2deba1ad 32576 13639 91465 #> 634 fd85786d-3900-4dc0-9b30-334ee30413ed 24070 6532 5619 #> 635 b2c4ef6b-4caf-4f4e-9cdd-3bd9f2e38d01 31651 12952 29726 #> 636 <NA> 31665 13242 NA #> 637 bf52ff53-35a6-4696-ac6d-3fa952dc2c87 26701 8807 7859 #> 638 9fd7fab6-1c26-418f-9696-e8dd0208d508 31592 12653 48162 #> 639 9c04ad60-9726-42d3-9836-7d95723f8eb6 31958 13531 47933 #> 640 48d7bc31-808f-423c-afc8-45c2c5dfa45f 28730 10524 9964 #> 641 8f249da2-2528-4f68-8587-4400c924aba4 31194 12627 41406 #> 642 3411b31b-9800-4f5b-a43f-4564c9530627 30827 12146 48079 #> 643 0063fe36-d8c2-43e6-8ab1-af890eb58cea 32841 14537 55307 #> 644 dc8a06c8-538a-4408-8a2b-1d9bfafb8a3c 30283 11844 11925 #> 645 bafe8df1-66b5-4200-8fb3-ff188c25a4e2 32843 14510 48236 #> 646 bc67a9f0-8c96-4114-8b46-4c97fdd577d1 32200 13912 48082 #> 647 422f272f-ca71-4fd2-a37a-d1e323c2728b 32256 14130 47906 #> 648 00a63233-ecb5-4415-94ef-723c6556b85e NA 15560 NA #> 649 0fd32417-8410-4a8f-8919-386c433bca43 27589 9264 8696 #> 650 052a93cf-8536-4a12-9831-84b27e8608da 28495 10228 9540 #> 651 56e70346-85a3-4a57-9873-da93a2690ce4 31711 12870 NA #> 652 78abb68f-453d-4992-901a-a5b1121e680d 28023 9961 9276 #> 653 0c8b0581-9ed2-488b-bcaa-ef783261dfd1 32011 13678 46618 #> 654 03cb0755-ecd8-4ef4-bf94-e9e1c1f9d203 30991 12881 46795 #> 655 8ffe9816-bbce-463e-a860-937253af6497 NA 15360 NA #> 656 338adc8a-173d-4b1b-a5de-92818bf96823 28399 10028 9444 #> 657 750877e5-ccdd-4072-9e1c-8d957e45b561 32053 13780 49431 #> 658 2cffbed2-3e4f-4051-b5b1-b6b2b7c484f6 29741 11278 11197 #> 659 23ad64a6-6102-402d-b985-4c8bb273b5d3 32938 14407 NA #> 660 5e11c306-6387-46ed-8a6d-3ff7a8210ed5 30173 12009 11815 #> 661 d5a270bd-6f41-4637-ae09-d5534f1a4d3e 31671 12906 49255 #> 662 12178d3d-49d3-4cb4-88b9-cc8f044bb684 31140 12774 49507 #> 663 b47423b5-2f13-4f95-a8c8-6a80436d11e9 NA 15643 NA #> 664 57a21028-b3a1-494b-ade8-7e94c7108823 31534 13263 50431 #> 665 72a42703-19b7-417c-87ce-344fd792f5ca 29244 10886 10644 #> 666 a6493c08-f70e-4aef-ab07-914625b9c047 29446 11036 10846 #> 667 0bf5f31d-e2fe-441f-845e-7573cc21b22d 30320 12211 11962 #> 668 972f93d7-158b-4464-b119-952f298cea52 29510 11473 10898 #> 669 656b68e1-651d-4596-8f6d-c97b4e4d9536 29295 10905 10695 #> 670 4ba33131-8214-45bf-9ce1-5ac08f1b68c5 27675 9609 8782 #> 671 7917b396-b7e0-4722-9a5a-7c608dd0a6ff 31562 12791 51394 #> 672 89c84a59-18ad-4aeb-8879-d4ba7dd1491e 31024 12564 49162 #> 673 cd15f1c7-fe18-48a6-928a-fa9336accb5b NA 15761 NA #> 674 f46bc3a8-dbcc-4d96-8d6e-50034429de29 NA 15507 NA #> 675 41d217b9-ec7b-4d72-8a0a-5f0e3a16b693 30216 11919 11858 #> 676 17d1f9ee-f65e-4c4d-bf73-a69b2fa17877 31047 12495 48457 #> 677 ddde7b09-faa0-4fc4-a45e-aa38c3905f6d 29273 11180 10673 #> 678 f94e5435-8cfe-411d-97c4-b5324f7f3a54 NA 15457 NA #> 679 3f4fe254-f18f-4b56-83e0-c37cfc72c7f7 32817 14684 42993 #> 680 2f1b4df5-a65b-4b13-8a86-81c03259e822 NA 15318 NA #> 681 1a7d431e-f97b-4631-a067-438ed2debe24 32420 14200 42782 #> 682 1ad3e535-2b5c-48a8-82f0-c7a933d250f0 30586 12183 12093 #> 683 42bb4895-bdfb-40e2-8119-f5b06611bf1b 29400 11114 10800 #> 684 34de0b93-9cab-4987-915b-25ef8480cae7 25842 8324 7132 #> 685 58359280-c012-46af-8b1a-358a24159421 NA 15185 NA #> 686 0ee41c7d-1afa-4ac7-ae6d-66e4da18052d 31957 13740 48953 #> 687 e738f88d-6a49-4efd-b53e-d031bc8c5772 31168 12571 62935 #> 688 915f567f-ca74-426a-8ed0-123c45f67baa 30178 11933 11820 #> 689 29f9a81f-f31f-4ace-80b2-cf5270c96611 31222 12939 NA #> 690 bd1f047a-978f-4643-b55f-f4d3b0719a4e 32002 13812 NA #> 691 acc143ed-53b2-49c9-81bc-16e6c98ffcae NA 15383 NA #> 692 d152b2d5-402d-47f4-a6d1-7870e5a32df5 32777 14661 34788 #> 693 ac012bab-43f3-4e8c-9cf4-0fb20ffa55a2 31904 13436 29407 #> 694 cbe52cf7-a9fe-495c-bd77-3a22a7f7208f 32885 14736 49681 #> 695 75741cd3-8b9f-445f-b24e-47c8c51de618 33174 15066 NA #> 696 3fec685f-b7bb-45a3-ad9c-e27c3fbc9951 30306 12186 11947 #> 697 c44bdac4-0732-4f94-8bae-df47ecec5656 33108 14735 43250 #> 698 05cb1d47-3517-4410-a61b-75adabbfb910 32735 14647 29623 #> 699 d7eec5c7-c401-485e-b0c8-fb0784c07b27 8497 5308 3859 #> 700 009c9b30-a6de-46b6-a3c0-3f51a4fc6997 32480 13803 NA #> 701 1374a32a-6215-4ba7-ba0f-a26d24535059 29063 10303 10110 #> 702 49379bb0-8f09-466b-86fa-62b4c4c73051 32850 14604 45419 #> 703 729fbed4-df66-4368-8954-62c3bee79cb3 NA 15366 NA #> 704 be44e57a-7623-4b1c-a6fd-7a30795bb8ac 32470 13720 46035 #> 705 3dec63e9-ad9d-4d1f-8ba2-102d9474df2c 31968 13544 28021 #> 706 746b7ba2-1ee3-4d42-8cf8-11bf4df581e1 27561 9436 8668 #> 707 897df186-8ae8-4eaa-8a83-90952b47ab55 32034 13783 47019 #> 708 165b77bc-9a63-4b1b-9111-70994af6c864 31843 13585 41651 #> 709 8048bdd1-62cf-4d01-8257-741a585dae8e 25733 8119 7029 #> 710 43c8c11d-0e5b-4392-bbfd-32cc2dc15cf4 NA 15440 NA #> 711 95cd7ce9-e92a-40d9-997f-c7b16d0efd83 32169 13688 46951 #> 712 8f107315-e78c-4183-bd16-e3e5aa35c162 NA NA NA #> 713 53d7b565-4811-4641-a54d-369312591457 NA 15623 NA #> 714 d14302ef-0224-4c92-961a-6d10452936ff 9406 7087 5066 #> 715 ba1032c6-bcbd-430c-afae-40898b9e83bb 32366 13663 29110 #> 716 3796cfdb-d6c9-4687-a803-23f2d5bcb54c 32235 13835 NA #> 717 3023ac10-4e7f-425f-9fc5-2b8e6332c92e 32671 14442 28022 #> 718 a8c3bcd7-69d0-4c5e-a876-6b33857942bc 29435 10882 10835 #> 719 159d37ff-bdb1-4b58-b88e-7b881f04aff3 NA NA NA #> 720 5bf3aeab-9430-4b76-a4fc-e973a0c8b3b1 NA 15223 NA #> 721 478fcd24-2617-41d5-a900-b272aa6ef515 32014 13548 45775 #> 722 e2f3af7f-dd17-44f2-a000-d487a29f0f03 32669 13964 NA #> 723 e601812f-ce24-4e99-bee0-e33c1e9014e4 30227 11698 11869 #> 724 7797f36e-87e8-4282-b6d2-bdb1774fc3b3 30161 11707 11803 #> 725 f7397b71-3756-4b1b-9f61-8618164a4098 NA 15304 NA #> 726 066512d3-661c-4f08-85c4-a124e5de03c7 33162 14990 NA #> 727 b170b3f1-682d-411c-ac28-b9d2a60e75a7 32465 13723 46157 #> 728 ca6c7b35-6ae1-4ba7-ae98-1f26174e407d 30364 12224 12007 #> 729 309b8104-8407-4365-989a-f726251714a7 33208 14524 NA #> 730 19858900-5c8e-49a7-ab02-34ef625724ca 28545 10462 9590 #> 731 15a4f552-ecaf-45bd-9006-aa5dda93bee6 31884 13809 47259 #> 732 609b07d6-c704-4aa1-847f-7d6b575cfc60 NA 14558 NA #> 733 7d3971b1-9b40-4576-a1b3-c3b0553aac7c NA 15250 NA #> 734 b2d98b60-b4b3-4610-81d2-2154c723fdbb 33171 14634 NA #> 735 3e2e74e9-18a8-4275-9437-b275db27e2ff 30290 11881 11932 #> 736 e87555f2-309d-4c68-aed2-aefbfc09cbf0 NA 15655 NA #> 737 a70ceaf4-61e2-4687-b77a-8d2f62eb1af1 32467 13997 NA #> 738 8f32cbe6-9c50-4bf7-9e68-057d718fb490 32469 13877 48110 #> 739 75a646ac-b2d2-42d9-91c7-3b00fdf71ef9 31223 12569 48192 #> 740 c272aa3f-4ef7-468c-ad4d-a4eed44a6ab7 33168 14588 NA #> 741 7963b029-5de4-4541-b00a-44eefe4349af 32703 14506 61211 #> 742 fa99e984-d63b-4ef4-a164-407f68a7eeaf NA 15183 NA #> 743 76a5edec-5ff7-49fa-a8ec-5768a372279d 29288 10822 10689 #> 744 88856dfa-45ce-4b6e-bbf7-4f8413ac89ca 29440 11076 10840 #> 745 ee79ad2e-353a-40cd-9344-c9d84f7e4b63 32438 13626 48080 #> 746 f28143c1-321c-4c45-a717-c154ee4cb6a4 30063 11398 11450 #> 747 43d504d0-c5c6-4dbe-b15b-5b856919755d 30582 12323 NA #> 748 671d2fd7-41bb-457a-8e93-904ee7d94eb1 26745 8706 7904 #> 749 7475baa8-7662-49be-9b41-526450f28bfc 32078 13535 NA #> 750 bdebbb66-ceff-4cc9-b74f-00e14be21530 29752 11242 11094 #> 751 2303e1eb-fa31-4cfe-b93d-7c2e1b683baa NA 15275 NA #> 752 d962a98d-cbba-47e0-ad20-dedc094a1822 31370 13411 28990 #> 753 54feeb01-a1d6-4313-b8b5-5663f698b5bd 31878 13485 43254 #> 754 5b9acfe7-f166-4a55-85f6-a654799b08dd 28972 10423 9881 #> 755 a5780ea2-376e-4187-8be1-7c7fd2d0a12f 30286 12008 11928 #> 756 aefdc3d3-0851-4782-b298-f06f137d42c9 30974 12572 49558 #> 757 07dbf3ec-0d6b-42f1-a2e8-7dd437339417 33306 14716 50394 #> 758 7ca47182-01e0-4eee-9590-de9af571488c NA 15517 NA #> 759 3d405d21-bfdd-4495-afe3-9e96d1972ee2 31023 12836 49397 #> 760 37b067c0-393a-4924-9f0c-189cdca466e2 NA 15671 NA #> 761 1bbe7ce0-3707-4d4d-b8f6-7577008f1763 32714 14507 NA #> 762 bea5ccd6-b05b-43f8-975f-396399349a42 33310 15062 34207 #> 763 8c824157-eb33-4378-bf19-6c738a186ceb 30204 11997 11847 #> 764 4a7d7bfc-9fe6-4869-a741-d5d17b177edc 33301 15132 NA #> 765 f0f3547b-f556-4aba-9b06-03df7b11e4f3 32969 14878 NA #> 766 9b96ef63-04bd-41ae-b59c-acc0f2561d19 31063 12625 49206 #> 767 ff01b89c-fe58-46a9-bc86-0bec8671f428 NA 15363 NA #> 768 32b601e7-4491-479a-895a-2f96add83e09 31951 13537 50458 #> 769 8b44e3b8-81ae-4f02-b598-965872d12816 30644 12057 50587 #> 770 20395574-a767-44be-8e79-e1b15eef0f11 32492 13859 50290 #> 771 d0d2e26b-f5a7-4455-86b8-096508ac8eea 31997 13523 44615 #> 772 016d31ec-9b32-47e2-801b-9724c0a30f62 27529 9243 8636 #> 773 5f313f6e-4a5b-495b-8442-176c145f68c4 32834 14409 NA #> 774 60c63a9a-f44c-4f12-b724-f65bcb8cce77 32503 13851 38297 #> 775 a85a0ba9-674c-4f37-a944-474fc6cdf557 30114 11914 11756 #> 776 20c539f1-acf9-4908-9981-a3e680676ca3 30483 12615 NA #> 777 dcc7a0e1-05e3-407f-84e1-fdedf8eecbbf 30139 11928 11781 #> 778 ed64d301-6165-4c7e-959f-0dedf5cf76a3 NA 15670 NA #> 779 a2f38e33-faf5-44e3-ba20-4e5fc3733d62 31461 12631 NA #> 780 3d78f1f8-958d-4eb4-a238-442aa9f22333 30148 11689 NA #> 781 67760ee1-c969-488f-b449-b8c37e7e32bb 29356 10907 10756 #> 782 445efcfc-1646-4823-89f7-8b6005266d13 32758 14353 56734 #> 783 19601aa2-b4de-460c-9b4c-ed661007053b NA 15219 NA #> 784 fc28047a-18cf-4431-9e1b-317db75c4495 27056 9118 8042 #> 785 82fcb439-d5da-4f6b-a68c-17778fe19ce4 29337 11019 10737 #> 786 252da24d-9eb7-4871-ae76-199918f412d8 25847 8150 7647 #> 787 4a4f2ec4-b750-417c-8fa3-f1ec6386f032 NA 15590 NA #> 788 85e3651c-cde0-48ed-a5ea-93477a1fe99b 31510 13182 46441 #> 789 2c35ed5f-7317-4776-8ee7-0438e0286508 29410 11068 10810 #> 790 f6ee6a50-24d4-4401-9924-c788aa8cf34f 32289 13884 NA #> 791 bd49c4a4-1314-45e1-bff5-fc67ba41d1dd 31310 12712 NA #> 792 12d28404-63e1-432f-adde-c93631a5c39c 32417 14254 NA #> 793 4b99ead5-0f79-4899-84a7-075c08890698 27911 9943 9030 #> 794 d40b2cf6-59e1-4af6-a91c-f2206303564c NA 15237 NA #> 795 0790a8d6-5316-4204-91a6-8508ca48973b 31987 13609 43190 #> 796 bcebf5f0-0224-4cc8-9a78-1aefd55bfc87 25029 7606 6394 #> 797 c362b855-a313-4b46-ab26-a82082e1e8ee 30345 12151 11987 #> 798 7ca273b2-a4bc-44c4-a670-98d86942adb5 31459 13145 34845 #> 799 894c783a-ddcd-4dba-b337-06d7db037a6e 32767 14517 57942 #> 800 14b52c32-e9f6-4b64-aa22-1d96bb20cf84 30274 11983 11916 #> 801 c7f8e21d-25fa-4a9b-b4ca-ac65f548031c 32377 14168 50780 #> 802 513aad03-6d8b-45cd-96ed-ad0d56e942f4 NA 15505 NA #> 803 36b878c8-7d53-4e90-8403-6f67fa911a2e 31175 12962 18413 #> 804 471db686-fa8e-484c-8525-0169b0a8f773 31912 13614 12666 #> 805 43a74ae6-ddb7-405e-8ccd-69d14da6c374 26068 10024 7336 #> 806 0207678d-d682-4916-ba20-74a218d5b6b1 27563 9421 8670 #> 807 e3a0e17e-fb75-4284-b89c-ddbc758f3d20 32414 13995 46301 #> 808 2b6a749f-5e78-484f-8a87-92c6da991b19 31136 12798 46131 #> 809 e1f9e986-6deb-4302-8478-eb64abe7aa24 31183 12850 46673 #> 810 c5ae93f5-f293-4e9f-89a0-6d8bda64ee1e 30902 12290 39676 #> 811 955c65c6-5557-4525-a549-3fab45765cec 33157 14422 NA #> 812 8f0e2ff1-fa77-4049-aa94-159a37ed5c51 32021 13915 28671 #> 813 a21c5573-d9eb-4c4d-838a-12b63c513a1b 32830 14552 46752 #> 814 9a147206-ba5e-49b9-801c-a7f6832be2c5 NA 15498 NA #> 815 b74ad3e6-b540-4f72-a4e1-3ee6d73c3163 31182 12702 34397 #> 816 bc672876-7d12-4277-a149-88d20bb4668f 30965 12903 NA #> 817 543deccb-0e8d-42ac-b213-dfd458fc0602 32680 14456 58467 #> 818 ffa1d197-25af-43a9-ae61-05ab20a0a5be 26909 9575 8051 #> 819 491a4774-9f2d-4b70-9933-2c7c89abbeba 33312 14694 NA #> 820 0e7d7ddc-6515-4034-8857-5ab9da6b7c25 29242 10977 10642 #> 821 bc63567a-81e7-44c9-a85f-8aa9532ab4fd 32277 14147 63303 #> 822 f5346ba2-69df-444c-a1f8-52aeacbd6ec5 31452 13140 NA #> 823 d11ad65e-9d24-4157-9f5b-ef8495bcc791 31078 12818 46452 #> 824 1b3d350a-478b-4542-a430-d12cc96adc22 26483 8065 7323 #> 825 30198d30-9769-4e10-ac86-b4c91d940802 30971 12619 46518 #> 826 0752f1c9-fc3e-44bc-b6ad-03f8f7f4191c NA 15266 NA #> 827 27156b0b-e82d-4d02-8a04-ca1891d77110 31145 12555 34761 #> 828 ce185a29-d0ff-4519-9133-e01c691ead57 32569 13443 NA #> 829 3aa50696-ee45-41c3-b5d1-dda4c81feb05 NA 15669 NA #> 830 4bd60b33-9fbf-4156-ba2b-8264ac37b418 31005 12886 45783 #> 831 f46e812f-14c6-4af8-9316-01a880adebc5 32608 12678 45734 #> 832 42235297-fa2d-4f51-ab63-608797d6cdfe NA 15791 NA #> 833 0ef0d0ca-2d2d-455b-ab63-a20c01303e37 30199 11739 11841 #> 834 f2c0b843-ea1e-43a1-a007-ac01c8940240 33019 14901 NA #> 835 017375c1-6522-43a8-b099-3ea0d15c95c9 33305 15038 NA #> 836 f58a5899-8b78-46e8-a29a-ba6273b7d872 32785 14576 26394 #> 837 90c2a93f-d837-4e1b-b57c-56648903a8db 29315 10748 10715 #> 838 da9fbb26-ca12-41a7-955e-a8abe04d19f0 33362 15172 NA #> 839 013477a2-0271-4441-a0af-9bc25924a2f6 32273 14131 94365 #> 840 8f86fcea-90e8-49ea-bc78-5c7659313e57 30142 11734 11784 #> 841 501aa2d9-4202-40e8-810b-92cacea26cd7 31561 13247 47206 #> 842 2d52ede5-1c65-4f18-a8ac-9306192ef625 30531 12359 12739 #> 843 bdeddbb2-2b56-4b46-915b-19eb71fbbe45 31462 13138 48345 #> 844 6259f62d-e16f-4369-a3be-ca02f79f3026 30246 11879 11888 #> 845 354dec38-b88b-4ba0-8974-859123f27c45 27540 9255 8647 #> 846 cc275b47-1dfc-4125-80de-8781f773fe1c 7448 NA NA #> 847 6f124753-5c6c-454b-97c7-0f9b4d14e7c2 31769 13418 26104 #> 848 06e41dc1-d5dc-4bdc-8fc3-e0d7c3a99ac4 27591 9454 8698 #> 849 924edb03-29a9-42ae-92dd-ef7e8a498095 32857 14457 61439 #> 850 4dcd8f79-23db-4555-a4dc-2eebd409e508 33087 15111 NA #> 851 7e34053d-00bf-4f3f-a464-329c8f5057d0 29406 10830 10806 #> 852 d0780152-5d3e-4add-99bd-e330c258df10 32143 14049 63664 #> 853 98374ffa-8c40-49ce-bc85-745ad7d74f91 NA 15334 NA #> 854 95f9c4fe-b5b0-4075-bdd8-f5b458373df6 32141 14048 33158 #> 855 f1236815-5ed7-4bab-808f-700c4516fd7d 33302 14571 27003 #> 856 f5b61bef-6214-4d70-9a34-d58da29ce2d5 32816 14485 41178 #> 857 dea8f688-602c-4b48-946f-e634fb81d737 26654 8631 7812 #> 858 32884cc4-ff90-42d0-b02b-f9a7df6ce6fb 29443 10936 10843 #> 859 7111b5cc-d74b-416b-9c93-c2fdf7ad193e NA 15216 NA #> 860 cf93a57e-129e-4e81-8d40-d8772ee0403c 32522 14223 49466 #> 861 02753dc9-52ac-4ed1-8086-7894d35a3bd1 32721 14389 41817 #> 862 6445ca00-93b4-46d8-8ac6-451ae70a75f5 29423 10921 10823 #> 863 3efde273-cfbe-4485-9ef1-d40ea147f99f NA 15557 NA #> 864 af433e33-5d77-47fd-b6ef-70815e6aa0a1 30450 12649 47970 #> 865 884b6094-1ebd-4b72-b957-ad33a3ab984f NA 15549 NA #> 866 6d62aaa2-fe41-4672-941f-7314a0b9b367 28289 9842 9243 #> 867 7ff68f1d-204c-4d49-9179-ecb2514094dc 30205 12024 11846 #> 868 <NA> 30782 NA NA #> 869 e44308c4-2505-4b79-855a-18d83d407fc5 32793 14708 NA #> 870 f9c86838-11e5-4582-a03e-c15e02b2013c 30262 12019 11904 #> 871 708e045b-17fd-4f81-87e3-8686b165a278 29478 11088 10878 #> 872 43211a61-4d89-4982-bbf1-9b932316b571 31733 13342 51220 #> 873 dfccabc2-00ba-4eef-9686-1e1aff2f1dbc NA 14362 NA #> 874 3ec4f630-592c-4848-a76c-c30ecc090ecb 29305 10957 10705 #> 875 2e9ef3ac-eca5-4eb9-a41d-f404dfaae460 32045 13890 49408 #> 876 3cb26a5c-9c90-46ad-b539-e29ad6934e30 30128 11695 11770 #> 877 b7f8bf4e-a1e5-443e-8deb-3916c817a1a8 NA 15321 NA #> 878 d7068799-55b7-47c2-91d9-0e532957939e 30193 11902 11835 #> 879 2e9e0b4e-d7f6-4d9b-850f-e1a5a8e17a5b 33103 14920 36346 #> 880 3e3bd10a-6462-47f8-8938-42518781d060 27562 9344 8669 #> 881 854d07f2-11cc-4dc1-bdaf-e8cce2c89a75 32849 14582 43982 #> 882 1df2f078-18d8-4bb4-9d6a-9ba4bcb126bf 30255 11951 11897 #> 883 5c913725-c52a-4633-b3b9-efa6a9d2cf05 28448 10168 9493 #> 884 63cef4ac-6e22-497b-9f8c-fbccd0694d17 27662 9415 8769 #> 885 a28daf84-6354-49e6-a047-1bc549997f29 31086 12548 48557 #> 886 22c50029-dccc-464e-81fe-236c34b167cd NA 15605 NA #> 887 c6c5ae5d-59c6-437d-9768-34e377fddcec 31890 13514 44519 #> 888 e627dd8c-8b33-4a26-829f-5aeceefe57f9 NA 15611 NA #> 889 5bc24739-494e-4d0c-beae-e15231743bcf NA 15284 NA #> 890 1fb9a153-f1e0-4396-81fd-c3b1d331338f 28771 10592 9732 #> 891 fda10175-38e3-4678-a94c-ccd6008d40ec 32752 14451 28094 #> 892 c4e6f302-b6a0-431d-a1f0-25efa2e7a8c7 NA 15661 NA #> 893 fb48038c-8f33-47a5-abb4-cda19f66c853 33099 14658 NA #> 894 5a20a439-bebc-4ef7-8b9f-30e1d677a26b 26535 8497 7572 #> 895 34e32cca-13c4-4a09-93b2-569cddb3c12e NA 15654 NA #> 896 5a09de36-5fac-4053-b3a0-2b56d2519a9b 32668 14808 NA #> 897 93d11276-45d2-4168-a9b7-df0cbf12dabb 25881 8179 7163 #> 898 b6ab79d0-cbb6-4e2c-8a9d-2e4a092325bc 30989 12479 50950 #> 899 0bf6b11f-920a-4ced-9a69-0b4afc5df36f 29268 10801 10668 #> 900 bc8260d5-231f-4337-9979-7c1c40bc6cd0 32205 14068 50675 #> 901 41bc429b-f4c2-4edd-bbe1-9a36a178caeb 33105 14610 44722 #> 902 fc833ad5-955b-4129-9280-63d8eda84df2 33106 14744 NA #> 903 88cee4cf-92d9-4ed0-aaee-cc866bf3785a 31291 13256 NA #> 904 b4eab0bf-9e1f-43f8-912f-d33ac517bc46 NA 15182 NA #> 905 cc9c2006-e72b-4073-afcc-69c187cb28b7 29251 11143 10651 #> 906 00cc0e57-b433-42e3-bc18-f7c4bc941a7f NA 15208 NA #> 907 4a78d325-99ee-424c-bf79-33dc1bdada74 NA 15346 NA #> 908 3128aa52-4c62-4096-bf31-bef0fe8d6abc 25549 7990 6586 #> 909 5a001d28-b271-410a-8c91-3159a6096258 27544 9266 8651 #> 910 0c827cf4-d8ac-4efc-b030-019baa3c7216 31922 13509 41714 #> 911 96d94c76-9563-460a-91e5-47b99f29587b 31020 12458 46216 #> 912 2b72cd67-0354-46fa-8974-1758b48be387 31284 13255 NA #> 913 b620e5ee-840c-402d-97be-9b2e0405e1f8 32207 13865 46233 #> 914 27ff4c5c-e34f-40a9-8dcb-b568cb52ae08 NA NA NA #> 915 9b1a3246-4f3b-47f7-9bf8-a33d6e454723 33093 14693 39461 #> 916 79c0e337-bc7b-4abc-9660-0d919251c83b NA 15269 NA #> 917 e1705a56-ae89-4af7-baac-4e72b6f7bd7a 32202 13873 25018 #> 918 fed820cc-3104-431a-b38c-efa192216035 30651 12301 46987 #> 919 5478c682-15ff-4932-97f3-6725c413c2c1 33183 14946 NA #> 920 c3f2ea91-98d6-4d37-b5bd-3c7ac07e5b24 24796 7349 6161 #> 921 f924544a-115b-455c-aca6-d5ee1d45401c 31287 13250 NA #> 922 2ff5e7ad-4ac1-4e26-9572-69bef348b1bc 28854 10260 9719 #> 923 d723ebff-0e9d-42f8-93d2-fe0c02252de8 26578 8560 7636 #> 924 48efc038-96b7-4c63-a33c-41f6abe6d3de NA 15206 29601 #> 925 6ee71282-c2b8-416a-8de1-29c0185d9b7b 25780 8251 7072 #> 926 4595c8ea-9d85-4504-8a34-2c8a02349105 30788 11841 12324 #> 927 bc893c74-874d-4d7e-b105-f52e454f6a40 30779 NA NA #> 928 c744ade6-bce2-4c71-8f1b-742cb183c8eb 32901 14832 34311 #> 929 86197778-8d4b-4eba-affe-08ef7be7c70b 29369 11008 10769 #> 930 56073e7b-84ca-4d4a-a2e7-1bfc0277e8d4 27742 9776 8848 #> 931 33b0227d-4c21-4e71-b4cd-be35f7db9123 31960 13590 27126 #> 932 3ea081e8-a3c6-42c8-8deb-42a9bde10e98 NA 15660 NA #> 933 bba755a2-63b6-4ac1-b806-0609816135de 33100 14657 40693 #> 934 bef8b2b4-78bd-4a4d-bb5d-6b55ada9ef6a 29238 10736 10638 #> 935 026c284d-73fa-4391-9534-291bd12101ab NA 15299 NA #> 936 c3b8df6d-c6b7-43f0-a902-fbb7e70fa2e3 NA 15326 NA #> 937 08d5875c-83aa-4ee8-aeab-dc3f7ee727e0 NA 15563 NA #> 938 2dcc8e56-ac32-4774-a011-b1e65ca73786 30267 11899 11909 #> 939 43e8a6ac-d451-4dbd-b145-797764f91494 30784 12179 12320 #> 940 8caec1b4-e0b6-4a84-b8c8-617d6e91ef6a 31107 12514 47304 #> 941 0f369885-8ecd-4ca0-a3dc-df8530a0db6e 33101 14478 42266 #> 942 82a7e1ff-019a-4f4b-aeb6-c41420e44891 31777 13378 48078 #> 943 b67f1dea-6093-4109-8c0a-ded4ff0e1984 NA 15572 NA #> 944 a964f59b-af2b-48e1-b64d-c376cc1d8c28 31178 12773 48170 #> 945 36f62824-1cdb-4e9e-8a11-55df97e562b9 30352 11849 11993 #> 946 00f88be8-45f9-4237-b2b8-3271ec790d07 28392 10055 9437 #> 947 3860693c-99a2-4484-99db-1d43e3ff7fd4 NA 15559 NA #> 948 9e174ff2-ca0e-4e6b-96f7-90f0088f7edd 31051 12810 26075 #> 949 4a8fee2c-2870-42fa-8d71-429d36e057d2 32504 13592 47912 #> 950 c9ef678b-959b-445b-b32a-81c767c8ad65 NA NA NA #> 951 a72ea15b-5199-4101-a300-846e1c655add 32687 14411 61570 #> 952 09903f88-830a-4db2-8de7-1647c1f2eb6c NA 15577 NA #> 953 e479ff14-6e5f-42a2-8b05-bca76c62111d 33094 14441 NA #> 954 3b6aa74d-d3a9-445f-8415-254d6cabe7a9 26886 9033 NA #> 955 52d32434-c0ad-4285-9f0d-506972583fbf 31281 13072 NA #> 956 3bedede2-77a8-4dd7-bc43-137c0ff08153 NA 15244 NA #> 957 08df3736-14f2-465e-af74-cdcdebe19a66 33095 14642 NA #> 958 8753f2f2-16df-41c8-b25d-c93ada64d78c 32753 14515 41924 #> 959 8bd08ef6-5d55-4fd0-b7db-1489d88c6ebd NA NA NA #> 960 ec606880-b9d9-4765-b70d-7f249e06c2aa 28376 10667 10247 #> 961 c63eb787-fa1f-406b-82a1-2eed0a65b58c 28438 10408 9483 #> 962 8a7fa9bc-f589-4458-9a58-8ac3432a3df9 28705 10429 10000 #> 963 9f006140-21a8-4980-ba48-4c2ca940936c NA 15184 NA #> 964 eaacee31-0a3c-4f9d-be85-86490ae16f6b 33293 14599 42189 #> 965 5f871c3c-9df8-4869-a967-9df253747a73 32097 13589 44429 #> 966 054f4c09-6bc9-49c9-a466-80abd2a39e74 27542 9272 8649 #> 967 34853ce3-5e1f-4b23-b730-6f51444291ac 32932 14738 45258 #> 968 239ed12d-2946-496f-9d7a-9b4df266b324 NA NA NA #> 969 bc399631-6a3c-4515-9f8b-acc9a08bc434 32747 14711 50327 #> 970 aaa9228d-7399-4b53-a2e7-259438bd2959 30271 12016 11913 #> 971 5c753156-6ba2-4e25-9fbd-492c69e06ff0 NA 15403 NA #> 972 c2ee7e58-321d-44b6-9db8-f333b75b3a1b 31026 12782 51576 #> 973 155980c2-e289-48c4-a047-09c08d0ce7ae 32164 14198 51189 #> 974 03773859-cfd5-44f0-be0a-8ff82b6055fd NA 14998 NA #> 975 f7b49d9d-2ce4-459f-8065-fa3b52d28069 23995 6622 5545 #> 976 2df474e5-7117-4650-8d53-34b3fd0f1bbb 29332 11174 10732 #> 977 5c1cb09e-be4b-43e7-b35d-98db06cea707 NA 15220 NA #> 978 a2f1a595-4454-465e-a190-0312a2ea3acc NA 15382 NA #> 979 92c8bc67-756d-4e3c-981c-3df010e15e2d 31903 13451 28075 #> 980 20d66704-9c12-467f-a6ca-9cf9dc00730c 27763 9785 8869 #> 981 440bf3a1-d373-4f11-b702-26fb8f62c035 NA 15608 NA #> 982 74ee9029-96c6-4a9b-bd20-1b2ba18c14b5 NA 15481 NA #> 983 8d36f034-40f1-48e0-9f3a-789d8876327a 32194 14064 NA #> 984 a1329bf2-4f70-48db-9785-3cd29fc7b56f 32578 14287 94382 #> 985 9492f51a-22eb-465f-b3bb-aaee81ce76f5 28982 10793 9891 #> 986 a8aedfa6-828b-49d2-99f5-9d5af2424a23 NA 15748 NA #> 987 29815a83-1d6b-4e1b-b1c6-9bf44e7166c9 32254 14144 94361 #> 988 b22c91a2-e11c-4ca2-8dd1-54c6bce8225c 32425 14204 26229 #> 989 e1b3b636-39b5-46cf-aa7f-216b09ead7e6 27748 9400 8854 #> 990 ea01fa3b-cebd-40c3-9de8-3dc7f5e44e58 32765 14602 43069 #> 991 e5870f5e-f9b2-48a3-97ec-8d12fbc91f3f NA 15744 NA #> 992 b556a98d-16aa-4a0d-9134-1b59c46cc640 32225 13713 47121 #> 993 64321852-52e3-4ac0-9b3e-898f0b1e500c 32851 14624 41339 #> 994 66d4f0d2-76db-4b27-90d6-565bb635abb4 30530 12279 NA #> 995 570c17a4-c14a-45a0-afda-93ef879b2604 31873 13545 47008 #> 996 22b2030e-ec57-4f96-b722-57b3e495c83d 29329 11042 10729 #> 997 6444feb1-f5a4-4b45-9a45-79308a4445fd 27120 9948 8437 #> 998 faf72326-5e36-4bdd-9843-5d2a6b4ee6b4 NA 15422 NA #> 999 872967b4-d1ab-4b27-82e9-c40774fc995e 31184 12964 50089 #> 1000 7f35aa83-30f3-4997-b5de-11b0c19e90cb 32220 13907 48567 #> 1001 cc9528c4-3a18-4d3f-8d8f-cfef4dcd2d38 24789 7421 6154 #> 1002 c69c8d25-f81b-4240-a361-6bb328ad9474 30315 11943 11957 #> 1003 f8f0760e-8f04-45bf-9371-fa33c945bc1c 32848 14757 NA #> 1004 92e78492-1e80-453e-ab31-862e12ffe7d7 32134 13973 49805 #> 1005 db60d5c7-835f-4dac-b0ae-843a99882f9b NA 15249 NA #> 1006 a473e7a2-8f31-43ad-b87f-c39e6635f1b0 31076 12968 50720 #> 1007 4c1b3190-50e2-4918-8e3b-7bb012f8b304 NA 15338 NA #> 1008 ccd34e5b-38a5-4633-8279-77e3a47f5424 32222 14081 49722 #> 1009 66313049-299d-4e58-beb9-8e051ab6548a 30975 12877 48526 #> 1010 cc69eb61-a6f3-4d24-970d-c31e4dfcf6b8 NA 15707 NA #> 1011 abbfa41c-ccb6-4378-b75b-28ec7d54e277 32923 14731 37724 #> 1012 e9b50746-32c9-478c-a8cc-3f037e762ecc 31792 13391 15267 #> 1013 04d09b84-6c99-4d99-a1f0-c30d3360ab52 32666 13699 30352 #> 1014 291aca07-a3b7-4666-a8c0-2e0c01024de5 27217 9935 8530 #> 1015 cb4059d0-1b9a-437c-a8d8-b33f8a327e54 NA NA NA #> 1016 dbed6759-8ce2-4f1b-8757-aab4ec66dcc9 31382 13954 30097 #> 1017 726c066b-4ce6-4af3-85b2-7ec34807166a 27707 9442 8814 #> 1018 c03a2bf7-49d3-48fc-9062-0a2937a17647 32622 14201 46284 #> 1019 <NA> 30813 NA NA #> 1020 6a213f8c-74e1-4901-8841-bf5730a23c4b NA NA NA #> 1021 16423bd0-6239-454c-9ec8-f90477de17b1 32188 14065 46669 #> 1022 248b6e0b-bb1b-4dd7-8eb2-b5f7e98c77b1 27668 9362 8775 #> 1023 86c5152c-c823-4127-97e6-2fedf532e8e8 25822 8304 7112 #> 1024 67e5566c-73df-43b7-80ae-3d50d68ac189 32224 13601 46247 #> 1025 09fab9a8-b0af-4580-bf55-5c9167912f89 30133 11779 11775 #> 1026 80b403da-381f-467e-883b-5b83ac02aac3 26788 9022 7947 #> 1027 425c2dfe-851b-4c18-babc-59bbcc74cea1 NA NA NA #> 1028 d4cb52a9-f6b4-42ed-b40b-27bff5f1eea7 27560 9245 8667 #> 1029 94325301-e0ad-4a9f-a0e5-ffec0f529be3 31874 13736 39517 #> 1030 9ab44516-2a26-4049-b630-66539c7a5dfd 32221 13620 46487 #> 1031 d4f0aa89-6309-4977-b779-7501eb8c8508 32502 13559 27436 #> 1032 53022661-b6bb-481b-9ce8-b603e521925f 32926 14656 45854 #> 1033 01968dcc-836d-4a44-8953-cfff01e9fbee NA 15394 NA #> 1034 2af6db68-3ad7-4699-8f86-0140fffce577 32966 14396 42425 #> 1035 0f8ccece-d663-4069-944b-f318f64c60b7 28403 10064 9448 #> 1036 82f459c4-bf23-4d60-9eb6-b062994f5517 31041 12892 45747 #> 1037 889dcdc5-3d88-45df-9677-5ad7ff87c011 NA 15306 NA #> 1038 9424475a-fba7-4bfd-b79c-f372ad28082a 31228 13067 31615 #> 1039 bfdeb053-b503-4f35-968b-78d8a9997473 31381 12684 49154 #> 1040 582dc00e-e7ec-4ca7-bff0-f7b1d604017b 30287 11897 11929 #> 1041 5d0fe7a9-51a2-4e72-b2ea-54721b44db71 NA 15564 NA #> 1042 cdc98acc-9eb6-4b44-81bb-61d7b8a3b55f 31852 13426 42388 #> 1043 617aee8a-70be-4bdf-9a71-2e2b74e647e6 32788 14369 41933 #> 1044 92c3ccc0-b808-4852-a65d-c2c7e9118cef 32191 14062 30778 #> 1045 ede1aabd-6fca-4ef8-8a90-3bd5940548f9 NA NA NA #> 1046 bea00842-e4db-4955-857a-ea8d4a0e215b 30263 11893 11905 #> 1047 191847bd-6b12-4824-a832-29cddfffb046 31404 13100 NA #> 1048 91aac0f7-60ed-4333-8aee-15bd56764464 30219 11852 11861 #> 1049 b55ae5ba-593f-4560-9cab-14e10698e01d 31010 12586 48164 #> 1050 26a0f841-902b-4ad7-86ec-43bb0bffae6f NA 15211 NA #> 1051 63cd5827-1001-4976-94d2-c6fac7678c51 NA 15521 NA #> 1052 eaaa4a61-c2a7-4926-8e9b-3ec71be2f991 32685 14458 61103 #> 1053 ccd5239f-e8ba-484c-acf5-af0bd9f6dadc 31083 12654 45416 #> 1054 2a443351-5e63-4a49-819e-912b51a745f2 30511 12061 12087 #> 1055 0830e644-2d6e-446b-9da6-57d7e3472fcd 32929 14593 34045 #> 1056 40a9d668-269b-48ec-be2f-128d89aeb20f 32189 13919 94356 #> 1057 8cd3d1bb-5b04-4351-bd03-4b4f9b9e33e4 32922 14621 42134 #> 1058 89338a12-65a8-4670-ac99-97281732ff79 32716 14462 61590 #> 1059 f3debe3e-27e4-4c4a-867a-ec537b5a7826 NA 15405 NA #> 1060 379f98b1-2f12-4f9e-8332-61cb930ac97a 28279 13530 91248 #> 1061 8fde3481-68c2-43c4-a9d4-de73f0a259e3 31547 13272 38709 #> 1062 5dd5a4bf-08f1-46e1-bf31-eab422cef869 29362 10911 10762 #> 1063 5b6c34e0-6b28-4c60-b31b-0aba6290c546 27639 9444 8746 #> 1064 3e4c9bb7-6ff1-4bf8-bc25-cd6717ddf568 31978 13744 50533 #> 1065 790ae305-a3ea-4a98-a13a-31dacadec04e 32673 14424 55674 #> 1066 2f01f1dc-8e8c-4d74-95d9-1b36b42257fb 29729 11446 11149 #> 1067 872bbe18-ea66-415c-b556-6d15bda05b0e 29077 10706 10073 #> 1068 3565220d-9fa0-497d-9fa1-e3bea7c302e8 32609 14316 28605 #> 1069 1eb8ad96-b4f3-461e-81a3-0a4e08844f73 27007 8651 8483 #> 1070 965df459-3f21-4a93-9a99-15559eb977a4 31634 13195 50535 #> 1071 91fbc46e-2757-4169-bdfb-9a87522cba02 NA 15762 NA #> 1072 fde0f790-29a9-4212-a357-17657055c1db 30265 12014 11907 #> 1073 5cb6a7f0-892e-413a-a4fc-a7dbc60ff478 NA 15682 NA #> 1074 b80be347-fd65-4a40-bdad-e11c75bded39 33190 14849 NA #> 1075 673f1e54-2536-41bc-85b6-aefc70b69a22 NA NA NA #> 1076 1e8293b4-25ec-479d-83b3-ef231d84ebca 32218 13863 38567 #> 1077 f90ce4a1-b876-4114-958a-e90768761749 33189 14699 NA #> 1078 2786ef4a-83aa-4408-ac82-cee3e5c86e71 NA 15683 NA #> 1079 6b8cdb8a-db1d-4a3f-85dc-37cedef65c0a 31052 12747 51266 #> 1080 cae34950-dcb7-4021-ad21-0a8ae7cf47f1 31913 13805 51336 #> 1081 ab47d1ab-af14-4054-ace2-0cd2fc1def85 NA NA 26617 #> 1082 461b6e57-a2b0-4648-ab1f-b3ca4b111fe3 28732 10526 9966 #> 1083 8c348caf-34d8-44a8-a781-fee8064ae258 NA 15261 NA #> 1084 be8e5962-f2d9-4316-9fdf-212a95dbb590 31258 12725 49166 #> 1085 e91734d9-8e7d-4e55-9027-e7c338cc809a 32737 14448 44152 #> 1086 30f9ff1e-e66c-40b4-b6a0-46186de3b932 29794 11055 11162 #> 1087 f7d0d3ea-6de1-4adc-b431-166c6dde9cc9 30135 11918 11777 #> 1088 5314292d-aac5-4fe1-be7e-8f2ddf2d45a8 31949 13843 36248 #> 1089 b53384f0-6eb8-4d50-80f5-a2f955183317 29867 11156 11250 #> 1090 57deb6ba-ce26-4ccc-a859-adf0564fb78e 28489 10323 9534 #> 1091 cdcd43ee-b31d-42d3-adcf-8afb4458976e 31523 13420 28474 #> 1092 dcd1b7b0-5768-4b66-b760-30dbcfd04b93 31572 13280 48759 #> 1093 564fdf8b-c21e-4889-b371-e8ca079ae9b7 32905 14833 NA #> 1094 865d4bf9-5d13-42a6-a8f9-a4e9a93c7375 NA 15522 NA #> 1095 30119d63-584c-4fd6-95aa-67b7af4998f5 25724 8152 7020 #> 1096 0670801f-0ef3-46b6-ad6b-62475db6b787 NA 15195 NA #> 1097 00a28b92-3567-45bc-9fdb-61276dc57755 32867 14719 57037 #> 1098 dcb885e0-9281-4ff7-b379-b89349812f3d 30769 NA NA #> 1099 e4114f9d-80da-4e39-bd12-cd9cf2c0d720 31084 12821 48386 #> 1100 c3711453-41bb-4c2a-bad4-72d08f2effb4 33365 15180 NA #> 1101 6c8c270b-7412-452a-a221-7ec5600cc2a3 32461 14213 48981 #> 1102 e03775ef-3287-476c-9386-ff16ea31d7b8 26846 8969 8006 #> 1103 344f10b9-b272-4f2f-8d1e-468f38f59f5e 32061 13573 36493 #> 1104 da8694f7-3e30-4500-b890-bd28c7bc0ddc 31480 12662 50714 #> 1105 452520cc-4921-47f1-8d6a-55f7cee8bb0c 31207 12828 27413 #> 1106 69296b92-561f-4b57-b1db-c97f1431b0e8 31629 13192 NA #> 1107 cd0f4ef0-9914-4125-be4d-804a72350ceb 30337 11831 NA #> 1108 f0c7de3c-9e8b-4c3d-b42f-985f29ce163f 32174 14189 NA #> 1109 c7d8781f-b9f6-4e0f-b0b6-29fce3985f3e 25871 8222 NA #> 1110 23df1eb7-f589-4e49-bb31-0b4ce983fe32 32457 14211 94372 #> 1111 16c53e66-de15-43da-931c-bf3a3e056505 NA 15489 NA #> 1112 61e1881b-a33e-4d33-b518-017145d5fc03 30237 11980 11879 #> 1113 dfb05fbc-7329-4893-8dc1-3d30033e49d0 31875 13885 51055 #> 1114 4da59648-13e4-4afd-b36e-6adf539292ff NA 15300 NA #> 1115 37476573-91a5-454f-a849-baf46c293940 31167 12907 49706 #> 1116 b14bcb8f-a563-4b68-8a4f-5ef7da8b181d 29727 11445 11147 #> 1117 ca760cb5-83dd-4415-acc8-ef8b508ba976 26675 8715 7833 #> 1118 8bb2d40a-6dd2-4108-9810-5def1b45f192 30189 11957 11831 #> 1119 17a17a1a-787d-46b3-94c0-8d4e1928c492 33024 14851 28071 #> 1120 6bbb8551-be80-4eae-a1a5-9f877f917a05 30970 12983 NA #> 1121 046a6f57-6927-4f46-9c0b-67b762f2e42b 7120 6405 2130 #> 1122 010806af-e6ba-409a-b7fb-a119714238f6 32155 14044 37161 #> 1123 4694f887-e7df-4d8b-9ae5-fe971256bf17 NA 15665 NA #> 1124 44176cc9-9025-4dec-a790-fbfa57686a6c 30990 12888 39137 #> 1125 cc1cc1ef-551b-444e-be5b-1eeb5c3a4177 32745 14668 37070 #> 1126 2cf5f42b-7200-4c65-85d9-2b0e5b8696fa NA NA NA #> 1127 cf95d473-31b5-4bf4-b52c-386567c51caa 32791 14678 NA #> 1128 47ba2a5d-1177-4421-a9f0-4db1906afff7 31123 12803 38897 #> 1129 8106a0d3-1cc9-4038-8c1b-9c7886a6bcba 30870 11820 12307 #> 1130 ad15f429-2d3a-4fad-b378-2ae972a474c6 NA 15188 NA #> 1131 19183c08-1130-4690-990d-8c1d83ad11c5 31655 13331 NA #> 1132 8af5d867-302a-49ae-9acb-fede2cebe979 29398 10951 10798 #> 1133 b38b6c46-7b53-4c5b-864c-04e261c97ddc 32455 14210 48584 #> 1134 1b17a67d-c771-4e7d-80ea-fb1d19adb200 29250 11020 10650 #> 1135 d764aa2a-9318-447b-a108-6efa55268e5a 33117 14963 NA #> 1136 7141ec7a-4f3d-44a4-979e-6644ab9e8f7b 32358 13715 34735 #> 1137 d897b70f-29d9-477e-a72a-c9bfbadb70d3 31431 13109 21956 #> 1138 c14f8faa-62db-4fb2-a7b1-d9b5998ce604 32642 13629 60453 #> 1139 a259d6b2-0238-4f22-b3aa-de7132cf9285 32272 13630 46508 #> 1140 aba8f925-ffbf-4654-bfa7-a25d3d237494 29235 10729 10635 #> 1141 4a096c4e-7738-43b3-984c-7ea604a96742 32972 14496 NA #> 1142 cc4b5f58-a11c-4450-a1df-617ad88336e4 32705 14394 57212 #> 1143 3d959d65-5c4c-4de4-bc6a-1bbc4f0c0bcf NA 15224 NA #> 1144 241d5e15-f9e6-4bf2-ac36-74dcbc9cc148 33037 14361 NA #> 1145 122e131c-b08c-4b10-901d-481a20aeffb8 30247 11777 11889 #> 1146 12c39c1f-d579-4bd5-b736-62afd23b8208 31620 13293 39541 #> 1147 0deb1dc9-0945-470d-8352-220d26d03d7d 32596 13960 94383 #> 1148 99254255-1116-49fc-9cb5-ccc8dccd577c NA 15417 NA #> 1149 de456390-b27b-4146-87b9-0267f1ea8db4 NA 15296 NA #> 1150 98a944cf-0fc3-4a0b-9011-490722667d37 28893 10503 10018 #> 1151 8f182089-7730-499e-8f2e-87bda32debfb NA 15681 NA #> 1152 dbda3235-5f3a-4c16-81da-48c093ad6c85 32063 13527 39770 #> 1153 826c6c22-2a3a-48bb-befb-8e552fb391ea 33186 14364 61072 #> 1154 a35bac80-e810-4e67-9ae2-348e9b0a79e4 NA 15393 NA #> 1155 f0a9018a-4429-4c02-a4ed-04df77b4a389 33096 14633 NA #> 1156 bd1120b6-38b3-4225-a4b0-20660a149d0d 31840 13610 40912 #> 1157 54d4e35a-2e6c-48f6-86ad-92dd596c173c 26612 9758 8549 #> 1158 7bfe9525-ad16-4e26-9d65-b48276eb3fd8 NA 15575 NA #> 1159 dc51b38c-dc82-44ee-a88b-764d681ce58a 32561 14246 94379 #> 1160 26ef0447-29b8-4dd1-9831-dcbf8132bb74 NA 15332 NA #> 1161 6335a39b-9cb4-4703-bed9-1835b9fc4791 30254 11702 11896 #> 1162 6e01959d-9860-49e4-a997-eee257718812 31148 12989 48182 #> 1163 a6fe5f18-d78d-4a56-aea2-ef4bed7e647a 28691 10552 10154 #> 1164 3bd012f5-1fdf-4ed7-b660-5013122df93f 32836 14466 29614 #> 1165 30641ad1-3511-48a4-a63a-95c88846b705 30550 11846 12269 #> 1166 e0a31d02-9d1c-4dab-adb4-a5d9bbee8b36 29631 11429 11028 #> 1167 9b56915f-c7c6-48df-84c8-ba78063fbe8d NA 15174 NA #> 1168 0dc98d11-34e4-46f6-96a6-7707c6f29500 28414 10069 9459 #> 1169 99bcf74b-6733-4658-b918-535021328612 NA 15251 NA #> 1170 cadecca8-a102-43a5-9a0c-f7cef0b9a579 29719 10884 11141 #> 1171 865d8df9-06ec-40c3-8c71-637f9fd0bcbf 29038 10718 10038 #> 1172 4d224244-dbb8-49db-b8d9-8bb974cea82e 32878 14666 NA #> 1173 e669f022-4065-4ef7-b850-a90e8b2367c0 31589 12832 49349 #> 1174 35e016e2-c6cd-49c5-b1b5-73f03b81ff4d NA 15297 NA #> 1175 0383eb1b-b1b0-4d6b-ab5a-8f096f6d3a7b NA 15795 NA #> 1176 ae0498b4-0ccb-4b11-9449-f26c621d7c79 30146 12020 11788 #> 1177 dc9d65a1-f955-4ef4-9b36-807c3ec73821 NA 15636 NA #> 1178 db9fa46f-f0f6-40b8-a207-60d46173d7e1 30988 12549 49350 #> 1179 c1bbdfa3-5171-4018-a812-1dddacb3b421 33231 14405 55893 #> 1180 23424024-3b7b-4de1-9b0c-09d170f845b3 32268 14104 26015 #> 1181 3acd2909-ef8a-4a20-a859-001e6244d57f NA 15377 NA #> 1182 e1b066fb-d077-42a3-9f5d-4ed560c9d777 31853 13810 34247 #> 1183 81aaf55d-df8f-47d6-9bf1-06b78df37bf6 28530 10390 9575 #> 1184 5bde0a71-c7ec-465f-ad35-c195e1d10b29 31069 12778 49355 #> 1185 959f035c-b8ce-45a3-bbe3-fda439c1e9f1 33222 15070 25687 #> 1186 41ff2f2c-6ddb-4bc5-9712-3664501f7af9 32906 14779 43076 #> 1187 c7fccdf9-dd52-4483-862b-d58a94560135 29302 11117 10702 #> 1188 2b02fad4-574c-4a40-ab7d-43aca2142b66 NA 15476 NA #> 1189 0df44cfb-8dab-4fc1-8556-108505a4b428 29371 11119 10771 #> 1190 d13f374b-649e-4762-bcbe-660c6dcc2131 33232 15031 NA #> 1191 a5a7243e-d842-400d-89ff-5d451338426f 32996 14725 36669 #> 1192 d848e4e6-ff3e-421c-9bd3-c2f62a16efd4 29261 10973 10661 #> 1193 0681ed0d-6b7a-4582-85b8-2692f0c2f058 31982 13538 48718 #> 1194 <NA> 30919 NA NA #> 1195 855efef2-4393-4959-9712-3fd144a03110 NA 15604 NA #> 1196 00ba8fa0-93ee-4e40-823a-d03a2639fce1 NA 15613 NA #> 1197 5616e0f0-8306-43a8-8347-e5b8e26f8cbf 33230 15073 NA #> 1198 b54f36b7-3181-4478-ac4d-73931a83c354 31439 13117 NA #> 1199 ca113409-c714-40f8-82db-727eae1e455e 31436 13114 48604 #> 1200 ef1c7d1b-ad3a-4e57-b4e0-625d86b9c193 33280 15122 NA #> 1201 f4a43515-f437-499a-8c57-086eb579c5af 30676 11780 23112 #> 1202 80422fa0-20c3-40d8-a3e6-93f55b09b872 33227 15114 NA #> 1203 13bbc7df-2a25-44db-a79a-89ba6c1ac009 32862 14471 36661 #> 1204 e0856548-6fd5-4f83-9aa0-91f1bf4cbbd8 8447 5363 3809 #> 1205 189e33b8-0a9a-4fc7-b2e1-e5a552779a5c NA 14650 NA #> 1206 8ca83e4e-d3a5-4dcb-a917-e58e36b77721 33321 14553 NA #> 1207 ede260be-5ae6-4a06-887b-e4a130932705 28426 10316 9471 #> 1208 99847f76-5bf2-4cbe-8573-9a477f7fb472 31844 13651 42905 #> 1209 91584998-260d-4d2e-a154-e4b6f7886ff0 33067 15001 NA #> 1210 586bc34d-f368-4d82-96b1-816d08fa2837 32912 14365 56703 #> 1211 ab9bd5b1-eaf9-4f2d-8acd-fbc143980b17 31058 12919 50203 #> 1212 5203e275-5554-47de-bc0a-5b13639e5b50 32058 13883 30242 #> 1213 af3599a5-5eb4-4dd4-87ab-e0032ebfa644 28510 10328 9555 #> 1214 25a643a9-3b59-4739-8430-2713a818fb69 29349 10935 10749 #> 1215 fa797d7d-4537-4e2e-8fd1-cd8831894092 33225 15072 50275 #> 1216 fc081a72-124d-4648-86a4-45aebb95a5ba 33221 14572 42548 #> 1217 e1917291-e27c-4221-b62e-36b5d9df254c 32845 14385 12744 #> 1218 92e24ebb-25e5-413a-95d4-26936bdb6a70 NA 15255 NA #> 1219 3267e534-526e-4db8-8e1f-49fc7ee8aedb 32276 14106 39094 #> 1220 9df198fe-d03e-4f0a-845b-1fdbef8b5ed4 NA 15524 NA #> 1221 f1fdaa82-25bb-4ae7-8945-c0b9864214ca 31209 12660 23250 #> 1222 5045eaf0-9ca5-446b-b420-ba5a12d1c902 30104 11971 NA #> 1223 7788ca8f-88c8-447f-9110-3cfd3ca5efd8 27595 9696 8702 #> 1224 b5d116d8-11d4-43b1-8f0b-9a3ba26648c9 31876 13669 46298 #> 1225 e9615c8c-3a7e-4b10-92f8-86f48edbe9a4 30018 11453 11435 #> 1226 7e6798b8-b33f-4a35-ab5b-67fafd8d9e65 32879 14594 NA #> 1227 d525b4a5-5207-4c1c-8647-7560a151e602 NA 15348 NA #> 1228 6e18cf77-85ef-41e1-b2ef-5272a39554f0 NA NA NA #> 1229 659751d8-c58c-41c1-82a9-8a201a4ecd0d NA 15448 NA #> 1230 1e5595fd-5488-4762-9987-f568eeadecc9 NA 15398 NA #> 1231 04d35b0e-76e5-42e2-9290-2fea6b0627bd NA NA NA #> 1232 86533fa3-a5f5-41c7-9942-e33ba6b5c18c NA NA NA #> 1233 1306d6f4-5de3-4bec-9c86-3e5ab8e2d081 25863 8314 7146 #> 1234 c589d918-f69f-4284-aa85-5f9c30e006a4 32275 13879 60822 #> 1235 a750e7ca-12ab-4d7c-bc65-f58793c3ed16 26732 8736 7891 #> 1236 5067e5ee-bae8-411e-bc05-011a88a3d954 31142 12822 38809 #> 1237 0ce48193-e2fa-466e-a986-33f751add206 7200 4307 2241 #> 1238 6723249c-5fb5-4b0a-9373-cb59cdc99ec8 27531 9277 8638 #> 1239 e5094779-e94f-4052-8597-bdbee3719f6b 32696 14371 NA #> 1240 bd684ac3-89d5-4b6b-84df-2a4a9b04cae1 31336 12819 46540 #> 1241 751d6fe8-85d9-4caa-bcca-493155dbff6b 32464 13925 61944 #> 1242 a2e0f742-e608-4e29-99cd-e7cd765afba1 32026 13670 45913 #> 1243 ef87e355-8e0c-40ed-a85d-bca4896d4f1e 33235 14573 NA #> 1244 27dd5b6e-ea65-4622-a6b4-460fd144407c 30295 11763 11937 #> 1245 e10bfeb8-ea01-47bc-bfa8-45f6dcbf71b3 32732 14370 57165 #> 1246 0f5abff3-bb58-43bc-a915-daa341bf3a67 NA 14379 NA #> 1247 9c21e9af-681c-41ef-9b00-fbc9e1668ed1 7777 4891 2973 #> 1248 f808794b-3135-4f75-b46a-ba90bf6b8502 31907 13495 47081 #> 1249 921d49c2-64d1-4108-a3a3-0c237e17748a 33367 15181 62825 #> 1250 7874d188-0fcd-4af9-9289-27c27e2bbd16 32764 14629 47034 #> 1251 e0755328-7fe1-4df7-9dfb-93e9cf9ef5be 32056 13528 47119 #> 1252 dac819b2-245f-4845-a73e-b6f92fbe3abb 29304 11087 10704 #> 1253 7c9c7800-69d0-459b-812b-a07ac48e9f2a 30777 12389 12193 #> 1254 109cf714-fc59-468d-b02f-2db4e75a56a7 32270 14109 NA #> 1255 ea2984d6-a8ed-41dc-93b1-137a09b90259 NA 15789 NA #> 1256 3283f152-d373-43b3-b88f-f6f261c48e81 24851 7256 6216 #> 1257 e7d6ae25-bf15-4660-8b37-c37716551de3 27581 9455 8688 #> 1258 8b66001c-c41f-406a-9583-d8b6848ea6d2 32409 14023 48211 #> 1259 228b0dd8-3f75-4b60-90d1-59036858b8ae 32488 14002 94375 #> 1260 6fb8803e-2a84-454b-827f-df747e9157d8 32664 14472 20052 #> 1261 9281d541-8bcb-4785-a02e-76150910898e NA 15376 NA #> 1262 0b97067d-9e06-4ec0-97b2-e1cb491e12a6 31177 12560 47967 #> 1263 b840b0d6-5920-4cc3-95a7-99e66bc839aa NA 15538 NA #> 1264 e47ca6ed-c988-4cad-b4a4-181c67463748 NA 15441 NA #> 1265 6a23db75-021b-4808-99e6-21a33d34202b 31268 12628 48135 #> 1266 e7f0a505-8060-403e-a3b3-9d4e88dda1dc 31144 12934 47809 #> 1267 fa7bdbe5-23b9-4cba-9015-98c5e2d09c9e 32019 13664 38275 #> 1268 7f5f2a81-ac40-420c-9421-5b9e2a21faf8 28429 10138 9474 #> 1269 5b6cc8aa-ee60-4533-b261-58930228faae NA 15341 NA #> 1270 1ae787ee-d2c3-4ed6-993d-6eabcfbb57f4 NA NA NA #> 1271 0da88ee9-26f4-4d59-aa66-1e2dbda05580 29245 11052 10645 #> 1272 f113cf01-5a86-4ed9-ae34-dcdbac9e11a6 32811 14710 49381 #> 1273 acbf5978-d7da-4d01-8f1d-22dd65d4484c 31886 13820 55615 #> 1274 b6c9d494-a3cd-4d57-96e1-f807f0b9be63 27559 9329 8666 #> 1275 ca08b2bc-7fad-4dec-88d9-5f5f9712a830 32017 13729 49446 #> 1276 96f646e2-0984-4092-8031-22d2bf9b620c 30137 12011 11779 #> 1277 16e4ffec-959d-4210-8702-36c0bf20dda5 29340 11141 10740 #> 1278 1c41b4ac-bec1-4943-b0a3-5b57642faaaa 30264 11999 11906 #> 1279 411c2af8-64c9-4982-8d72-3ba4c683c0db 31318 13218 66930 #> 1280 aecd8785-d22b-43b4-bbff-76b7e4319ed6 31166 12994 28196 #> 1281 0b0b1995-e095-46f2-b973-4da5143c753f 33331 14733 NA #> 1282 94f04ef5-238a-4f38-b45a-de2e7f3b9f9e 27782 9332 8888 #> 1283 bb9db665-7f9f-425d-9e4b-df78c65c8b97 31038 12606 49048 #> 1284 5cb1fbaa-96f9-4211-96b7-f3492f2bc467 27607 9298 8714 #> 1285 f9ae156c-f690-401f-b964-34b0ff6187f9 31652 13189 51146 #> 1286 0a08ca62-e488-4369-8e26-8b158443865f 31179 12999 50351 #> 1287 0a63f97d-9cc2-44d0-b65a-ac2e78db73f9 31321 13219 66931 #> 1288 7d1d8954-3836-4bbc-9d70-cd85e57c7c69 30196 11938 11838 #> 1289 89919ab7-0fa2-4fbc-b018-5f2d3e3c21e3 29253 11106 10653 #> 1290 eff1c40e-715c-49c4-93d8-6155322c1205 31993 13791 50612 #> 1291 ae3bb00f-84e8-439f-ab56-38c6838b8b97 29317 11070 10717 #> 1292 e1048910-1b5f-4d91-8702-f5ad06844b24 30164 11950 11806 #> 1293 df1f38fe-1e4e-47b8-878a-4a033cb3a462 30801 NA NA #> 1294 eec103be-3166-486c-a89a-bddf0c4b1397 33205 14899 NA #> 1295 23a30b80-1549-4ae8-afac-0fa99636c71e NA 15610 NA #> 1296 7e2046da-1bdb-49b6-abb1-c35e725d84a3 32709 14406 44526 #> 1297 eb904c68-f01b-4af3-9427-dd6a6c35511b 30307 11944 11949 #> 1298 2d233d49-fca4-4ddf-a73d-21f4451ce3fc 33156 14853 79271 #> 1299 016a6d56-0b72-490e-8dae-41b5d3d2db63 30222 11921 11864 #> 1300 54f13aa1-4a2f-46a3-99ef-743c1d3ee234 29301 10976 10701 #> 1301 203b60aa-cb94-499c-a4ca-d3c6b94dddc4 29792 11031 NA #> 1302 f50c9bb7-2782-4390-a84f-b47e71d6018f NA 15602 NA #> 1303 2c33ff53-6c16-46b5-a3b0-20db70fe430a 30583 11979 50712 #> 1304 b7337487-017c-42f4-b500-6802a35efbfc 31156 12990 50152 #> 1305 fa4ae025-fd66-4752-94fa-63e22ae8abd4 28935 10673 9836 #> 1306 bcbbd7af-5a61-41f2-bae6-1e034755e7ef 29442 11233 10842 #> 1307 8cb76d80-0326-474f-86c8-869a86405777 30170 11965 11812 #> 1308 eafbc0f8-2e3b-4014-af9d-81fc14b5009a 25736 8134 7031 #> 1309 fa059382-e52c-40c8-93fd-bd69decdc1c8 28089 10091 9272 #> 1310 bc69c92c-58ff-44b2-a18b-07a08ee78dc6 32760 14550 48407 #> 1311 43aeb127-28e7-4fac-a611-39c38f3f7628 31146 12933 39256 #> 1312 14656a50-c687-48e0-a2d9-819709e3ffa3 27660 9712 8767 #> 1313 b220a72d-6870-418a-98af-ef50632be774 31552 13276 26296 #> 1314 462bfd22-1159-408f-8f92-7fde712ffc3a 27599 9375 8706 #> 1315 417f4ddc-b1a4-432d-bbcf-e95236c10efc NA NA NA #> 1316 0d4fd512-e1fa-466e-a984-d2a4389c512b 30632 12562 NA #> 1317 b23e22bb-d478-4312-a085-e7642017ccfb 24662 7107 5800 #> 1318 29626ee6-b528-4618-a4a5-771a5b0ff54d 27835 9817 9262 #> 1319 04ca77dd-b55f-439e-a593-37dfc8ea8320 31950 13856 44959 #> 1320 e805571c-fc68-438c-b8db-2d1286d99182 30293 11798 11933 #> 1321 f9ec0e39-86d2-4f99-84d6-b4e7bb387d8b 27360 9104 8365 #> 1322 ac8909fd-d860-4c28-884f-291ff7cd370e 31044 12575 46375 #> 1323 30fedd72-bf59-4a35-9aa9-dd01b1122c09 27592 9427 8699 #> 1324 a8233d9b-6384-4220-9cf3-25158e942d70 NA NA NA #> 1325 bb5156b6-adca-425c-b336-54507cdd0cf8 31887 13811 46961 #> 1326 aade4e57-ef71-473c-bf8e-18be90164351 NA NA NA #> 1327 3e061410-a4e0-4e16-8043-2f63842410a6 29404 10961 10804 #> 1328 99b8d78e-6d23-4e85-8eef-d286ba5ddc0c 24925 7438 6290 #> 1329 ca2ced2e-dc69-403b-8675-b92b7a0b3a75 27948 10096 9234 #> 1330 f6153509-d21a-439b-a33a-007a9f25218f 33119 14921 NA #> 1331 8abf63a5-6f5d-46c2-8a3a-b9b03d0cab26 31855 13743 25472 #> 1332 fa7465d1-4d84-452f-97c4-cdc14c607a34 30273 11800 11915 #> 1333 813c2073-8f69-4f6f-94a6-6819cd14b4f3 29247 10964 10647 #> 1334 608ebe54-1b57-4775-808f-ab2e02637a75 32796 14667 36501 #> 1335 d2f6de91-089a-4845-9b90-bfbc00487444 30711 11829 12255 #> 1336 7d51fab7-2d52-4d19-a021-19a123af0d10 NA 15542 NA #> 1337 eec5265c-7731-4bb6-8af2-4f98a67f9ab7 30125 11712 11767 #> 1338 7f3ef024-eb34-46af-8b9e-544cdf09378f 24967 7357 6332 #> 1339 4d517d8f-fe4d-4c89-9a2a-fee836ba4a71 29441 11026 10841 #> 1340 ef21feb3-991e-42d7-bb16-8bc92f7894bf 31457 13135 45691 #> 1341 f336567d-44a9-4245-8452-1dd485fd70fb 24815 7244 6180 #> 1342 bd8052bd-0898-430b-99c9-2529e895ae79 26813 8765 7971 #> 1343 8322b598-ab65-4b2c-8a54-af37f67a062d 31379 12715 12660 #> 1344 7f5c931b-4ebd-4309-a1d2-e04a5cf782e8 31537 13185 12888 #> 1345 2c8670ae-0c23-4d20-9d2b-f4c3e25f8938 28474 10148 9519 #> 1346 26e66f79-5f08-4ee1-bbc5-85c8f5f7fddd 33161 14659 83711 #> 1347 b6ec1773-309e-422c-b82c-b55a557031d6 29450 11190 10850 #> 1348 6b39f9b6-2ea7-41a9-8155-0e12e569817d 31584 12936 NA #> 1349 d6647491-8a3c-4f9f-999c-823823bd478d 30468 12230 24606 #> 1350 0cb5a32a-a340-4671-ba2a-93f5fa6aee8d 31068 12568 47050 #> 1351 8ffb5c07-4aa1-4796-b1ab-30c1ab0ccc4c NA 15369 NA #> 1352 40b8fa44-b289-42dd-9606-a1ae30adc7bc 31220 12529 47327 #> 1353 6733b953-de77-44e5-acbf-c2d3a0940243 30627 11887 12247 #> 1354 362244ff-545a-4123-8b4d-6a4bc6f24ce1 33364 15179 NA #> 1355 29972cbe-2912-49df-916b-200eead9a218 30185 11880 11827 #> 1356 0b504d67-639b-4ba8-979a-498a3086257b 29341 10994 10741 #> 1357 40caae08-0389-4c59-b796-d924047f57f9 31073 12484 47698 #> 1358 fb815f81-3759-4194-bff9-1982fb2dd9a0 31626 13304 38435 #> 1359 bd56a50c-5fae-4ee2-8363-f74ae07b6887 NA 15200 NA #> 1360 6bb4d6f8-c8fb-4ca7-a416-a7010526114d 29703 11257 11107 #> 1361 bd01d907-cd57-48cb-9136-5692a4764a20 28464 10210 9509 #> 1362 a9b58dcf-40f6-4c27-a415-b922fc39f0bb 30432 11722 12044 #> 1363 b6b954eb-4591-4b7a-86b9-a481f15fdd58 27548 9260 8655 #> 1364 f404283a-7c04-4a1c-899c-3243424a8d70 27618 9276 8725 #> 1365 bfaedf99-7618-4925-b362-90415c22a3b6 31021 12763 48160 #> 1366 9691f874-be36-4529-a7eb-dde22ee4a848 24063 6506 5612 #> 1367 0c117c69-d409-4dfd-8e02-e55988301b2b NA 15279 NA #> 1368 66990fc9-f98d-4712-8a0e-524372b9102f 29252 11089 10652 #> 1369 30e8767e-a208-494d-b684-4f1905e0ac10 29449 11235 10849 #> 1370 9fe24e8f-360b-4ca6-8e46-6d60d8728efa 31573 12922 51194 #> 1371 3f0613a9-f060-4b43-95cb-3b263f05cd0f 27747 11514 8853 #> 1372 bbeb74ae-87d4-417d-ba57-670391baf8ca 31866 13474 49564 #> 1373 81a5c010-2e89-4b65-a924-015cf4ea3f94 26648 8637 7806 #> 1374 c9b2e966-bdfb-4ccb-be3c-42473f63929b 32463 14216 NA #> 1375 27f3694c-a9a1-4c64-ab84-45bdea45d44e 31233 12462 50414 #> 1376 72100db3-2daa-4c17-aaa8-6c2c52bea5f3 32881 14828 27069 #> 1377 cbfb7144-357e-4feb-82d7-a6104fdbf908 30669 12431 51596 #> 1378 8d44783d-6149-4e6c-8a5f-5fead0ec7677 31976 13764 49217 #> 1379 26421b57-c32f-45d3-abcf-c23defaf4f2e 31941 13760 51304 #> 1380 294b8433-6560-4117-82e9-79f51d361b0b 28503 10404 9548 #> 1381 91714138-9d0c-446d-b509-709d95f9202b 31080 12527 28495 #> 1382 c2ec4712-147c-49b1-b6ec-fdb298913080 32755 14704 49434 #> 1383 b736f05a-38a5-47b4-aaab-734667967ac2 31373 13094 31342 #> 1384 bc6aa137-cef3-481e-a87a-e06dad32882c 29933 11374 11303 #> 1385 b9aaf941-b081-4566-ad9a-72acbbeea4eb NA NA NA #> 1386 dfb0b126-9c75-41d3-9371-04065db7506a 29292 11018 10692 #> 1387 30259e5f-6999-4c24-90cc-4f72bc0de44b 33059 15008 NA #> 1388 4c52a12f-6745-468e-86d9-977ffa512c4b NA 15264 NA #> 1389 d22c6b00-da97-4ccf-ae49-f06405fccc3e 31022 12799 21702 #> 1390 f89332c7-decb-438a-bf7c-220d6c28e098 30338 11939 11980 #> 1391 08875a0a-0a3c-4fc1-b5f7-41d510503628 30309 11930 11951 #> 1392 994f3d7b-1f01-45fe-ba66-4d853d4b09fb NA 15227 NA #> 1393 8b1f53bc-d0c1-4fbb-8d7e-3ab7188132a3 31881 13761 26554 #> 1394 03af0e0d-a443-4b09-9ab5-4f2695248346 26704 8654 7862 #> 1395 a1be5d02-d5c4-42f6-8749-7ac2ff2a6f09 33220 15025 NA #> 1396 7b06a505-ea09-4f2a-adad-f0f1c9b3ebc9 31034 12800 48475 #> 1397 6575474c-d106-406f-9b90-ef9b598a213d 29950 10942 11332 #> 1398 8f36321c-c317-40ce-ae09-fca8694083b4 33212 15021 28668 #> 1399 4ab9df5a-3e40-4402-9f68-bbc659a94784 31526 13170 48935 #> 1400 fae57441-a198-4674-8a37-401b64d17961 30257 12202 11899 #> 1401 e26bb68a-8987-40b6-a2d1-af013a13306a 32863 14613 28310 #> 1402 0df7834e-6373-4f30-9935-5c05d28e752d 31128 12865 49636 #> 1403 d97529e5-f1cd-4fe0-8697-4b51bbe52fd4 29241 10925 10641 #> 1404 22febe45-170a-4f01-b144-3b35b44c7da4 32819 14691 47339 #> 1405 c8bbff7b-3b6e-413f-8945-24c01bfd84c5 33211 14437 NA #> 1406 1c50997f-c56e-47f9-a750-33ab100ed28b 31482 12582 NA #> 1407 dd62d18d-3438-408f-8b53-a68399bd4a04 32266 14103 39043 #> 1408 c3e579cc-6693-47c4-91a9-b688935ae048 31048 12506 50884 #> 1409 f9a138e3-829d-442f-8345-43d1cdbac225 31006 12845 49684 #> 1410 97515d00-2ea2-4259-8a20-d8b92daf455c NA 15690 NA #> 1411 73040fb2-2b26-444b-956e-df0927985bb2 31191 13000 38526 #> 1412 9552a04c-6468-41e0-bc5c-c91efedf2fc3 25850 8317 7137 #> 1413 6bfc1107-7883-47db-85ef-3f8f24222a20 31372 12967 21605 #> 1414 6c338c70-42d9-4d35-bf87-04fe7e2f690a 31921 13782 50954 #> 1415 e002383d-3a52-45e6-99ba-09635529a996 NA NA NA #> 1416 08765a08-c1cf-4065-81b3-67cbad7e0e17 32883 14799 NA #> 1417 c897e280-6597-4dce-9c0d-ed845148d714 31163 12924 49825 #> 1418 e653effc-2bdc-4bfe-bf3d-272e783ae4c4 31996 13984 94351 #> 1419 b0ad00bc-3b30-41ce-8892-f8105e0943e2 31205 13010 49834 #> 1420 8da0fe32-1758-44ed-9acf-21b3721cbd0d 29588 11414 10940 #> 1421 cbbf7b76-cd26-462e-bc18-d80f5109723b 28522 10276 9567 #> 1422 78e57787-7682-44bf-9cb0-60afd0e9ea66 NA 15508 NA #> 1423 e550d0d9-2e56-4c71-8a9a-8a683daf32a3 31007 12937 46794 #> 1424 e98ed960-2119-4811-b863-d086ef4e1ddf 28850 10758 9830 #> 1425 db392145-7bee-4453-8762-ec946b3130b3 30371 12599 12204 #> 1426 d3fee51d-67f5-413b-a4b2-bde86b97babe 30976 12503 12954 #> 1427 ec7404cc-ff2c-4afb-aebc-3cde1322d5de 30303 11821 11945 #> 1428 473a6858-7c99-4521-982b-fcbaacc00b74 30243 11787 11885 #> 1429 10bc7a15-0e66-4cdc-bec3-5a60b0b39159 26624 8727 7783 #> 1430 8255ee3e-cd6d-445a-8f45-7ac60fa3e794 30270 11797 11912 #> 1431 bd1193d4-ec52-46c1-bf6f-74a11f712097 30597 12496 NA #> 1432 8237c04f-a1c4-4c31-b5de-3afb3c81389f 30534 12390 NA #> 1433 59f4acd0-971a-4470-ab8d-17900a4b128a NA 15328 NA #> 1434 878d95f5-22d9-4f20-a3ec-2b5b117a8c5c 30366 12225 12008 #> 1435 e97f5ca9-186e-4346-ae65-1cd757ada455 28535 9706 9580 #> 1436 bcf6e7cb-0fc7-4301-93fd-6a9aa4806cfa 33229 14894 NA #> 1437 e9a5c16b-4472-4be9-8030-3f77be7890cb 29236 10856 10636 #> 1438 060d05d6-aa31-4571-9f91-12c8050b6aaf 32792 14401 NA #> 1439 3833681f-0164-4dbf-bfae-ea33115daafb NA 15635 NA #> 1440 ed5bcd2c-6335-4c0b-93b7-2116684a9b02 31074 12630 48103 #> 1441 070850a3-7387-4836-b3eb-b1c8f8731aab 31139 12942 26618 #> 1442 9a5ebed1-839d-40f9-a86e-ba9c65c7c7e6 33098 14565 NA #> 1443 925195a4-06ba-4e37-ae7d-a3d6a5419139 32711 14455 57488 #> 1444 60acd19b-4197-4b04-ab5b-c287ca5a0b56 32475 13598 NA #> 1445 413f7971-4d5b-496d-a11b-f623e9bc3b7c 30256 11765 11898 #> 1446 73015642-080b-48a9-b1b5-bfa4a606cfd1 29383 10804 10783 #> 1447 46cf23c5-7096-4f18-a3d8-59f0befc95ff 33309 14532 NA #> 1448 f1f4a350-cc5f-43a2-bde1-829058d6c338 33216 15022 NA #> 1449 bcc0167c-05fd-4b23-981e-60b8784ceb33 NA 15245 NA #> 1450 0fb21468-f4c9-4b11-a8fc-d4c2dbbf5319 NA 15793 NA #> 1451 f993832a-f81f-4706-90b8-80fd193bdfd7 31181 12697 42062 #> 1452 d83c2f7a-3195-4e6a-b1a0-4745b5dcca38 31325 12693 47198 #> 1453 bd413539-9351-454e-9d61-4e8635d7e9f5 27299 9081 8520 #> 1454 8809c0dd-786b-4255-a7d0-333c9498c19a 30112 12196 12078 #> 1455 86707c8e-fec4-4ebe-9111-4d3ad238ad43 32970 14843 47282 #> 1456 2c73720a-702f-4f39-9b54-c4da9d9f632c 33214 14908 47033 #> 1457 be29caf2-9942-4e21-939a-a29407555c56 32882 14643 48329 #> 1458 db0c3b1c-8d18-435a-864a-cdd696f963b6 31891 13525 47940 #> 1459 18a3fb57-3220-4fa3-af42-20e179ec896f 33215 15020 84418 #> 1460 5c54defd-6f6d-4884-9fcb-80343d2d72d3 33027 14461 NA #> 1461 f847b563-8a08-46ca-bb57-aee8431a87fd NA 15570 NA #> 1462 617269c1-88b3-45a6-b4a8-b2806a0cdaea 28547 10244 9592 #> 1463 <NA> 30839 NA NA #> 1464 f374262b-d642-4d05-9584-5955548ee4d1 32292 13854 91479 #> 1465 49f9f357-e90a-45b7-9f55-fe451125149f 31952 13635 48331 #> 1466 7fc949b6-a1cb-4f9d-a06d-b65773409a44 30502 11868 12303 #> 1467 b8426cea-f8b9-4061-8d56-e70d1230103e 25802 8098 7092 #> 1468 89de9ce0-3b8e-424a-b9b5-d747692ea5f7 NA 15519 NA #> 1469 eec927ed-221c-413c-a91c-ab1ed1bb038a NA 15419 NA #> 1470 1aefd5e2-1f85-471a-91a5-4aad4cf6fe6d 32704 14378 29049 #> 1471 dd7640e6-d81d-4605-b900-451bf40e5bd6 30203 12015 11845 #> 1472 fad54673-1232-48fa-91b5-ab5f9e87781e NA 15619 NA #> 1473 095f659a-2aaa-4961-912c-66f337755787 32102 15221 51088 #> 1474 a01a9064-c0c3-4f3e-8753-89f5859879f9 NA 15702 NA #> 1475 4de23d54-2169-4b17-b0d0-c47b2edd9f73 30156 11905 11798 #> 1476 afbc5ac8-8e3f-4cb6-a96d-3b28b039bde9 32679 14367 55593 #> 1477 aca3090e-ff88-40a2-a7fb-93e063f072db 33308 15133 25642 #> 1478 94b28362-5dba-40f9-8378-8bc1e5cdbdff NA 15254 NA #> 1479 039d817f-17a4-471d-8949-197335dcd1ad 32893 14829 76692 #> 1480 a887ad59-0e4b-4a9a-a7e4-cfd9f42fe7fb NA 15359 NA #> 1481 3db8b3b4-d3f5-4b35-bc19-ee56ec6d29da 31262 13040 50380 #> 1482 0a4980fc-0ffc-45b4-a2a9-f9d38334618f 29514 11483 10902 #> 1483 15a6249f-f4cf-47c2-8251-8a3a802b3db0 32827 14687 42544 #> 1484 b12174ec-fea9-4e05-b54f-c00e10920245 30321 11989 11963 #> 1485 65e778fa-4639-4973-bb82-c76efa2ff309 32105 13768 49268 #> 1486 250da6c8-2222-4438-9800-60d7bbb449d7 NA 15199 NA #> 1487 8ddd0a30-563c-4fae-a6a8-a19747721924 30174 11998 11816 #> 1488 18f174c9-a956-4c14-bd23-9e799fef6dc7 30226 11994 11868 #> 1489 fedf6815-1c7e-443c-8d99-633c72e81179 NA 15053 NA #> 1490 852b00dd-fd1c-4edb-809d-912a6472cd07 29278 10891 10678 #> 1491 3971d35c-17f6-400e-8970-86bbf92cc744 30999 12470 48753 #> 1492 56c81bc7-72ac-4356-a737-b8010f931b56 29297 11044 10697 #> 1493 8f5245fb-27ed-4a5d-93ea-ca354e670731 NA 15439 NA #> 1494 dd7be5f3-c615-4621-92e1-2434519cb1f9 31839 13642 50235 #> 1495 36248cd5-f747-4960-b66a-a5d4f481e098 29920 11356 11341 #> 1496 887dc7b2-fb32-4126-be14-509b40424d34 30181 11942 11823 #> 1497 e4a401ce-3740-4e6b-8dcf-f2b41a3beeb9 28504 10455 9549 #> 1498 c9bbb2aa-f044-400b-9f09-5321604a3b79 26887 8723 8159 #> 1499 55998ec0-4d69-4d14-a2f4-cf72de36e998 31454 13142 48874 #> 1500 cc5a9d21-10cd-4966-ad17-44edb238834d 33122 14951 44473 #> 1501 6b74514b-1ef4-4284-a085-3046a6fbbd57 NA 15612 NA #> 1502 7f911008-146b-43e9-a292-9ad90c621087 28420 10058 9465 #> 1503 8bfbee63-feb4-4862-b3c8-08d2f65c8b5f 30802 12455 51592 #> 1504 a94f0507-44b0-4fb5-9e8c-fd21157ec1a6 32743 14714 28072 #> 1505 79a2bcb9-b390-4486-b64a-db81b246bf68 NA 15421 NA #> 1506 69bdf41e-3c32-46c1-93b8-e952edf5c61d 28685 10438 10133 #> 1507 6a2ee9da-4df9-4486-8060-8362a20bbb40 32911 14755 38876 #> 1508 dd7218be-5eaa-4d51-94f8-a9f68d2f0af9 32810 14747 51048 #> 1509 8227621d-ad2e-4dea-aef5-64d4f154adb2 31930 13982 49779 #> 1510 4d094a58-1cbe-4ede-abaa-cd2f1a492f0d 32083 13831 30076 #> 1511 96c822e6-5484-476b-8ab0-64b3cff791ef 28515 10374 9560 #> 1512 1cc3eb84-9087-4d8d-9136-2f84712bddf8 NA 15392 NA #> 1513 74439c42-a6db-4a9a-be25-559f3e03ef59 32690 14523 57945 #> 1514 ef65234e-2459-4ecd-b9d1-8751a7c7153d 31200 12723 44980 #> 1515 66e776e7-f354-4939-835b-a23dc889c6ae 29270 11064 10670 #> 1516 fb18e325-eab9-459f-a559-b482894eb0f5 33129 14956 34710 #> 1517 d61b7bc0-beec-4cab-97b0-7dbd27ded26e 32067 13542 48638 #> 1518 56657521-aabb-4c6b-a6d1-9b809e6495b6 28455 10267 9500 #> 1519 b90a3e2a-66fb-4b1a-a6de-7482fbe2d1b2 27942 9449 9126 #> 1520 62ae1c72-f5ef-4c45-bac9-aac5569b034c 27880 9971 9257 #> 1521 53b64223-ded9-41c1-9d2b-a8c2de8963d0 32786 14544 84236 #> 1522 f5eaf900-592e-4a3a-8514-4426dce7d3c3 27621 9443 8728 #> 1523 3fa9a860-a1ee-4355-ab3e-ba81490a4385 31269 12687 29035 #> 1524 c9dcada0-7f61-48af-84fc-d147a31c60e6 33145 14959 NA #> 1525 cedc5875-2b9f-4fc7-8e86-6895732bafa7 33133 14958 NA #> 1526 f093ef0b-6f2c-4fb7-8477-71f1eea28ac0 32574 14272 NA #> 1527 590c9b25-25d4-447e-afa2-1284c95e17a9 NA 15190 NA #> 1528 ca8b966f-3c0b-4219-a28d-0c020c365ff4 31099 12635 46980 #> 1529 d48dd5f2-79ea-4821-be32-5c177c674bc3 32051 13857 46335 #> 1530 a7f7153a-c574-4f57-a8cb-760aba8eb629 30147 11815 11789 #> 1531 8f07843a-6f68-409e-8cdf-1207f521b12a 31867 13480 41665 #> 1532 8301d82b-0ad1-4988-a978-2925e2ae9377 31216 13013 29214 #> 1533 c81ae6df-f87f-4197-b68f-a460321b48b4 32859 14562 17287 #> 1534 aaa8b42c-4d87-45f6-bfd2-e31cfed9a736 NA 15357 NA #> 1535 dabb52c0-455b-48fe-996b-abf758120623 32010 13741 41401 #> 1536 6608fdbf-6c93-47cc-ad44-9da2fda598ce 30217 11833 11859 #> 1537 25bc08ac-8420-4340-94c6-93993ff87d6f 32390 13624 45903 #> 1538 bc43e18a-c2f9-4e49-a90c-41a95cffa736 33123 14773 45980 #> 1539 3a29784c-832f-4e41-a4ac-71d4f9ad410c 27585 9516 8692 #> 1540 970693f0-0af4-4627-ac0c-bf519f7433ee NA 15385 NA #> 1541 5fc196a1-2015-49c7-85b2-1adbd2c33cf5 33138 14660 22425 #> 1542 42b57148-fc06-4aee-b40b-bb941271b5b7 30860 11768 12329 #> 1543 b53cac15-62fd-4d80-b0a6-ba5d9c4bbb04 33334 15034 NA #> 1544 e5c6b0d4-3e77-422b-a6d8-574a10ed385e 28561 10249 9606 #> 1545 9eb60195-a390-4a96-bebd-8a761551c163 31400 13102 47298 #> 1546 8a1f0e8e-6521-4a94-9934-ad4f76a25fd9 NA 15566 NA #> 1547 7c7b5515-7786-4e24-9ce0-34e6a8bd5727 28365 10033 10211 #> 1548 ca393469-d587-4bf7-905d-838e960de851 33124 14864 27766 #> 1549 e7a9186e-5e19-4f70-b45c-527c888e6fc7 32876 14827 47743 #> 1550 908ea628-c150-449c-97b4-06c5d78cae3e 24000 6463 5550 #> 1551 c871b3a8-72c4-425e-a357-2de37e033c8d 30278 12205 11920 #> 1552 fc36fcb2-0125-42c4-a8b4-0a2ca9c15ef3 32069 13619 47946 #> 1553 44d9bb75-f947-406c-b847-6b11684a07c1 29795 11467 11163 #> 1554 1a2fbc23-e6db-4d2f-a152-2c774341b7c4 25876 8223 7158 #> 1555 2b0e3931-07d2-4b03-9b28-489258465ac2 32978 14922 NA #> 1556 4f724338-aa8c-436d-90b2-45299572c53e 29351 10823 10751 #> 1557 b33f60c3-db65-415d-a93c-272f6ad80d23 30964 12875 NA #> 1558 0ebf3ead-0da4-49c4-82e7-5cf53c94e749 NA 15389 NA #> 1559 32494eca-34f8-4d7f-88ee-e3319128e8e0 33127 14784 NA #> 1560 c682e8ea-fe48-45d2-af60-682a6125ab22 28417 10208 9462 #> 1561 2e0badcd-b78c-40ee-a83b-a1bbb36bc545 29257 10739 10657 #> 1562 502b3a6c-e965-478a-858e-964b4ac2296c 26631 8793 7789 #> 1563 131d3b1a-5746-499e-98ee-4bbf67cd377e 32712 14358 61220 #> 1564 c2a7bd8a-d141-423a-8810-0988a59ff0b4 31031 12820 47702 #> 1565 b4dadef6-a938-4b34-b83c-b64d4a297e02 NA 15464 NA #> 1566 a7bee0dc-2f5a-4073-a785-85a34c60dda1 NA 15248 NA #> 1567 214ae0bc-d6ed-4216-a154-f253c85bb90b 32835 14545 47808 #> 1568 1d54c51b-6782-4231-9835-f7c279b86670 32098 13552 NA #> 1569 eb6c7e5d-987f-480d-9618-43f56e0b565f 29482 10909 10882 #> 1570 a65058fa-4652-4f68-bf77-3339fdb7e4a1 31481 13156 NA #> 1571 24c28a64-43b0-4855-a9e7-c46c7b30c15d 32951 14695 NA #> 1572 04401033-2785-4a87-b19a-312f45a53502 32907 14579 43467 #> 1573 a76eb878-71ee-418e-a46f-b35f6950aa95 32033 13703 49329 #> 1574 bb5e3914-d941-4f05-8c45-bc9c520490ef 31359 13017 49368 #> 1575 04f6abef-834f-470e-9c15-8c0cc62fde4e 31293 13257 43034 #> 1576 02d1b3c3-f292-4174-89fa-9ecc6286adb0 31862 13475 33356 #> 1577 83b719f1-e6ac-4611-8235-c2f6bd198fa3 NA 15713 NA #> 1578 aca94127-27a9-47d5-bb28-d89a7df21f18 NA 15714 NA #> 1579 8a214c9b-8c31-48d0-a83a-039ec6ddbd9d 29453 11237 10853 #> 1580 73ec5a10-dd68-448e-938f-25021cbc3004 31895 13824 50426 #> 1581 1f181c47-ad84-4758-a295-4c4f5c56120f 31000 12590 34057 #> 1582 b5c5f57c-a11f-4f8a-82cd-c095b31319ef NA 15094 NA #> 1583 046b6d1f-cc56-486c-8d45-45b3a150b141 31094 12781 51264 #> 1584 d1e46e40-5e8c-4b5a-ae03-5d0093b98633 28036 9680 9253 #> 1585 92b059b3-6b1b-4db4-a535-ceba629176d1 32808 14688 40588 #> 1586 6fd330e6-8cab-4351-b9e8-bc6ffb125b1c NA 15711 NA #> 1587 475db95a-f1d0-4bd2-8974-9e5d71d91412 NA 15712 NA #> 1588 79d98440-d152-49be-8259-ecec2a3afaa9 32955 14700 NA #> 1589 6a96e03c-f646-4221-bb4d-48d209f43a1e NA 15622 NA #> 1590 8c8b7d6e-6ed8-4a10-8ae9-b50300bd766b 26692 8593 7850 #> 1591 b200f413-296d-49f3-9ef2-f60e21c2f5fd 26726 8656 7885 #> 1592 70ce9a98-8dbf-4e16-a20d-f3cfb76e70d7 32351 14153 48467 #> 1593 8d70fb9f-48a2-4c2b-a4c5-50b233ff0710 NA 15588 NA #> 1594 aaff3798-2b50-47a1-b629-5771454a45d7 30141 11908 11783 #> 1595 490c15eb-accc-4441-be7d-c7114e1e42fc 28451 10322 9496 #> 1596 3180d257-5f46-4a25-b50a-3311235bc8b3 31256 13285 48452 #> 1597 9e9d2934-a273-4e39-a413-d991d083297b 32847 14823 48415 #> 1598 96d1c6e6-a450-476e-987b-c1e469c43f1b NA 15361 NA #> 1599 17206178-c048-47ed-9f79-9f4c5efd607b 33052 14997 89210 #> 1600 757c55e1-2f3a-41d2-a211-16bf577a1586 31916 13746 31534 #> 1601 6e8d8647-209a-4985-a346-70197e587f10 33203 15003 NA #> 1602 632a8382-27d6-45ae-b3d2-a37157e09ab7 32952 15077 40292 #> 1603 c02b49d3-ddc1-4ffc-9f40-487199882fa5 29289 11217 10683 #> 1604 a1182eb3-26cb-4d34-b29a-df673973f08b 31045 12971 49970 #> 1605 ef7b5ce8-a929-46be-b9f3-328752c6d125 29271 11074 10671 #> 1606 80715ecf-ffc9-4a93-a305-2193451b3382 28556 10468 9601 #> 1607 61536454-3173-4ff2-b76f-f0bdf9e59fb8 28205 9964 8995 #> 1608 4ceb866c-8eaf-49b5-9043-56228e43a2e5 30346 11783 11988 #> 1609 aafe4b32-1a8f-4691-9702-3141c14ff5c8 31070 12847 51487 #> 1610 13651f18-ad2d-4628-9b6f-002dc1c5f8f4 NA 15490 NA #> 1611 9b2d5497-738b-47bc-bd96-2c550b4649ee 32733 14520 57987 #> 1612 919cdf12-3811-49d1-a7a5-65ff29a59434 27647 9643 8754 #> 1613 46689e7b-4a03-463b-9978-1496ab89313e 31495 13179 51099 #> 1614 ff984603-4e6f-4095-a0c7-11dbf89cb189 31354 13063 NA #> 1615 fa443b6d-6d31-4030-9afa-b223f08b03d7 32359 14180 29188 #> 1616 83ad043c-d1e6-45b3-9e06-3f148538db46 NA 15286 NA #> 1617 877c9dd4-a60d-4b8a-865c-ab46fb2efefc 32953 15075 42867 #> 1618 996a0607-8046-46c2-97a0-b94ff9f5a1c8 27494 10606 8580 #> 1619 9e324b1e-b03b-44cc-83b5-1d483b4051e8 31724 12703 NA #> 1620 725011ba-b505-4658-a2b1-5d41f941223e 30518 12609 12333 #> 1621 8e6af99d-a697-4be5-ae7f-f1ddc12bd15a 26643 8731 7801 #> 1622 1d334dc2-7fa8-4d4b-8359-b4bfd50b758e 27728 9770 8834 #> 1623 4ee0937c-1250-4456-93d4-2d6afa064d5a 29312 10960 10712 #> 1624 806f81d1-6d4b-465c-8a16-b1a767c30fb0 32048 13682 39268 #> 1625 a5a9fe33-3879-485e-8d9a-212d295133bd NA 15431 NA #> 1626 382bf27a-8afb-4ffe-b7b8-9a960b98049a NA 15438 NA #> 1627 776e4a24-08d7-46f4-a713-d384cd567f21 25983 9180 7431 #> 1628 a829e280-38b4-41fc-a46e-a5c8034dafd2 32766 14534 NA #> 1629 9d699fbc-ce11-4e42-a9b1-c94ecee8f613 31053 12557 46227 #> 1630 22431503-ac33-426b-b6c9-a1a5d0f9f000 NA NA NA #> 1631 59eef23b-4c9a-4b8b-b681-6d8e24aa9252 32527 13921 46948 #> 1632 edfc712a-54f7-4c34-a838-c50c14dbf7dc 32960 14574 33007 #> 1633 71a2444a-a6b1-4e62-8974-2d858e2c5b73 33266 14431 NA #> 1634 11cad59d-90dd-449c-a839-dddaba4fe16c 30123 11839 11765 #> 1635 f55053e4-4bfd-495d-981a-d62e3662f01b 8834 5685 4371 #> 1636 d7c63db7-dfe8-4cd6-a684-90342d12fa26 NA 15262 NA #> 1637 4e2bc518-b039-4341-be4e-8385fa1265c8 32363 14183 NA #> 1638 f77479d7-51a5-41f9-8924-69526dd078cd 27624 9529 8731 #> 1639 a1a73c32-c409-4ee0-8a7b-0ae589db85c8 32046 13476 83791 #> 1640 13ade86a-20c7-48fe-9d18-b3bfc135f5e9 30301 11766 11943 #> 1641 21b65d27-e517-4301-8a08-584f73226de8 32630 14334 NA #> 1642 c2a19a09-74a2-4ace-8cc3-6dfb65070a70 31500 12839 13014 #> 1643 8aa01565-4481-443a-9951-642c98ded113 32702 14514 57279 #> 1644 ed37f30a-de45-4af6-b7b5-5f218bf786ab 32949 14664 59878 #> 1645 7df12cd9-5890-4a9d-b78d-0987de2cd804 32880 14449 NA #> 1646 c97dfcb6-b999-476f-8487-f3848e92df17 NA 15459 NA #> 1647 c3859e06-5f23-4302-a71b-04820a899d5f 26686 8783 7844 #> 1648 0cc4e449-185a-4b08-9f07-c907ad0c3e05 28505 10248 9550 #> 1649 fd25a007-dedb-42db-a31e-55dcd5e17967 30795 12308 23652 #> 1650 cafbcd5f-8b40-444e-baec-a48f49d8c5f0 31427 13126 66940 #> 1651 46b16198-116f-4913-85db-2bc21462bd66 29360 11163 10760 #> 1652 bc25629f-1501-4f58-ae46-c6cf502a4b13 NA 15446 NA #> 1653 7c9e5221-50be-4c58-89f9-aa61cf67ed25 32944 14943 NA #> 1654 91bb9bd8-633c-4c6d-9dc6-e13d889162d9 31492 13171 NA #> 1655 67b1e19a-9843-4025-a32e-184f2e0a61ce 32990 14850 NA #> 1656 35c970b1-cd2c-42b8-bcb6-e0b8dbe39423 30211 12113 11853 #> 1657 a01ffd42-5fdb-42f8-95ab-157025e3fba8 32600 14306 94384 #> 1658 71d9c2a0-81ee-4788-86bb-7ae326396e73 31075 12468 48101 #> 1659 fe6dc768-d576-476c-b150-53b85af2a1d1 31888 13532 42683 #> 1660 5226f6a9-a6af-45f9-93ec-669542f3cfc9 31129 12672 48181 #> 1661 <NA> NA NA NA #> 1662 4bfd6f35-f0ac-4c43-a023-f8236df31deb 32378 13924 29347 #> 1663 4bee96b0-c9d6-4440-96a4-fffe5f14b3b7 33196 14637 NA #> 1664 91bd5e05-4549-4202-bf7b-6bbd335d038d 32361 14181 NA #> 1665 5727f7d5-35a6-4ad9-a96a-8408f8a84bd3 30679 12184 12163 #> 1666 f89a882d-d345-4966-82c4-528469b28eb6 32362 14182 NA #> 1667 9e55ec9a-ce18-4b4b-b69f-e2d82c219846 31496 12504 42345 #> 1668 01d8aee3-e1c4-4988-970a-8c0c2d08bd83 29399 11222 10799 #> 1669 c4f20113-f0b3-40ab-84b8-16c6cf4e1562 30680 NA NA #> 1670 11b9bcde-b2c8-412b-9689-4420182ca928 30682 12446 12137 #> 1671 ad9a0044-67f0-4303-ab38-a8459e32a9cb 31081 12656 46104 #> 1672 57bda6af-7324-4e96-a207-525501224c41 31911 13508 27377 #> 1673 da918fe0-eb5d-42c7-b952-2f5da5197c20 29846 11528 11242 #> 1674 ca53fda9-d20a-4bc7-b8dc-deef28355399 29239 11111 10639 #> 1675 a40a9b55-7850-4572-8197-f57a5354f921 31422 13132 55724 #> 1676 b76155e8-ea98-4dbc-b0b6-13cd1b0fc5db 31295 13252 52165 #> 1677 d014789f-6cc0-435b-bd18-9faaf12ffd6e 33296 15130 49545 #> 1678 65a08ef1-9b9e-4863-bfa0-38d70472ba4b 33264 15777 NA #> 1679 061721c5-6a5f-4343-9c47-3ce3d28c69e6 31737 NA NA #> 1680 98e92378-b01f-4fe8-ab8c-24c8e186a74a NA 15734 NA #> 1681 d605a0ff-be2b-4e1c-9486-57dce43df0b6 NA 15738 NA #> 1682 170d9d12-0595-4636-9b42-822ff93a6d94 NA 15443 NA #> 1683 ddc53ac2-7308-43e2-a059-3692636f8ba4 NA 15205 NA #> 1684 8532ebe4-1d3f-422f-8579-a683900c9c6b NA 15733 NA #> 1685 4d383922-53ab-48f8-bb8a-29176ea3ffbc 32075 13958 49012 #> 1686 c72cb618-fb6b-4327-8ced-91088c936c81 32869 14698 45326 #> 1687 1cccc54a-c168-4359-bfbc-30556db0ca73 31893 13507 51172 #> 1688 e22127ac-1bc7-4f68-bc34-6e20f82a4c24 32603 14310 49103 #> 1689 74761bca-f09c-4a06-8dd4-5f3cf2a2b897 33058 14999 43958 #> 1690 4c577f09-a082-43f8-b249-c821350302dc 33135 14689 NA #> 1691 22666f2a-8d3f-45ed-9cc6-3349f838291d 33257 15089 NA #> 1692 b222de39-0a5e-4bbe-b239-083a500194bb 32774 14702 45255 #> 1693 aee4f924-aaf5-4351-b503-9fce1ade59c5 32589 14297 50513 #> 1694 3df59064-f94f-41f2-83d0-bad6f07abf07 32995 15047 NA #> 1695 d92a275a-a102-4768-965b-60fffe155288 33263 14980 NA #> 1696 58643249-5d94-48a2-8ea2-13cab4ca2a89 NA 15616 NA #> 1697 4122df56-465d-474e-af48-4f0467f69ca8 31736 12680 NA #> 1698 cddaa0c5-2d55-47cf-93aa-cfa344604710 33247 15015 NA #> 1699 724c3e97-bd2a-4d48-850e-352829e51708 31966 13802 48706 #> 1700 21c60b9f-98f3-4b6f-8911-89aba2622347 31165 12993 49935 #> 1701 8bb5c7ef-e7be-4015-8874-2f0982286acc 27541 9391 8648 #> 1702 3f44e069-a9c7-40dc-bfa9-cd403ee9cdbd 29280 11162 10680 #> 1703 17bb3390-5232-402b-b229-c478b22dd200 NA 15591 NA #> 1704 9b76763e-1030-461f-900b-fba8e9ef9ef3 32136 14015 NA #> 1705 073d1bf8-7a0e-4c2f-b890-dbbd47978737 33252 15087 NA #> 1706 7e4f9b27-edc4-4f5c-b77a-81604220a454 32130 14014 38540 #> 1707 40ced645-bcfc-495e-a635-15f811747bab NA 15737 NA #> 1708 9290324b-eb17-423b-8019-e5d26839fd45 31003 12853 46290 #> 1709 <NA> 30372 NA NA #> 1710 7f97446b-4e10-4b1d-b68c-9b1bc7f1c85f 32667 14354 NA #> 1711 2b90e091-ef78-4753-93eb-0acf3632c206 31977 13673 NA #> 1712 13a9ad48-6886-4390-b2d8-9c79cda111d1 31092 12689 51029 #> 1713 43e0c2d2-1603-4935-b528-dca73b40e889 NA 15736 NA #> 1714 34de33c5-fc2c-4818-aa03-294e28cbcfa8 32665 14497 NA #> 1715 2ceadd29-bdc5-4143-b4a7-0533050e0f53 NA 15628 NA #> 1716 d0412c6f-ac97-420c-a9e2-1ca587c480b2 32135 14013 38268 #> 1717 42c12021-abf6-40fa-b989-7ea52d0e7070 NA 15228 NA #> 1718 eacc232b-701d-4a67-9ce5-61b9b931fd42 31130 12788 50130 #> 1719 13c4b449-65e4-4a3e-9152-85e9cbb2b8c6 29243 11034 10643 #> 1720 c16fcef9-ecdb-4696-9c92-5d5b959aafeb 31117 12846 50879 #> 1721 a4ce9a04-668a-4120-938b-3f05983cc0f3 31214 12716 50592 #> 1722 210bfe87-1c9c-48c3-951c-81aef4b2c763 31988 13773 48498 #> 1723 49abd11f-fe2b-4d15-99ed-f316d2ec67e1 33261 15090 NA #> 1724 a0ebc174-02ad-4bf4-8c0f-517d04a29a95 32754 14390 42845 #> 1725 7874842b-9b5f-4307-81cd-37f48e981e9f 31201 13008 50959 #> 1726 3b676675-0ed6-4892-bd6e-e03cd92596f2 33193 14611 NA #> 1727 56b26b71-8f1e-416c-a7e5-62cd67c98f4b 32306 14127 94369 #> 1728 5fb654f3-cc56-42ab-842a-5eb8c3cf8999 31162 12890 31982 #> 1729 ff826814-d167-4337-a9a5-9d0ac09ccd6e 31390 13413 46167 #> 1730 d24f72af-88e3-46d0-b132-1fe77e5c893b 31059 12848 46249 #> 1731 ec810fdb-ae6f-49ad-9538-31d1e6dfa578 28445 10270 9490 #> 1732 8ef99bbe-602c-4796-aa04-833f357991ba 32126 14016 13976 #> 1733 b7a0f6d0-af4f-4134-8382-c59c4283576e 32001 13497 35941 #> 1734 e564d902-3387-40ac-9428-774e367a3f4d NA NA NA #> 1735 24c73eb0-7260-46cb-820d-7a64c71e499a NA NA NA #> 1736 14ab97c3-4ace-4bb6-99de-3b22dcf610fe 32920 14606 41813 #> 1737 9e885643-3f46-49f4-94e9-714a3b1f586b 31393 12701 39316 #> 1738 65b9a754-40b9-446b-b9c0-b2dee46ba3f6 31929 13574 36800 #> 1739 13c216ca-a01a-46a8-98fa-4fd1d70cbf00 NA NA NA #> 1740 7191cfa4-01c7-45ed-95a8-0d503ed1cc1b 32458 13725 32587 #> 1741 f1ce3e7d-6afc-4db4-94f0-475bd63507b3 7804 5005 3000 #> 1742 1073ac8d-d12f-4ad0-845d-5351503931bd 31727 13323 27626 #> 1743 61980614-1609-4b68-b11f-05aa30fefb89 33149 14954 NA #> 1744 380435a9-1833-4381-a12b-498a43732798 26350 8381 7252 #> 1745 2ab1b694-1013-4661-85d4-55415d3b147f 31803 13403 46454 #> 1746 a577ef90-17c3-4dbf-b6b8-e054f21a778d 32581 13566 29838 #> 1747 ade43b1a-0601-4672-83b6-d246bc066a19 9265 5971 4924 #> 1748 da837572-0558-4946-9af4-aeb11582cca8 33258 14429 NA #> 1749 eb3bb101-aacc-4a94-bff0-7ad14d02db9d NA 15323 NA #> 1750 74980532-8158-4b56-91db-5053878737b4 32722 14383 57206 #> 1751 748d5fdf-8a06-4cc1-a8b1-257f4377236a 32915 14625 NA #> 1752 70110b01-060d-443d-b799-5d4edc9272de 33297 14925 NA #> 1753 380c4d9b-d4c8-456c-ba50-25519edde899 31902 13450 41193 #> 1754 8da63045-f139-4422-9bd7-efe46c7fcf13 NA 15285 NA #> 1755 39cb1520-dda8-4167-95c4-4947c8383bc4 32806 14586 47338 #> 1756 bdbb1693-3509-494c-8308-ae26a415fc96 NA 15322 NA #> 1757 0df7912d-9e81-47ea-b4f7-d04986df4ee8 29344 10854 10744 #> 1758 3a337668-7978-4310-b17c-8e1279ba4a4d 33044 14377 NA #> 1759 b5e95ece-3b71-439b-b7b4-ae102f9e7c08 32125 13711 47311 #> 1760 6414998b-5831-44aa-8bd8-39e42a323c2c 30373 12316 12206 #> 1761 618bedee-9259-4536-b0ff-fec98d2a20de 26664 8628 7822 #> 1762 cdfce34c-8220-4074-9ea3-70c5593cd38b NA 15731 NA #> 1763 a8c43042-d738-44f8-94ad-c8cb0f2b7be2 28275 NA NA #> 1764 7eceb016-4032-4435-ada0-cf10dc94a5f1 NA 15282 NA #> 1765 5521ba64-e615-4d50-b9bf-490498571ac7 NA 15467 NA #> 1766 caab0f2a-00d6-413f-8ac1-8f01251d7ff9 31389 13098 NA #> 1767 8e1285f7-6e4c-41e4-aac9-92e09f9f32b2 32727 14430 47447 #> 1768 9a2cd41e-a6e8-42d6-aad4-65c42939d733 33253 14402 NA #> 1769 ccf4746d-903a-4d51-8874-30953a304a84 33254 14926 NA #> 1770 3e618eb6-41f2-4f20-ad70-2460f9366f43 8826 5581 4363 #> 1771 2806e915-c46f-492f-8a29-71d3a85e5620 30182 11863 11824 #> 1772 7a5ddf17-b814-4f2c-82de-b73b52ef53be 32179 13928 NA #> 1773 0d484e6b-f3ba-4cc2-84d6-6034dd1ae509 31768 NA NA #> 1774 7dc49535-f9dd-44b0-94f2-08ac6470130b NA 15229 NA #> 1775 8a55e15e-9385-4648-8123-bc5f50f6b304 27689 9702 8796 #> 1776 8b41bb43-5c5d-4813-8430-8199bc8841f0 30421 12340 NA #> 1777 68b3f7e5-cc33-41e1-833c-8f48cb70bf72 31810 13555 91247 #> 1778 e11ce848-c797-460b-bb46-6b9ceae48542 31676 12669 50564 #> 1779 02b08a8b-a3bd-44d1-8930-e6f51b029a22 NA 15218 NA #> 1780 479b4819-3377-4255-9156-c1ce82cbf1d4 29342 11178 10742 #> 1781 86099301-67d0-4370-8e42-d14f34bbbb91 30422 12357 12040 #> 1782 ffe9639a-7ce2-436a-a291-868e66e9dab8 32976 15079 43000 #> 1783 323db6a2-c9bd-4598-920b-480c102902d3 32992 15086 NA #> 1784 de185684-3a02-4e63-b2b1-405e562b3a77 25189 7924 6457 #> 1785 9e82eb73-21f0-469a-ac85-b4fde70a6a4e 32542 14307 56123 #> 1786 279be739-bfd5-47aa-8302-fc58bcba37d5 31892 13668 33880 #> 1787 d89b689d-8095-4c08-8ebc-008d9c3bf41e NA 15763 NA #> 1788 f3a7ab39-ead2-4dbf-b760-d652b8a26853 32856 14521 41662 #> 1789 fb888bc6-7899-4fbc-b520-52bad1547ee5 NA 15433 NA #> 1790 cdd751e5-a157-433c-8f8c-8e5c4148734c NA 15212 NA #> 1791 01c52412-7257-4213-b8b3-effa7c5dd5c7 30987 12464 51368 #> 1792 ba760d2d-a35a-4f9c-912d-05217aff53ab 32985 15083 82302 #> 1793 dcbf373f-7336-457f-888f-02596a391d89 NA 15311 NA #> 1794 1ce88c74-024e-4288-94ee-5dca10362153 29237 10914 10637 #> 1795 bab100c6-1a6c-4411-9286-f719244f5d35 32982 15065 27949 #> 1796 76f3c2ab-9e4b-4aae-82f4-c6b1f73e808f NA 13053 NA #> 1797 9da6119d-b135-4b90-9f9d-7d08ab00b15d 31860 13757 49949 #> 1798 6c48b2a7-924e-43ec-bcd9-f1cda06b2332 24021 6681 5571 #> 1799 efe64fc8-9987-4fe6-b7a4-e2ff363cf443 28604 10333 9649 #> 1800 7305431a-7db7-47a0-ba82-cc4faff5f278 31694 13330 66959 #> 1801 1a8230ec-fc21-4aff-9624-0f87add5f952 NA 15609 NA #> 1802 39fd7f0b-4be2-4fe4-b228-65c9e5442552 32991 14770 NA #> 1803 c82a3f67-90b7-4cc8-ac3b-e6cf469cc541 31054 12785 48940 #> 1804 6ee96e28-60b0-4e30-b014-6962e7d1c3db 32074 13706 38524 #> 1805 1ec59515-dc81-4aef-9b23-911801790d72 NA 15783 NA #> 1806 40cb8436-1bd4-407a-954e-7d3fb0ec51f7 NA 15764 NA #> 1807 538cf938-8f65-435f-b8fd-2856ce5c4e6d 32987 15093 40117 #> 1808 375b0d7f-8d03-4111-8c1b-62907f0326a1 31366 12775 NA #> 1809 cefd0600-93f2-4e0f-9624-81e3dc495c1d 31808 13496 NA #> 1810 3f677102-c26e-49e3-9b59-48bbf0603e81 NA 15534 NA #> 1811 d468dfe5-8ad2-4c8b-b7ba-0962316a2156 31962 13814 51276 #> 1812 c0ef478c-d387-40ac-b35d-4bc034f24a12 NA 15378 NA #> 1813 c6303f3b-9c18-4afe-b0bf-d8270ca9db21 31089 12787 44485 #> 1814 79bf0ca5-a8db-4c39-a40b-67674ccb60d0 32693 14434 58099 #> 1815 84b2d5bb-4d5e-4661-b9e2-b3049f3d1c03 31571 12911 50116 #> 1816 4f845d14-46aa-4748-bd7f-5fadec6a3199 NA 15784 NA #> 1817 40941261-cfd0-4e8d-b895-21fb7e20b407 31018 12844 50084 #> 1818 ae372a9d-6f85-4e37-a910-47fd77483ebc 32977 15080 43856 #> 1819 c5e24b59-cafa-4174-b5dc-e02f5934fb2d 32032 13855 45378 #> 1820 30bfd566-e867-4ee7-bf19-d36794ed39f1 NA 15603 NA #> 1821 d073c3c0-b9b0-4382-84d0-5de88a427ad6 29322 11030 10722 #> 1822 3a212660-0028-47dd-8ef2-362edd1ea2b2 31827 13938 22508 #> 1823 e90a74e2-8e6c-4442-bdad-645ee61e9cde NA NA NA #> 1824 77c36756-9d3a-4746-bba1-8ff32542cf74 9803 8517 6979 #> 1825 e735b2ad-8c89-450b-8241-3f602016b897 32980 15081 49589 #> 1826 2154a63e-279e-42bc-b6f9-5a849cc02cfc 32983 15082 NA #> 1827 d46e3db5-f89f-4211-b8a7-baeb1a35df46 26764 8730 7923 #> 1828 4c751137-cb2f-4399-9e5f-1cec4b59611b 28194 9677 9289 #> 1829 b04382c6-7138-4dd4-8ad8-3e10ce8403aa 31125 12797 23918 #> 1830 c44ee7df-a1fb-4fe3-a853-2c34f4e52297 NA NA NA #> 1831 38727423-4af4-497b-ac80-473dbfda61f7 NA NA NA #> 1832 65bfa813-7bcb-461e-8716-7072e4705ad1 31488 13175 46904 #> 1833 72c54860-db73-4fe1-bbf7-8fe1413c0952 NA 15177 NA #> 1834 c30928f5-eef3-4aa8-be16-fa5d960b955b NA 15554 NA #> 1835 42931961-6deb-4e33-bbe9-bf8f77d29da0 31923 13659 91462 #> 1836 3d169c3f-93fe-44b5-8495-681241f285bb 30772 12437 12188 #> 1837 2f80e90d-dbff-4395-81c9-4e61c247d0f1 23998 6540 5548 #> 1838 850b8283-0a1d-4a47-8586-8398df905c58 32232 13684 46252 #> 1839 d57ef862-8cb9-4f27-a294-f86eb26b6cce 29469 11027 10869 #> 1840 2b129eab-b967-4d0d-bc6e-28c0781bcdd3 28861 10849 9728 #> 1841 56ab0b58-7b02-46d9-b15c-cb498dafbfc4 NA 15703 NA #> 1842 fa958bf2-a299-4b4f-8e69-ae47a389b921 30425 NA NA #> 1843 0045a36c-f464-49e0-a25a-9210edc94bc1 9678 6162 5214 #> 1844 af291d43-a51f-44ce-b8ac-430ec68c78c8 31998 13627 29466 #> 1845 f0a8f8e3-b9e9-46ed-85e4-eec6452a8a44 32676 14446 28237 #> 1846 62542e04-3c44-4b75-8165-be674c8be75f 32782 14494 13750 #> 1847 e5b8c439-a48a-4f83-b63b-1a4d30e04cd3 30423 12401 12164 #> 1848 06f3e98d-7d73-4007-b673-4a74ed72bda3 32975 14919 NA #> 1849 21e671a3-1260-4e1a-954c-005a290cf06b NA 15432 NA #> 1850 e6c3f896-0223-4fc2-be09-c959ea4a475c 31221 12724 29539 #> 1851 22ec09a7-6001-43b7-adf9-cf0df941ad0e NA 15785 NA #> 1852 d6e66d88-b014-4de0-84af-45358dc4bda0 NA 15765 NA #> 1853 2ac90a86-c585-4c12-894d-a805a0c94cc3 NA 15252 NA #> 1854 4f246e92-3d21-450f-977a-dc16892c7238 32456 13602 91014 #> 1855 21a33144-63ee-4125-ac44-3fc911a39d50 32551 13686 47123 #> 1856 3b7a1409-d154-4e5c-8c94-9d4a0e0993c7 9353 5981 5012 #> 1857 5cb0bf9c-03b4-4201-97c5-a59c6db50841 29789 10885 11160 #> 1858 50f5bd80-5bd1-46ab-992d-2492ec6c0726 30440 NA NA #> 1859 e4edfc2e-c6f7-42fc-b8b1-8e5282457000 33295 14877 NA #> 1860 064c4eda-1b10-40ac-a9d2-66caf76a213a 32511 13615 34427 #> 1861 8346e196-ce56-4cfd-8438-f3c39131b327 32547 13999 91472 #> 1862 5f424505-f29f-433c-b3f2-1a143a04a010 26699 8627 7857 #> 1863 a42da2a1-42c0-4d45-85f0-ab5c9af37e6f 32890 14414 28025 #> 1864 857fcc59-10e8-4194-bd7d-41bc5f72a47f NA 15447 NA #> 1865 ec7af934-a7f3-40f5-9fc0-210022dd6180 NA 15786 NA #> 1866 fc7f8c60-4fc2-45d1-9611-e803dbb1611e 31225 13016 48223 #> 1867 8e3dfd72-38cb-4b36-b76f-cdd877eeb31f NA NA NA #> 1868 4c449f2b-a566-4c9c-882c-a70991d1aa54 32821 14428 40221 #> 1869 ae9495b2-4c62-4e14-8e43-beb53e1ae28a 32201 13575 34164 #> 1870 12f27311-7cd6-4ca5-ba7d-571e9de5e1eb 30120 11885 11762 #> 1871 e190fe08-2f57-49fe-858d-9762dfe1ee7b NA 15528 NA #> 1872 bbf8d4d6-8f5d-4847-ad1e-0d205d38f0c5 29283 11126 10684 #> 1873 e94ac14d-0122-4dc8-ad20-b71226cb8cfe 32348 13701 56167 #> 1874 b34aa9fb-3f93-481b-8f68-7330c39e6e20 NA 15387 NA #> 1875 23525664-b547-413b-9221-b09091b90edf 32809 14709 55619 #> 1876 8491b12f-68a7-4227-9b8b-17630ff52101 29090 10775 10057 #> 1877 89f84d50-39b0-4a76-a004-d18b1c255413 29412 10896 10812 #> 1878 fe85708b-4644-4f77-ba2b-5726ff83439a 32689 14547 28080 #> 1879 3390c94a-f1f2-4be0-9787-5cc9fd8c64f7 30664 12421 49453 #> 1880 c5e92aff-ce1e-4ce0-b838-6149f8ce875f 31872 13572 41968 #> 1881 a278c39e-7d4d-48c2-8145-2f8ad882ebeb 25772 8172 7064 #> 1882 079575a5-029c-4960-bd45-66cd63f659fb 31961 13793 48233 #> 1883 ff89ab1d-4c9c-4e8b-943d-6a9305c5793e 30212 12013 11854 #> 1884 7ec05721-dba9-4e27-8cf0-92d626754624 27661 9612 8768 #> 1885 120bb81f-08e5-493a-ab96-c7a65bb110ec NA 15676 NA #> 1886 829307ad-fb1d-4c7b-b073-3098be9464e7 26693 8646 7851 #> 1887 3d1ff04c-344b-47bc-8500-d51b897d727d NA 15699 NA #> 1888 dba7bc1b-c414-404a-8845-4b0245df64a9 32552 14267 51405 #> 1889 5a90f110-9291-4688-84d5-2730898ba0bb NA 14941 NA #> 1890 c8f74b89-065c-4857-be4e-4fcf897a5bc0 NA 15340 NA #> 1891 959bc1bc-f0f4-4f57-8d9a-3325344781ca NA 15473 NA #> 1892 c281fdc7-76a9-4734-a13d-19ad354c67db 31723 13318 49120 #> 1893 26b6ac3e-facf-48eb-ae5b-afd30b2544b2 31859 13546 34646 #> 1894 741c1ab2-378b-45ce-86c7-533e6a031f22 29248 11082 10648 #> 1895 f50ae8f1-aebd-4e3d-bbf9-f92921044e72 NA 15472 NA #> 1896 ed2317f2-1cc5-4a84-a46e-7423a9a1c730 29299 11142 10699 #> 1897 61b04d13-ebdb-49eb-9f5a-ea85355d6360 28580 10330 9625 #> 1898 108759bf-8c78-41c6-a409-b87c63985c21 31836 13649 25955 #> 1899 83436be9-f646-4cb6-94e0-99a939298e3f NA 15303 NA #> 1900 41524c86-8ab6-42e9-871b-a00e29cd2705 29303 11146 10703 #> 1901 0cd46b5f-5397-4947-9331-8d3420af7852 31420 14560 48993 #> 1902 3ae55cda-ad32-46c5-bde7-470755f37f3a 31938 13459 26316 #> 1903 461b76db-dbf6-44c1-8cfa-a3c3edb100fd 32031 13818 50228 #> 1904 2f4db68e-75ac-4284-801f-6d81ae548e54 NA 15238 NA #> 1905 c187d2b3-5d96-4035-a166-db6689b463bf 29381 11069 10781 #> 1906 9f82dd08-c561-4a5d-ae14-cacb30861348 33172 15166 NA #> 1907 bb29cf6c-17a4-4106-9b9c-47d2d9c0e6b9 27972 9685 8976 #> 1908 9d53adf2-4c3f-48a4-b7f8-6bb7f207c1f8 26672 8669 7830 #> 1909 74473bcc-5bdb-4650-8549-8a8a12874cbf 30116 11945 11758 #> 1910 7bce07de-7179-459c-97a4-279fb53641a2 31612 12973 49601 #> 1911 8b6a4108-ccfa-4af4-a37e-c617d5793de7 31334 13423 66935 #> 1912 d2d8345f-8eaf-4f61-8df8-df6e808b6aec 23978 6583 5528 #> 1913 7ade135c-0760-4548-b7d9-cf1174e2be33 32344 13806 34934 #> 1914 1ffa285c-93a8-4af7-a2a5-c4fff41bb0e8 31483 13157 NA #> 1915 <NA> 30636 NA NA #> 1916 55fe8587-9190-4ad9-8517-fcb330341ed3 32779 14626 41715 #> 1917 7bb70550-c28a-4e47-9a13-cc0c0fef8b38 31137 12842 28121 #> 1918 621e177a-e23d-489e-a747-369eb662f0de 32974 15017 NA #> 1919 7c1a8ecd-e3e5-4123-b89f-36e58b99126f 30633 12428 51674 #> 1920 3f95afdc-2140-424b-8250-7d4e273c2efc 33318 14902 28987 #> 1921 6e16ec27-2cd9-49b6-848a-df17d654683d 29347 11098 10747 #> 1922 41248bff-35b7-42bd-be6e-087fe45d274c NA 15700 NA #> 1923 b9f364a0-5553-4475-8388-6dfd1d7a2e62 32770 14690 NA #> 1924 03af62dd-c843-4790-b2dd-bd5b5897ed94 29254 11108 10654 #> 1925 385953af-6b16-42b8-9a58-23fd8d50d935 29718 11113 11190 #> 1926 c3f75363-b89a-4d6f-be40-e10ee2704c6c 32340 13799 49887 #> 1927 d8f5b9b5-4cbf-4817-969f-99e638313383 30296 12207 11938 #> 1928 4ca6d7fd-43f7-4c0d-8992-aa28d91710e6 30428 12356 12039 #> 1929 313aafe1-9b5a-4565-a713-2f2b230f95be 33317 14797 NA #> 1930 378df3b9-0a5c-4d68-a173-79bc0df07a66 31251 13128 27036 #> 1931 68b9cbf0-105a-4a80-ac2b-2049fb3cdabf 30963 12542 NA #> 1932 58b30f9c-384f-4e36-9e79-d4442ce8bb31 7257 4532 2298 #> 1933 c9e9ca73-6605-42cb-ab44-2230dcea187a 29339 11028 10739 #> 1934 c34c65c7-541a-4f33-8473-beb11e3b43ad 32341 14114 46085 #> 1935 9294afec-7804-41ba-b948-51a213705abb 28643 10512 9688 #> 1936 9dd63f16-866c-443a-856b-671913195f3d 28454 10291 9499 #> 1937 cb3b5df2-231e-4040-867e-5b6020457be8 27216 9182 8277 #> 1938 c0561c0e-ca00-48bf-a38b-2636451c1640 31583 12679 46843 #> 1939 47e64968-acea-454d-a95f-107a90960aab 31035 12852 34693 #> 1940 eac6612e-0eab-4a65-9057-60fc95d9ca3a 33326 15145 NA #> 1941 20a45a8e-a917-439d-ba28-33b84ab2401e 32345 13652 47058 #> 1942 50bcb5d3-62fb-45ac-b25b-5dffbff0cb0c 8119 5150 3459 #> 1943 b751192c-daae-4ea6-b4a8-c3639047bc45 NA 15450 NA #> 1944 e4085e9f-ab3b-4dd6-9cb0-bf6f2bd428fd 30985 12526 47013 #> 1945 f28f45f8-a617-4caa-8332-ccfff0dddc07 24155 6756 5702 #> 1946 a6038c60-5c9e-435f-beb5-e0e02b07e764 NA 15698 NA #> 1947 36f93677-a95b-4362-ac5f-6722f5c05b6d 32386 14171 36038 #> 1948 32b2d6f6-a636-4d73-927c-361c1aa809f5 32942 15012 NA #> 1949 9f026fc0-4449-4dc5-a226-2e2830619381 27564 9317 8671 #> 1950 9613d5fd-95c6-456e-8d78-50a0a309d7a1 33036 14888 NA #> 1951 e23505d9-b677-4a86-ba17-564c165a6e66 30822 12363 12180 #> 1952 4e4ba1f9-35c6-4e41-85f5-d8f12d32f459 30284 11840 11926 #> 1953 7c16c04c-04de-41f3-ac16-ad6a9435e3f7 28390 10074 9435 #> 1954 5df36deb-d147-42e9-9059-11cb86d35b43 31206 12617 45731 #> 1955 61694ab9-b099-408e-b48d-6a643dd069ec 31856 13582 45953 #> 1956 a0b93053-d349-4dd1-a840-24577102699b 29307 11002 10707 #> 1957 09fffcf7-f667-4de1-ab28-40d7609fe430 NA 15520 NA #> 1958 c78c299b-7c73-40fc-9155-2ede7f9849c7 30000 11522 11395 #> 1959 62d4e94c-443f-44ed-9404-c6d6bdd9aa64 26822 8763 7980 #> 1960 3b4fbc3b-3481-4117-9b27-32fd31d02aef NA 15463 NA #> 1961 1ec1fe34-a835-4114-92e6-4102dfe05951 NA 15400 NA #> 1962 380b6bd1-1ef3-4cc2-bf3f-c992ba1151e7 NA 15203 NA #> 1963 bd30c0ca-196e-4f7d-b37d-d4d52dd40b62 33315 14869 NA #> 1964 7de609d9-4060-4011-941f-21020500cb9e NA 15615 NA #> 1965 c257b2e6-dfc9-45c8-b30c-a497f2ce82a2 28582 10250 9627 #> 1966 14c97c9f-26e8-4944-9299-f90de6aeada3 28592 10215 9637 #> 1967 d3fab07b-f02a-433d-9612-cb0a751f324d 26416 9203 7406 #> 1968 81fb7fa0-7ad9-4ef4-bc33-9df9574714e5 29944 11397 11326 #> 1969 9c3a67fd-5c6e-4689-9e08-9ff6d4db6c9a 31969 13822 47043 #> 1970 d0879c68-6387-4edc-b55b-07e128546ae7 30322 11853 11964 #> 1971 8a453858-7309-49ae-b8eb-de691847393f 32682 14473 61102 #> 1972 a3055591-6c57-4ff0-9a2f-5e2547c62820 31464 13064 48100 #> 1973 35341f6c-bca9-427b-a8eb-f9a24a334184 31226 12493 38276 #> 1974 1624b5cf-0032-4093-af56-e4dea4f64149 NA 15533 NA #> 1975 9b13d2bc-b22c-4f91-8eeb-309f43422d6e 27619 9684 8726 #> 1976 a28f7368-0306-4d20-855f-285a1a09c09c 30150 11751 11792 #> 1977 577c7e9d-e647-4c22-9371-e51d282f5cfd 29791 10998 11259 #> 1978 34c523c7-bc58-49f0-a9cc-f9edd91fe00f 31981 13749 47509 #> 1979 b2a9b0d4-b5dd-4d6c-9ad3-8491502edb51 31198 12825 23670 #> 1980 5abee27b-2710-46ed-b110-fece5c2654e8 32751 14577 28486 #> 1981 977bcabb-f79b-4e96-91f9-c8e44f73c3e8 NA 15333 NA #> 1982 fcae1e29-5ca2-463e-92a6-0be893f5eb4a 32342 13479 48143 #> 1983 8482bc94-0eb0-4e92-8f99-ced135f3cd5d 28026 9284 8999 #> 1984 abedbff7-21c5-415b-b890-259b5bebf400 30418 12450 12227 #> 1985 7e7b5ec8-dcf4-409f-a0eb-99246b7493c5 29760 11176 11102 #> 1986 8d56094a-7aaa-45fd-bfb1-348f2a994d99 30716 12930 12259 #> 1987 aa1debbf-691e-481a-a004-9e25e2e80660 NA 15597 NA #> 1988 64b1bda8-8c0d-4c17-b8a9-6b5ef292c924 28415 10412 9460 #> 1989 76392d70-bbcb-429c-82df-853b72a926de 28637 10509 9682 #> 1990 5f3f1b8b-2bc2-4e0f-9466-bccc25c32b1f NA 15739 NA #> 1991 7af54f9d-0a09-45ce-b96c-a179bcbb11ca 32381 14165 NA #> 1992 f1eaad31-8784-4db3-b52d-ea0fe22761dd NA 14721 NA #> 1993 30b045f1-b8e4-4ae9-b062-5181847b508c 28435 10416 9480 #> 1994 7c73efae-bf01-4226-a2f8-ec6243da9b99 9467 6221 5127 #> 1995 03e6a751-5206-4f9e-8ffa-f92672f7c159 32443 14077 50356 #> 1996 06a67b3c-d482-4767-b2ce-49edd8777525 29876 11362 11218 #> 1997 e6bcb4f1-c2c8-4dd9-b826-af01182875f2 29272 11061 10672 #> 1998 d766ee35-8ece-447d-94e6-1d33ba427b02 28835 10430 9892 #> 1999 6750320a-1b60-4bf5-aad6-7c605a88d5c6 33111 14961 NA #> 2000 30915dd4-f19f-48cd-8425-f2cf29246b66 NA 15196 NA #> 2001 f0c60c6e-513b-40df-9794-d555ed59202f 32740 14696 43049 #> 2002 b4b346b6-6175-407c-a6cd-103368a1609f 32700 14713 61155 #> 2003 f8f7c003-1c6d-4715-bef7-5238bdb600dd 31754 15178 51427 #> 2004 67d2e7dd-e937-49d5-bf37-0efed947609f 33320 14398 NA #> 2005 160934d8-6fac-4a5f-8121-d8bca301d1b4 33243 15029 NA #> 2006 2300fe3b-c81f-4786-ae0c-0c229644239d 29266 11155 10666 #> 2007 14766908-6ec1-461b-b6fa-e874287a6517 32824 14730 48547 #> 2008 c03646a8-503b-49a9-8251-b9c44f13a2ff 32440 13787 18645 #> 2009 890deaca-e542-4565-95f7-b0bacc9c46ba 31823 13932 92926 #> 2010 c85c0efc-3391-4a8e-b8a4-370b32fd09ce 31208 13011 66917 #> 2011 e9746156-842c-475e-806d-4bcb26032e3b 33239 14715 44035 #> 2012 60d48e85-931c-45dc-b62f-024503a2e09b 26705 8672 7863 #> 2013 6c640668-de81-49c4-a0da-e367e1747923 31845 13758 50293 #> 2014 f24fb71b-8799-48d8-aa5c-510a40cfaeed 32459 13939 49948 #> 2015 54814199-dd18-408f-9dc4-ce59a121431b 30655 12141 12214 #> 2016 93245153-0ae0-4e2b-b9b7-e22c23b4f86a NA 15637 NA #> 2017 9666a6bd-4321-4acd-823e-b872943a436e 32726 14538 44582 #> 2018 fde9c52b-0e2f-46e7-9b0e-9ada612ecec3 NA 15412 NA #> 2019 18ac09ad-486a-4f94-99d0-2099aa85b746 29947 11128 11329 #> 2020 0dc9b1b4-8974-47f8-9faa-006f7cc72de2 NA NA NA #> 2021 5ffb654f-0de5-424b-aa2f-ad511deb5b51 31199 13007 29578 #> 2022 5aac7b03-3b39-4084-bda5-8423abf28903 28431 10354 9476 #> 2023 7b47d190-168b-44bc-bb91-a688fe28f768 31983 13887 30267 #> 2024 bb4f4ea1-d62b-4a60-a597-6fbdf8f481f4 30343 11991 11985 #> 2025 28b0d2fd-18d0-442e-a9ec-70b2f8065ff2 30221 11959 11863 #> 2026 16661483-3da0-4461-ac44-46fddb386e19 30188 11981 11830 #> 2027 d3ba3eca-c71d-449b-b5f1-7397a9cab3f1 30736 12383 12236 #> 2028 7c7d286f-5c3f-4fe1-864d-9351499bd530 31111 12829 50657 #> 2029 3b4c4797-d35d-4885-93a3-06d85242b522 31815 13561 15301 #> 2030 f21aecce-d8e5-4a11-9ade-9307e55952a2 33238 14891 NA #> 2031 53e7c80e-8bf9-4ab2-ab3e-80cb556ea784 31043 12596 28091 #> 2032 f6d7cf0f-72d2-473f-a44b-4a253587ca0f 29448 11234 10848 #> 2033 2e0122de-812b-44fa-8bf9-084695be95e3 NA 15263 NA #> 2034 5a422c26-d686-4ad2-af10-d7d691150e27 29807 11474 11169 #> 2035 1f3d0803-dad7-42dd-b149-da0c65f5a87e 33361 15170 NA #> 2036 1b3524b6-bc24-4d9a-947f-ebda67be1c41 32855 14651 35517 #> 2037 d4b7a6b6-9ad3-4bc9-b781-dc09e9a5ba01 28709 10802 9989 #> 2038 a3855ea8-e71c-4028-86fb-5a1abbd94488 26634 8729 7792 #> 2039 c7ebe543-7fec-4123-bc6e-b0d509af22a2 32708 14589 46139 #> 2040 df94ce97-af26-4f12-be2d-14779270e670 30272 11792 11914 #> 2041 1fcb4a37-ca9d-44ef-8f2e-7d4be04c32ea 32781 14476 41471 #> 2042 6d96bf47-e8c7-4683-8291-74dc426a38cb 31910 13581 38554 #> 2043 d0ca076f-a25d-436b-837e-07dde16be635 31869 13448 46254 #> 2044 478f29fe-7f2e-48a0-b086-b8c509621689 30616 12073 12114 #> 2045 ea33f7b5-21ab-4c76-bb68-252cbeda6de2 NA 15556 NA #> 2046 412be3f1-210a-44b9-828c-d35cc6a1119c 32688 14513 60816 #> 2047 f9093247-ea7a-40ea-a100-bc5103fa5cfd NA 15545 NA #> 2048 5e8ec29b-9769-4071-b9f8-3722cd138fc1 31403 12940 31698 #> 2049 5f3cc875-e802-46b2-81ad-3ffb7a3a1662 28292 10053 9277 #> 2050 ad2258ab-67f0-41c2-bcf3-f3ba145187dc 29325 10919 10725 #> 2051 26ad9c27-de38-495e-913c-6fb2428e76d3 32675 14465 60326 #> 2052 7debccec-8ec2-443a-b4a7-a52f14464883 33279 14846 NA #> 2053 5c424ecf-07c8-471e-a400-8d5f834af2e0 32439 13913 28219 #> 2054 0dbbd211-0372-4751-9751-e4df4ab1f8eb 33265 14453 57472 #> 2055 cad49098-1523-4e52-9f50-caa3423e1bb6 32066 13505 45914 #> 2056 7d4333b3-8979-4920-9cfc-13fce89b7a3f NA 15331 NA #> 2057 38abfa4e-ad62-4392-89a0-ac2a012efd87 31986 13510 39258 #> 2058 0e7e6cbb-0e88-4a74-b457-1753851e37f3 28990 10202 9902 #> 2059 94001c44-9eea-4d2b-a766-079ddcb2e8b0 29479 11244 10879 #> 2060 53fd9a69-1b10-4fd6-90e7-ee84cca9e041 30577 11889 47149 #> 2061 144b61dd-de7c-4433-a3dc-606dbaa8e897 NA 15788 NA #> 2062 57df4c36-e48c-45a4-a1ae-f6e86bf5d21e NA 14760 NA #> 2063 7e42a22a-c47b-4387-aeeb-2cc2e76dc1d8 31093 12807 47257 #> 2064 87171077-4c1c-4b67-b159-2cc6242988e0 30158 11898 11800 #> 2065 773edf56-467e-4eb8-9bd6-c8c5ba93f68b NA 15692 NA #> 2066 002adaa8-5dc2-4b4b-95bc-53a38dce3849 32442 14282 47358 #> 2067 b72e251b-b993-4d6c-b470-10ee78178d78 32094 13666 29686 #> 2068 1012cbe0-7eba-4169-bfca-183a0204e1a7 31012 12764 47153 #> 2069 ebc576d0-a98b-4f82-aaf9-901a3911487d NA 15246 NA #> 2070 2958ea86-e2dc-4719-93e5-cc9d093ca963 28046 9491 8943 #> 2071 521f597a-0709-4cc4-afab-72d93eccb5fc 33242 14861 35096 #> 2072 0ff9a975-669d-4851-a95d-ab28d9fc29c4 NA 15404 NA #> 2073 31155d8d-181f-4e7c-9fd7-979841837d22 NA 15726 NA #> 2074 73236a66-ba10-44a6-b12f-2ca13cad33b4 32916 14504 46513 #> 2075 93cb5790-1012-4c42-bccb-5748c27ba7d6 30231 11861 11873 #> 2076 5de11f0b-8da9-42ba-9a93-db7f0a58543b 29420 10990 10820 #> 2077 e9ee9209-dd8f-4e4a-be3c-407756a2749c 28402 10152 9447 #> 2078 10952a8e-9da1-447b-a016-c699db00c5f0 27874 9485 8931 #> 2079 bd783f2e-b931-4d3e-ab71-60fa1431f598 32750 14460 61361 #> 2080 17f52030-0a86-408d-b7e3-194ed4374fbb 31601 12909 48230 #> 2081 095e0c1a-0bea-4bc6-868f-e4bbe2ce6c30 29255 10818 10655 #> 2082 9b164aab-6d5e-4459-b479-d04438c9280a NA 15536 NA #> 2083 73af6932-2701-470e-9668-02d6cb35a5c9 30350 11717 11991 #> 2084 497758de-5f0b-481f-8c68-7aa5e21df322 32447 13445 38855 #> 2085 3b8a2ce7-52d1-4ca2-af53-b7d7617936b3 33249 14489 NA #> 2086 acdd0b8b-d840-44ac-9dfa-05fe8baabe09 31850 13785 46013 #> 2087 c10aceb5-abcc-4e42-a399-cce8e5832671 32759 14363 42472 #> 2088 450f301e-e19b-4111-a6be-4bb20fbf7f2a NA 15478 NA #> 2089 2177026c-2b34-4b88-bc88-50d7c9962064 31149 12958 50511 #> 2090 6a43da23-5843-4490-8927-bd6196fe2576 33128 14955 NA #> 2091 ef3475dd-30bc-4f1a-9c44-4a8ecaca476e 32839 14522 55576 #> 2092 6c606a72-1b9e-43e6-9fdf-2cfa5fd5a0e4 32701 14548 50471 #> 2093 ba905b34-8412-4553-9055-3460368cc608 27630 9648 8737 #> 2094 9b14942e-0ddc-436c-a6be-5947a39589e5 29287 10880 10688 #> 2095 f4a5d12e-9169-4601-85e6-79bc99eab455 32346 14116 51496 #> 2096 b5fb8706-5436-422d-a4df-2d5235b17aee 28558 10470 9603 #> 2097 5aace1be-df36-4efc-92d9-b4bca2314eb2 30601 12598 12152 #> 2098 9f3b934e-52d6-4e16-ae92-d3e60be10493 24792 7300 6157 #> 2099 96fdd2ed-d54e-40f5-beb1-40c5b3fd4bfb 32049 13797 34222 #> 2100 cd09c042-0bfc-4866-8d3f-a14ef4c3d7fc 30304 12007 11946 #> 2101 e11eff18-b567-47c2-99e6-f4c6bc3d10c3 33029 14598 NA #> 2102 e135eaa4-1688-487a-a924-4d83b16977df 32875 14479 43395 #> 2103 407f1923-6659-4564-800f-25b8746d6d3e 25739 8202 7641 #> 2104 fd7b9398-15b3-4967-8758-8743006dd6ff 33107 14907 NA #> 2105 ba7fe857-df63-4aed-803a-80993b157be4 28476 10318 9521 #> 2106 1146776b-e591-4f81-8a56-459c1845bead 31235 12499 48931 #> 2107 e97a02d1-666b-4df9-bfd4-c375002965c3 NA 15444 NA #> 2108 6ef5045f-9215-4354-a1af-3f86e4c4a03d 29461 10894 10861 #> 2109 74013f08-f920-4de7-9740-cc461d84beec NA 15232 NA #> 2110 9b8e379d-2362-415f-b51d-ec3b8bedda93 31072 12812 48400 #> 2111 3a10616d-e6bd-4328-ac4d-db423b0abbdb 32895 14732 NA #> 2112 cd9b9d93-4368-4495-803e-f5d2524c8468 32085 13435 29695 #> 2113 68356887-b59e-4210-9726-828ea7f83928 32787 14612 44550 #> 2114 54475db4-f0e8-4513-bcc8-7e76362c19f7 24075 6572 5624 #> 2115 ce8b21f7-6f93-40e6-8068-0432e10d855f 32800 14499 56962 #> 2116 a091c7f3-468a-4ee8-aa1f-b8bc4cca00da NA 15171 NA #> 2117 5bd229ba-0208-4591-9bca-38e054e2c218 NA 15674 NA #> 2118 6371b42c-2783-49e8-8def-ce4d7dc91081 30168 11946 11810 #> 2119 81e211e1-547a-4475-bcf6-8c8ffde057f5 26636 8670 7794 #> 2120 9aa0b292-f4ad-4517-83e9-717567edec19 29759 11313 11101 #> 2121 bb9341c2-14f2-4fbf-9bbc-e6efb3d0f18a NA 15354 NA #> 2122 1cb784d8-de4d-4962-a775-c7379b7053c2 32022 13776 27844 #> 2123 5690a8b7-c298-426f-be4b-4bd2f0046ae5 33021 15109 47044 #> 2124 971fc9e5-bebb-4a2c-a822-8c52f92a3d07 29951 11599 11347 #> 2125 a78d3d14-3cc9-4adf-96fe-dc7660cb4c2d 32925 14838 NA #> 2126 deac735c-af0a-4f01-ada8-379ef66917ba NA 15512 NA #> 2127 63e63ae6-5a88-4b04-a3a0-5e0cb0404f95 29712 11568 NA #> 2128 a2aab80d-174c-4639-beac-e2b70bb3625f 31538 13266 NA #> 2129 0c9102ea-9fe8-4900-9d33-8eab299cf9ce NA 15276 NA #> 2130 14d47b4c-ff6b-4718-8a6e-ab9b3b82f7d0 31994 13813 50739 #> 2131 b345f3db-d5aa-43ba-9f17-914c54864236 28433 10353 9478 #> 2132 c3ef92f7-29f7-43db-bbef-4e9875d756e9 NA 15673 NA #> 2133 bf73d658-02c9-462b-b4b2-5208b612f810 NA 15462 NA #> 2134 299cb403-1cea-48da-baaa-b55510a6b78b 33034 14906 47621 #> 2135 1cf282eb-ab14-4d2d-8a0d-702ddd83cfcc 30233 11972 11875 #> 2136 c44b31cd-0480-4aa0-b500-12e9ba0765ac 29321 10948 10721 #> 2137 598a8d06-43b3-40f2-b4e1-59e06baddf83 31975 13847 49840 #> 2138 23616a22-8266-4b0c-b0b9-5f8187178168 27537 9247 8644 #> 2139 f070d4ef-1904-47f2-87d3-b9e2788789ed 32802 14740 28251 #> 2140 3a179c49-9e71-4252-96ea-e143f7d5b564 30968 12976 NA #> 2141 a774577d-68da-4381-b5a8-bc2a94b43c7d NA NA NA #> 2142 740ac0fa-f4b9-4944-9b7a-78b97c5dd1cd 26583 9967 7633 #> 2143 33f18199-2fa9-4871-b324-2547aeb4ff1a 31946 13794 45376 #> 2144 b5be5cc8-6947-42c4-aaca-090f06a47e46 NA 15194 NA #> 2145 a60226b6-cc0e-45bd-b31c-097242ae07f7 27665 9438 8772 #> 2146 53d25371-e3ce-4030-8d0a-82def5cdc600 31067 12795 45547 #> 2147 e33df0c0-1f12-450a-a178-b7e5478c479e 32476 13441 46082 #> 2148 c410eacd-2692-41cd-97c4-4d7a0eaf1dd5 32728 14518 41973 #> 2149 6ca35fe6-900c-4903-aa23-a5ca55ac6a3d 29509 11470 11369 #> 2150 60ff28ab-0edc-43e3-8517-cd57c78f6347 31032 12476 46854 #> 2151 584c0cd5-fe93-40e1-8155-9abcf06d79b0 NA 15259 NA #> 2152 8afd3fea-20d7-4a2d-9ce4-e610f7961e3e 32025 13645 28394 #> 2153 a200f1cf-c926-4e3c-a050-d46abe97548b 33060 14791 NA #> 2154 26164d5b-1e27-445d-8684-67b80e576567 9769 7192 5192 #> 2155 30ce28e5-ce3f-477d-b18c-db40e1a512a3 NA NA NA #> 2156 f2f29019-7306-4b1c-a9d8-e9f802cb06e0 32138 13504 46401 #> 2157 bbd0942c-6f77-4f83-a6d0-66ec6548019e 25812 8057 7102 #> 2158 fafe3f73-1208-409e-a7ff-e4c1c4e8cb80 30436 NA NA #> 2159 e2104140-4ce0-42a8-8b00-346b4a9258b2 31189 12950 23519 #> 2160 fa781bd3-04ed-4536-8d48-af9742c8aa13 32914 14566 NA #> 2161 631e6ad5-0a97-4b3a-a45e-6179b0ec6c4e NA 15470 NA #> 2162 7ef17350-e889-4498-b29c-df004ee204fa 31238 12556 NA #> 2163 c5e430c5-7a8e-4e29-b30f-1a527f05cb89 28442 10126 9487 #> 2164 d033bdd4-2a32-4b08-a9a7-8365933816c3 31096 12835 45932 #> 2165 aa9c3e2b-711b-44ed-9cb3-0fbed3f2fead NA 15350 NA #> 2166 8960d61e-433b-41ea-a7ad-4e76be87b582 30154 11700 11796 #> 2167 ae4faec0-509d-4080-b5cb-d1a44d062858 31934 13477 45817 #> 2168 482c1032-765a-48d3-b46e-b47a809dbee4 NA 15579 NA #> 2169 44dd8731-122b-4f26-a599-10c5aa37acbc 32873 14825 NA #> 2170 c1576aca-1bd1-4b9f-ba83-10235f1e2eca 32142 14001 91468 #> 2171 ed0e6a30-83d5-4f4b-bf49-f7ff80e21304 31882 13583 42060 #> 2172 0cafaac9-20fb-4e5a-9362-158d8a4e7904 NA 15701 NA #> 2173 f0d17dfa-ebf3-416c-a8d2-c6bc30675103 31127 12809 47124 #> 2174 cb5e14e8-87a7-4bad-9fd4-abdd50628abb NA 15567 NA #> 2175 39156891-0d05-470b-8b64-751602820bb1 NA 15287 NA #> 2176 50eb4454-71bf-4012-a216-2fc9770ffd86 31508 13164 21528 #> 2177 a9ad5705-6ee6-483c-b1ee-6f257ad94514 NA 15418 NA #> 2178 5eb700e5-713f-40ff-a43a-189521babdbd 31231 13147 NA #> 2179 7f39a9fe-319b-48e4-8882-ac817ed8ce30 NA 15173 NA #> 2180 3bf5c049-9daa-43ba-9758-c6c895a9d462 32846 14641 NA #> 2181 2fa2b2da-4aa9-44b5-b27e-56876dfe2ad4 27277 8986 8288 #> 2182 97eee51c-7403-4ccf-90a1-7d8a2aba7ed5 NA 15295 NA #> 2183 814e9529-e00f-4d02-925b-158ba1c6f840 32079 13867 47882 #> 2184 b4a3566b-d533-4860-9133-c7e6ac22ab65 NA 15230 NA #> 2185 046c51bc-319e-4fbb-9cf3-f6ab808b8edf 30223 11808 11865 #> 2186 92529995-41e9-48db-b429-c96540ad357b 33023 14889 NA #> 2187 4131d4ee-0318-4bb5-832a-4dec80668a4f 32692 14509 61398 #> 2188 94560629-fb01-43b5-b9ea-ca8372c18368 28983 10674 9948 #> 2189 b05edab1-92b7-45f0-a6a8-4ded382332f3 27598 9434 8705 #> 2190 c7c6dc46-a58a-4cfc-b626-2360434671cb 25720 8165 7016 #> 2191 63fd7882-5d20-426e-9834-e85c0ebb4d5b 31990 13704 50437 #> 2192 154d65c6-b3fc-4ac4-99a6-48c191e90ffc 31877 13482 29113 #> 2193 12563365-b4aa-4b85-93a3-b220c8212707 29467 11137 10867 #> 2194 f403d099-29d4-43cd-bf79-4aeeb8dc6cd3 25887 8306 7654 #> 2195 1d8d5c04-15e7-4346-9d1f-f128e4df3adb 32710 14542 90621 #> 2196 7a51270b-cbdf-451e-a9e7-0f0b23435dd0 33319 14703 43336 #> 2197 24a58900-649f-4a29-a34c-26ff92b63be3 30342 12041 11983 #> 2198 3f0926f7-103e-44d5-85f0-e53ec48fe452 32223 14080 27732 #> 2199 4f454037-be8e-4575-b332-5e40f4788970 27105 9173 8458 #> 2200 be382b2e-a4ef-4c83-a054-7bc75b0e0d99 32228 13578 33565 #> 2201 537c88d4-c403-43f4-94a1-fdccea0ee24a 29875 11081 11217 #> 2202 88d2dbf4-3b9f-43ea-bac6-a8722cb24f43 24002 6621 5552 #> 2203 3c119ef7-fe68-439d-93e4-89ab4fd1df44 28303 10002 9177 #> 2204 8a6825e8-2657-487b-ac69-620a89d7a0cd NA 15471 NA #> 2205 b590479c-79df-4505-be19-b0838574b434 31650 12578 42781 #> 2206 b4464e0d-acbf-4a69-9450-ca7d59e8dff9 30794 12409 21515 #> 2207 2516f9e7-9927-409d-adbe-b32d680ae71d 30244 11954 11886 #> 2208 5d235c9b-8d01-44a7-a3ec-b5c7bd4491ee 31909 13655 48523 #> 2209 2d3a6c81-183f-431b-9b3f-d7f1ce2b294b 28481 10324 9526 #> 2210 d38bd9b4-1927-4cca-84da-5c7dd5b21716 30427 11903 50170 #> 2211 ded1a577-51cc-4f13-8b79-4f4c09655f44 31726 13320 49607 #> 2212 39017237-0575-4984-b784-954a79c2bba2 NA 15395 NA #> 2213 50de642a-7e6c-4625-9966-ed8fc64acfa0 28478 10313 9523 #> 2214 794760c3-b654-48fa-ba3c-3b07fdb4c03e 30206 11752 11848 #> 2215 a28e18bd-eb1c-48cb-b1ad-b2de212313e2 33322 14909 NA #> 2216 0861a57d-b468-4c21-ba3a-7523b6838ed0 25020 7472 6385 #> 2217 10969a29-e4ca-47d3-9100-0017774f2cc2 26723 8676 7882 #> 2218 6e6dcc9c-06f5-40fd-9134-d0afd0e349d8 30291 11916 11934 #> 2219 3fa97e08-13d9-47a8-b155-39f975964d47 31991 13753 50588 #> 2220 c9a7ce89-90f7-4061-b9ac-dfd4e6c3cedf 29431 10947 10831 #> 2221 12b701c8-7f40-4437-aeef-782fd1d25f2e 31826 13931 32565 #> 2222 b37c621e-1125-4c35-bea0-fcabb1527060 8432 5365 NA #> 2223 f8788fca-16b2-4214-b0a4-1bacff5e9fcd 32829 14822 NA #> 2224 d7072e38-e5f5-4ac1-93cf-9a93f6333870 29293 10878 NA #> 2225 15dcfb8e-ef29-40f4-a924-f3ce4150c563 NA 15537 NA #> 2226 49bf0cd8-c01f-4d31-b6f1-fdda02b4999f 32230 13861 51107 #> 2227 56692800-dd44-4b82-a988-398314845fd9 32757 14742 25449 #> 2228 a377423e-416b-4a5d-b183-9f37645e447f NA NA NA #> 2229 d5ed27ed-e5f3-4d4a-a8af-79887c1881a0 28987 12194 9952 #> 2230 43d50dbb-38cf-4713-a667-15f4692d8c20 32874 14826 43524 #> 2231 8738c2cc-4ac6-4288-922d-ce4590d9af42 32730 14477 27379 #> 2232 0ad845ff-44e8-4576-bc91-61b557e06f05 27568 9262 8675 #> 2233 b498432e-01a4-49ef-8f4d-cda153c7cdd5 NA 15601 NA #> 2234 8aad56a2-0589-4ebc-99f8-b07c5023fd70 30167 11977 11809 #> 2235 d3e192b5-4523-4d65-94e0-a1fb164b6542 30666 11925 50118 #> 2236 3164fc4b-b2ae-43b3-9ff1-1d5f744b9f88 31113 12766 50966 #> 2237 e7a18744-0608-4118-888f-f51de5645ce9 25735 8201 7030 #> 2238 416e8e41-9e8f-4bc9-9d26-babb37bec884 NA 15587 NA #> 2239 99d79bb9-45aa-4c64-99aa-a92ba2c278af 29380 11083 10780 #> 2240 90517709-322d-47af-9360-77775a93496b 28554 10467 9599 #> 2241 737c735a-9ef9-4ddb-9bb9-4f0f5eb00085 NA 15531 NA #> 2242 c83a2be7-048e-421a-9734-ff1a26a05484 32433 14279 NA #> 2243 8e16968a-ac98-4e30-a7b4-5e90202277f6 27752 9779 8858 #> 2244 47999e1e-b526-4ab5-bd4f-5f5cac53a62a 31699 13336 47385 #> 2245 133ff990-0b7b-467d-a949-1e1720f96bc9 29709 11116 11113 #> 2246 6c55bb5c-dde4-43ec-b4aa-0e5d65303244 32900 14831 NA #> 2247 a756f0c5-c0c3-4d95-9a77-4fe1ef9baf93 32865 14554 46271 #> 2248 b57c9d4e-b06b-4281-98d8-1295684c2e55 28195 10139 9258 #> 2249 a8ac7c7d-301a-4e1e-afd4-04f88cad848e 28519 10292 9564 #> 2250 1be82e0f-4b22-4a82-b3fc-5835aa214f7a 31933 13763 NA #> 2251 afaf2f2c-06e2-4d7d-9d6e-1b9bc5a1c8ff 31224 13015 38555 #> 2252 3ee844af-9408-42d7-ba42-aaa2d5ccc673 32853 14674 27357 #> 2253 7830196e-cdca-4b86-bee2-eae97de2ee26 29455 11238 10855 #> 2254 27b1ba46-842b-4bca-a434-56c60102c1b5 30993 12855 46048 #> 2255 f3bdf34f-1424-4e26-911c-3ff45e2f7bac 29357 11054 10757 #> 2256 173831a7-d33d-4d2a-8dd9-4e36182e23cc 28632 10285 9677 #> 2257 e94705dd-635c-45f0-b243-88bdd92b4adf NA 15582 NA #> 2258 af1335c6-c262-4488-9352-86ba80754583 31995 13817 NA #> 2259 214e55e4-a089-412d-9598-a16495df0d25 24788 7257 6153 #> 2260 af4ba620-2f00-4b00-9111-7897f2b1cde8 9547 6140 5277 #> 2261 1fd00ec3-b758-46d2-a2c1-cca521ea8a54 NA 15402 NA #> 2262 582fe465-135a-4901-beef-60aebce99067 31965 13438 13725 #> 2263 39f70428-a78a-494c-8676-438d953c289e 27658 9524 8765 #> 2264 1376da0d-0448-4a37-bd99-842c4580eeda 31001 12880 27589 #> 2265 8d53ef4e-7d88-40c6-a390-78d166330bb0 27732 9526 8838 #> 2266 59482736-ce42-4058-b68e-0f9f66eac2d9 31919 13636 35134 #> 2267 6260e78a-64e2-4f7e-9bf8-39948a17a370 NA 15372 NA #> 2268 dba5e3ec-2c77-4f65-ad6e-cee246f816ef 26389 8077 7469 #> 2269 879325b1-c961-4c9a-a3a4-679d77a28293 33028 14459 25512 #> 2270 64e89f8b-3e8f-4e07-bb73-c48f2a1dd8e2 9298 6095 4957 #> 2271 705899da-3c20-4bc3-b5d0-2e6e40655131 29269 10735 10669 #> 2272 579d92e6-ab4f-43e0-803f-b2d5a54d106a 31126 12808 47333 #> 2273 4da5e05d-fc5c-4e87-aa38-d9cde42dd476 32771 14559 61068 #> 2274 e4f25a37-74de-4bfb-b6c9-f50a4fab0b87 30213 11807 11855 #> 2275 25e58aee-1b33-4468-9a81-6586426b91d5 28875 10727 9840 #> 2276 05e15d81-6bb1-49f7-b677-63475d073961 32761 14425 40294 #> 2277 a96e777e-120a-4843-8bfb-59069bd1bd52 31918 13478 37213 #> 2278 9d919856-fa8a-4f06-bd1c-89ebdaca1808 33026 14930 NA #> 2279 5f5fd1a9-1085-404b-a978-426a8895fb83 30512 11845 12085 #> 2280 5aba3610-ab55-4922-ac46-806ded5eb8bf 30551 11847 12270 #> 2281 c552a87b-4612-49f2-a6a4-55a5e26787c7 NA 15525 NA #> 2282 73e194d1-a4b7-4de4-b1c2-3c24ef502918 32231 13517 47468 #> 2283 e83c7957-58c7-48eb-aaf2-47e410607957 33020 14862 26884 #> 2284 1283923a-9716-4936-920a-a57f019bb2e8 30023 11517 11440 #> 2285 ca2d277b-835d-4f4b-bf3a-3993001d71d8 28425 10209 9470 #> 2286 5f58e780-62ff-414e-8d32-b0608679e9b3 31625 13302 47687 #> 2287 625a1777-dd9a-48c6-b512-c450b0914450 32612 14318 95015 #> 2288 b9a6720d-9c6f-46f2-bcee-b80550026437 33349 15163 28729 #> 2289 cfb0ff68-51cb-4dad-ba81-f9e019a93a91 28408 10132 9453 #> 2290 9d404288-65c5-414f-8ea5-ceb97eccaea0 8930 5786 4467 #> 2291 3e6e15ce-1c81-408e-9a94-b0a2924d0b8c 31864 13425 48297 #> 2292 5328d551-cf7d-4ae5-a8f4-1968651748f3 31215 12637 39386 #> 2293 24a847e7-8a4e-4123-967c-bd6145d9c3ec 24007 6620 5557 #> 2294 054cf859-2cf7-4621-a98e-b440e66508a5 NA 15399 NA #> 2295 0a7535b0-e2ba-43ca-b739-ca51fa04805e NA 15449 NA #> 2296 95a4fe89-0b8a-47ae-9f74-0d359ded8d3c NA 15688 NA #> 2297 66dbd211-6835-4c06-9e4d-9f74cffac250 31555 12675 50473 #> 2298 901c84c7-ef46-4c9f-9941-ac8becc02986 29655 11319 11052 #> 2299 743bf29c-a420-4e79-be70-3f2049cc38c7 NA 15409 NA #> 2300 66386076-7d61-47b7-88e2-34a883de250f 30124 12023 11766 #> 2301 f12ecfb0-085f-42d6-b063-97f0bc4fd5ee 29842 10986 11224 #> 2302 ae0de04e-f10b-46ba-b650-2a5c30d48cd9 26366 8562 7374 #> 2303 36538da8-9ac7-4f7d-beb4-8b773da4a080 28466 10409 9511 #> 2304 e0248ecc-27b4-4368-bf97-47a73cb41ec2 31411 13106 51495 #> 2305 8969e4cf-00eb-476e-92f5-86bbb809bf5b NA 15349 NA #> 2306 30a193de-13a3-4e22-a1a5-ce240f498280 27345 9064 8396 #> 2307 f1879cfa-4c07-4140-9da0-c7ebe9af2dfd 24806 7509 6171 #> 2308 93e38713-71e4-4938-a222-9cd1486d0222 NA 15747 NA #> 2309 662bf69e-10eb-4c2e-970e-1a13f1c7fa07 30155 12199 11797 #> 2310 9c1cc275-861d-481f-9688-b65c170fb8df 33121 14964 NA #> 2311 771d19bc-f5e2-4a25-8553-4ad3c341c1c9 29308 11166 10708 #> 2312 5fb6e9f1-2efa-44c9-876f-4d635484be88 31937 15189 49371 #> 2313 ff214afc-4e6a-48c1-986e-d52271c6ad8e 31762 13354 13612 #> 2314 f2f71ec1-cc13-4215-aa5d-1948c42c6b28 31134 12722 50440 #> 2315 a46c1936-c00e-405a-82c8-297ebc2a7535 29696 11601 11409 #> 2316 bbb3b4cf-0ba1-4d45-8650-9f8824d3781d 27616 9411 8723 #> 2317 91e004b5-8a40-45cc-8246-a34faca1ee64 NA 15435 NA #> 2318 543e5e1e-50e5-482d-a6ad-498d7fab497e 24811 7447 6176 #> 2319 091c4e9f-a361-4c1b-85c8-8353c24c0547 30084 11715 NA #> 2320 0c158936-9c0c-4ee4-a51c-4f937d3d163f 28598 10486 9643 #> 2321 9c2c9c29-516a-4e0f-8dcd-319291823370 30984 12863 50291 #> 2322 d9cf7aa3-71b1-4ef2-98c5-3db5d44b6f1e 32490 13784 48500 #> 2323 cb43fb1e-9c65-4462-8c05-798d5885b845 30172 11924 11814 #> 2324 bb01a04e-0d54-4fc6-98c8-2b8614d07afe 33118 14726 50191 #> 2325 c8fb3887-c2bb-4038-af6f-f9b81aeee0ac 32497 14286 37279 #> 2326 3df436ea-5825-4ef5-b33f-d221d8f5992e 32374 14164 27753 #> 2327 40d6eeb6-cd53-474d-97f4-a00fed5b4d64 30251 11915 11893 #> 2328 2a5cf817-b88d-4dc0-a8e2-bd6212aeb4e2 31109 12589 48873 #> 2329 ded35e89-0ed7-44e2-8e97-5566330e6d3d 32509 13864 36862 #> 2330 12b626e4-28f9-4f67-bf0f-d8d665f1de28 NA 15607 NA #> 2331 08d27d1a-e039-4ccc-9ba7-65a22f6002fd 29354 11219 10754 #> 2332 50ffb7df-ae23-4211-a495-3beac62a6522 32007 13462 27832 #> 2333 686cab35-6da0-4e10-ba65-0d1f97e0bc8b 30305 12208 11948 #> 2334 244c48ef-9011-4e36-944f-92db1eb540e8 32941 15033 NA #> 2335 8fb2ca06-3d13-4552-98e0-7b913b4ab5b9 29949 11403 11331 #> 2336 afac3e25-d72d-43f7-be4b-d33ed91a0bf8 25885 8177 7167 #> 2337 c4cf84d0-6022-4ac1-a9ba-85587921c53f 29754 11309 11096 #> 2338 99c9de87-7fe1-4d5e-928e-586f48af2d79 27369 9054 NA #> 2339 b0b9a957-389f-4a08-9a68-177fcb59c50c 29976 11554 11373 #> 2340 c00879d3-d07e-449d-a9d1-5b3aa4d1b375 NA 15666 NA #> 2341 3f6d588b-dfcb-4758-95f0-545f61ddf275 32212 13765 51448 #> 2342 e6221da0-1ce0-4f60-85b5-f2094e9d2863 25787 8213 7079 #> 2343 719a7e8e-8286-453e-8aee-d2487c45e53f 32744 14374 34632 #> 2344 f183ef7c-c45f-4f31-9d54-2d5a94c4cfee 33011 15136 NA #> 2345 09bdc469-0d82-4bce-8d49-810a44a550da NA 15600 NA #> 2346 7c51883f-8ea7-4f54-8c03-a562b4524858 32076 13953 51485 #> 2347 fd3bd475-4327-4ba7-8540-ab6cc8ecf12f 28512 10360 9557 #> 2348 8ad3600e-08b4-4390-8ce0-70065776b781 32208 14067 NA #> 2349 2feb5241-ab81-4907-b660-ef8e92976224 31197 13006 51491 #> 2350 ca1aab05-e07b-437e-84c6-2bdb47433782 7467 6999 2561 #> 2351 94510e36-d0ea-48c5-9c7e-b09b31c5c218 30015 11673 11414 #> 2352 9e0f556f-a56e-4f30-bed6-ca692dd4542b 30409 NA NA #> 2353 be62bf39-c737-416f-a1ea-6b9d61684a62 25935 8364 7209 #> 2354 a7c8ed67-44b2-4286-aebc-2ce5bfa1e52c 31531 13172 NA #> 2355 505b14e9-7ba1-4c7b-99e7-8dafa8cd0946 32491 13683 29118 #> 2356 4bc2be9f-9001-4395-a097-d3c89140a83b 33120 14543 NA #> 2357 650108d9-4e30-408d-a1ad-00abc13b2f46 NA NA NA #> 2358 e07c45a0-22f9-4ba2-9bbe-6c63e623bc38 28401 10258 9446 #> 2359 962bcc09-65ae-47e1-a3ba-39290a1e95c9 NA 14285 46090 #> 2360 e05e1927-1dd4-44a9-9b70-f552e6939a97 32694 14468 59857 #> 2361 b2fc64a2-3df5-4f65-92e7-922d41723bef 31880 13541 37347 #> 2362 8b3ee955-f2ac-4606-9066-42b82fb4131e 29382 10906 10782 #> 2363 97735229-d42d-4a38-b7b7-96cecb5a56ce NA NA NA #> 2364 cf881df8-d5a0-4736-be01-eb72767366b0 26786 8826 7945 #> 2365 6dc7a6f8-f84a-4d55-a76f-66377ad038fe NA 15651 NA #> 2366 c3251cfd-0b08-4833-811f-7ce6a4b9acef 31516 NA NA #> 2367 cce52ea1-7e17-4992-8911-e6b07b7b3831 29434 11140 10834 #> 2368 e381248e-ea78-433c-a9cb-7043e9f3335e 27980 9424 9001 #> 2369 d77eae11-9ecb-4713-878a-29900d67267b 30145 12198 11787 #> 2370 0cb6209d-2397-4be2-9cb7-f990bfb67e69 26698 8827 7856 #> 2371 53213f81-77ad-48d0-9d42-00e3633b0e90 33112 14868 NA #> 2372 8db0f2a4-42bd-40a3-996f-f6364716b8a4 NA NA NA #> 2373 fb3b36fc-b985-4807-8199-d038d7e62a93 28389 10037 9434 #> 2374 0d3113f7-2a82-4fba-a0ab-bfe068746a8a NA 15368 NA #> 2375 3c8a55dd-20a8-4375-b711-49eb5e6e1d0e 30614 12063 12112 #> 2376 e23dc743-ecee-4cf3-a263-69d3da3bae94 28638 10483 9683 #> 2377 0c39e276-7a5b-448f-a696-532506f1035a 28482 10216 9527 #> 2378 83d4c4c3-3c40-49b1-8b86-25d256a0b5ad 33114 14423 40498 #> 2379 2e50c78f-fa3b-48cf-8531-6eeddc93d88d 27631 9326 8738 #> 2380 d9c857b2-97da-4fb8-a527-afbbb2a67413 30180 11732 11822 #> 2381 f6cc5ed6-81bc-4636-a8d4-88c47529a061 32493 NA NA #> 2382 540f8b30-900e-4d17-8756-c262ba5fa039 26804 8772 7962 #> 2383 30ff46bc-a039-4af7-9050-81af98901a3e 29470 10737 10870 #> 2384 0a4c5237-08a4-41d5-873d-18f70c025149 9278 6086 4937 #> 2385 bb7a78a0-def1-4e82-b04c-15236810229a NA 15767 NA #> 2386 4e14183b-f974-4745-9d7f-8f5eb2a92a7d 32775 14541 109795 #> 2387 c731aa8a-778b-4ccd-a19f-517eb66f47b7 29328 10949 10728 #> 2388 562809a9-de2f-4d1a-85f3-a968f896b86d NA 15565 NA #> 2389 db4510bb-e692-4877-9b71-0c8d642bc16c 31627 12743 47173 #> 2390 32d58cfa-ffa6-46a1-bd3a-09b6ccca2370 29783 11347 11139 #> 2391 3cacaa27-a790-43ae-927c-8163b06f1a53 30024 11502 11439 #> 2392 1532328d-614e-4cd6-a43f-ff56073e2ff2 29806 11585 11266 #> 2393 90c1756d-1f47-41b7-89fe-b113c9850bc1 29281 10759 10681 #> 2394 495dfd2f-adc6-4ea0-a830-0513db2c1477 33299 14817 NA #> 2395 58bf55ae-9dee-4875-8e21-b26e274ba22d 32599 14300 NA #> 2396 595ed8a9-5533-4bd0-8f3c-a4c3e9a021f8 31760 13365 NA #> 2397 c65b8d70-ac93-4782-996a-ef96fd11047c 31061 12567 48228 #> 2398 b79c04b6-d49f-49ca-a26b-d93769c8a908 33063 14977 NA #> 2399 8f1147cb-3040-4128-b113-5813816241ec 32398 14191 91470 #> 2400 <NA> 31740 13346 NA #> 2401 1a97a708-09bb-4f04-94e0-8aac160de8db 32323 14070 48004 #> 2402 5b496c58-83ef-4763-b1e0-5f052af46b3e 28395 10151 9440 #> 2403 b7f930af-ddd2-4a48-9617-96bda81b0334 32494 13565 42247 #> 2404 8fc65820-f565-44e2-8635-3e1cdf165bf6 25178 8469 6468 #> 2405 b103b096-6be9-4f87-9ae4-5d217f560685 29854 11508 11231 #> 2406 0226b03b-f91d-4223-9813-9fcd2e9c3acc 33113 14630 28305 #> 2407 1364cb22-1bfa-429b-8bde-dfd0d2938163 33109 14556 42295 #> 2408 ed8d8820-4343-43cc-b41f-b98439923bef NA 15573 NA #> 2409 dcce5f4a-0bb5-4ed6-a8da-9b2cf64714f0 30002 11276 11391 #> 2410 d1b2a6dd-837b-4dfa-b7cc-72244668748c 30411 NA NA #> 2411 <NA> NA NA NA #> 2412 8fcc6939-9e67-44bf-b9c9-effaeaf2bae0 31554 12502 29476 #> 2413 <NA> 29326 10901 10726 #> 2414 4c291418-b408-4886-a87e-2022ce5747bc NA NA NA #> 2415 66d74e2b-9a7f-406f-97db-b5b82f0c4cd2 33090 15103 NA #> 2416 eb264430-a673-41be-9d81-588d9a9e10e1 31764 13359 13822 #> 2417 41ca30bb-890b-4d30-ae2a-2b12eee9423a 30159 12037 11801 #> 2418 e63d2781-66d7-4e29-ae56-292fb282a5ed NA 15445 NA #> 2419 8e19d167-cee8-4048-8f28-d476b11ec330 32780 14535 56247 #> 2420 fbf2dd5f-b324-424d-8cd3-335b0d695c6a 31015 12530 50417 #> 2421 0db6df51-945b-4123-a790-0ba9d0473415 29296 10916 10696 #> 2422 ab741f46-d660-48f2-a910-774d0514d2e4 31609 12720 51203 #> 2423 7e84ea1f-b59a-48cd-9bce-513190fef260 NA 13184 NA #> 2424 1ffef1d7-a7a2-4abb-9b96-e8e38a8147ce NA 15407 NA #> 2425 45ef2670-2382-434b-8f26-ba13f044236e 30138 11714 11780 #> 2426 a76a6c69-6454-43a7-a5f9-9abced6b1f78 33056 15019 NA #> 2427 a1052a59-114e-4340-8936-bffb17431300 31940 13533 51081 #> 2428 e6357477-ecbf-4489-a0cd-49a6a4feb807 32510 13694 91420 #> 2429 3c7b7eef-6c99-4f88-8b1c-cdf93864f2f3 29607 11420 10914 #> 2430 3bed3959-22dd-4ee6-8fc9-7eda34fbeaf0 NA 14904 49537 #> 2431 66e7cb60-bf2e-41a5-96c1-4f7d4f8f9cda 32435 13770 49390 #> 2432 e829aa7e-04a7-425a-9717-c334ca9febe9 26706 8640 7864 #> 2433 ce0badde-28c3-45ce-a6f4-e2f82ef129f8 31213 13012 49454 #> 2434 6db40c6e-7d09-486e-b80d-1d8008547250 30131 12018 11773 #> 2435 dbeff2ee-8d26-48f3-b345-3cd88c374c87 32706 14617 55775 #> 2436 54074654-5618-4b09-98e7-560d4b0d91f6 31016 12585 48727 #> 2437 2b5152aa-cbcc-439c-b72a-ac7577c8422b 28394 10307 9439 #> 2438 eb2c9e63-3a33-441e-aa95-462eaf97a371 30333 11932 11975 #> 2439 e5e154c3-df07-4b7f-8bef-2f2d3642374f NA 15290 NA #> 2440 b03240e5-759e-4e09-aa70-8fabe877f322 33051 15006 106295 #> 2441 d6814706-b6a3-403f-bd2e-f46b92507e90 32236 14083 NA #> 2442 78af6ab8-1003-423d-b29b-111d8f4d45ad NA 15355 NA #> 2443 5c24d0c5-076c-4db5-9bd0-e67f7c42ad50 31039 12815 49894 #> 2444 014038bd-e9b7-476f-b7bd-bd78a46a9a57 29277 11071 10677 #> 2445 0d5c19ee-8165-4af0-a3ff-f5dc54bef046 33035 15117 NA #> 2446 31bd7a4c-8eaf-4ea3-871c-b44420c804f8 31849 13568 25991 #> 2447 cb491475-1814-4914-9777-fb865ae0d70b 28400 10310 9445 #> 2448 9f5650c3-91a3-4552-a02e-fe4a7d13f262 30327 11936 11969 #> 2449 389438be-4bd0-4842-9021-b614289b8d98 29366 11056 10766 #> 2450 1731325a-0303-4a56-81f5-3c4a588cf0d6 32052 13988 38844 #> 2451 ec082251-98cc-4574-8a00-8f3f80864941 30733 NA NA #> 2452 63f8a401-f308-4463-9d0b-4335b98da682 9526 6045 5443 #> 2453 2afc82df-1048-414d-bef7-1692198cedde 30162 11956 11804 #> 2454 d20386b3-f260-40eb-92c3-f0a95211fab6 NA 15589 NA #> 2455 65533cd0-792b-42cb-808f-18cbac2e51cb 32852 14596 42516 #> 2456 074acf5e-748f-4d42-9875-0090f1480bec 31036 12921 50126 #> 2457 18264a0b-cb51-487a-b2cc-f9258f0325f6 31648 13187 48575 #> 2458 22f733ff-fd31-4731-acf1-97843e9eb665 32924 14839 35774 #> 2459 cda62c8b-89dd-4c03-a86d-dba70541693a 29275 11109 10675 #> 2460 d2f9e776-11e2-47ce-82fd-60908aeb2769 32888 14580 43498 #> 2461 9898a791-ba28-4a68-beee-ad12f61af7db 31927 13891 48538 #> 2462 6bf775cf-391f-4455-ba0f-264af0803ea8 31195 13004 49842 #> 2463 125950c3-8289-4299-8497-fc9fd2c3b34b 33339 14741 NA #> 2464 0392b852-2783-4ce4-ad39-dc8661a5be3d 29365 11127 10765 #> 2465 eceef7ad-494e-4a84-a6d6-e7253fb554f0 30499 12043 12081 #> 2466 a5c2a8bd-7935-4819-800f-32e3eefe4f61 28312 9998 9007 #> 2467 8969d7bd-b4c8-4cdc-84c0-a78eab2c2b2b 32908 14834 44198 #> 2468 12f55b0f-17a3-495c-9654-fe53f4c20716 26979 8904 8043 #> 2469 d86d53af-2eb8-425c-90ab-851122cc633f 28130 11214 8959 #> 2470 79a3c87a-85e2-41ed-aee2-ee6b33dd401e 28899 10649 10024 #> 2471 0e581a51-e705-45e2-85d3-bc2c073e626e 25827 8291 7117 #> 2472 3a39ab56-f188-4924-862d-c79ce67a3420 31004 12804 46180 #> 2473 7f614864-933f-4469-8df0-7fa9e2f3b851 25227 9204 6471 #> 2474 2c48a13f-bac4-46f8-b405-7ada72dd543e 24181 6567 5728 #> 2475 5450b1f1-a9dc-422f-b6f3-2a4efa056d42 NA NA NA #> 2476 c4ab37e6-e589-43be-94dc-441c81ca5fac 32820 14669 28149 #> 2477 ae320fbe-15cb-4877-b05e-c626bbaba820 33050 14673 NA #> 2478 264d21d1-1bd8-4ce4-975a-4adc56f06928 NA NA NA #> 2479 5408024f-0014-4abe-9d27-4467d802d50a 27721 9451 8828 #> 2480 90609ea7-4f12-4526-a274-455835ccce27 27902 9664 9132 #> 2481 ba5805bd-c67e-47d8-8d47-c8440a268cd4 32769 14676 46179 #> 2482 86b23d77-a8f5-4ed6-9074-efcea2771e7c 31556 13277 NA #> 2483 adb1984e-17b1-4efc-9af9-94cec5835c91 32072 13721 46978 #> 2484 b493daf9-e550-497c-b382-4ffda2e47260 32674 14360 59701 #> 2485 b077b3b2-2fed-4c9f-9b8f-c4ff50a4f911 24804 7434 6169 #> 2486 d58166e2-24ee-4dd2-ae22-36b05634eb6d 31643 13526 NA #> 2487 f45835c5-aa9e-4e32-b545-20d1e322fe8f 29462 11022 10862 #> 2488 0042266b-cb28-4012-bfd2-06650badad97 31838 13491 39395 #> 2489 e8b4f505-28b2-4a87-8bf8-87041afab45c 33015 14530 NA #> 2490 e1235f1e-26ce-438c-8168-3b1ded4ab893 26696 8745 7854 #> 2491 3cbf12f3-11df-4ced-a321-4877b129420c 31999 13513 46501 #> 2492 1c6daf8e-d6dc-4d88-a5fa-c3ebcd93a6e5 26547 8402 7610 #> 2493 cd705357-f282-4cbf-8f11-391618d981c3 29370 10913 10770 #> 2494 ce079a73-5884-4184-909a-8feafd4645d9 31972 13473 45810 #> 2495 3f454d05-40b8-45a8-b195-ff2565b6c79e 32050 13456 NA #> 2496 6c6a6099-0169-4c9a-b024-0d8f4a795f38 29906 11297 11300 #> 2497 a75efc5b-a4fc-4da4-8684-d170a0c40b81 33188 14949 NA #> 2498 b8033c75-de94-46df-a645-284f419c4497 900125 12231 45675 #> 2499 ddd1fbb3-4db8-4d77-b522-9efd938ec8c5 31280 12734 45727 #> 2500 94bde2c7-7229-4bf0-a545-5950cf3c7927 NA 15343 NA #> 2501 9811b753-347c-467a-b3cb-85937e71e2b9 30972 12507 45791 #> 2502 bd10efdf-d8e7-4e23-ab1a-1e42fb65131b 25883 8089 7165 #> 2503 4715105f-88a0-4b8e-98ac-8ccf7e512f27 30097 11729 NA #> 2504 69568326-f210-4b88-a5cb-10376c64893e 30707 11750 12253 #> 2505 e69d4c5b-930b-481b-a81f-aea5c22ff3ae 31416 13739 44891 #> 2506 1a73d921-33c3-4e5f-904f-419ad5ac6206 33047 15005 NA #> 2507 1059e9dc-97df-4643-9116-883a0573d8b1 24830 7246 6195 #> 2508 e21365af-8d66-416e-b0a5-8816d18fcfd9 30136 11805 11778 #> 2509 789c00d3-a9e2-47fb-9a8f-45af1fe39fbe 33031 15110 NA #> 2510 165b19ca-3ced-4c87-9f87-e6f71f1a4dd9 NA 15680 NA #> 2511 7bb7f5e7-f00e-47d8-954d-90bf5baf4292 32008 13516 40973 #> 2512 a60a44ba-e1e0-4f05-b0d6-b0d483121c23 33314 14929 NA #> 2513 bb3bf01d-c100-4a9f-9b7b-21aff82a9cd7 33041 15068 NA #> 2514 67d56171-7522-430c-b7d9-8f7e2b6624d3 26756 8789 7915 #> 2515 93a1f2fd-fd5e-4b06-8086-476028d83eed 32910 14527 28301 #> 2516 c4caac75-07d3-44b2-88ca-524e495a1a6b 30559 11891 12276 #> 2517 25ed33f9-7abb-421b-91c0-46fb7f581a76 33038 14803 NA #> 2518 da92303d-1419-4cde-aa52-b120635f364a 33236 14914 NA #> 2519 aec7472c-3e0b-443f-8c48-cd8cf0e9734c 31460 13136 39588 #> 2520 b4af6462-3e3a-49d5-9d96-482ad9f3c0c8 NA 15336 NA #> 2521 967a20b1-e334-4ebb-a1b5-f46111ab7325 32471 14214 61737 #> 2522 8db3a609-73f4-4797-ae22-8adf024d473c 30513 12443 12088 #> 2523 126811e0-f856-49c2-b36d-15e71e06f4c0 33039 14546 28070 #> 2524 c57b1184-e381-40cc-b603-f703e10d3fad 29893 11269 11123 #> 2525 82ed30a5-54a8-4ed0-b040-99c3a78fb055 32003 13522 25578 #> 2526 427038d8-ff50-4d6e-a088-4fdb8bc2f0e3 32124 13911 47996 #> 2527 97f6c20c-1110-4551-82c1-41d3247397a2 32418 13634 34579 #> 2528 20d16690-560b-4a01-af20-8870ef07ea70 31014 12884 48113 #> 2529 fa6b16fe-d3cd-4296-a0e6-03ad13d27a57 29433 10981 10833 #> 2530 03c4649f-744b-4d55-8556-40cca218b6fb 30743 NA NA #> 2531 1ffc735b-74d8-44d2-ab32-00c5485c799f 29274 10988 10674 #> 2532 938b363a-6967-4cef-bcd2-bb358a9f6c98 30122 11699 11764 #> 2533 659d31a3-9c62-4e3d-a0ea-b2e4967d6947 30209 11857 11851 #> 2534 6efb8027-b537-4dd1-883f-459450708ad4 29249 10817 10649 #> 2535 2ef5aed5-9859-4102-8bf4-99d6a6ae22ba 27556 9294 8663 #> 2536 3b649886-76a0-44e2-af4a-3e566dadaa79 31444 12674 NA #> 2537 9c95fee4-129e-4765-b99f-f09f517c1f4f NA 15112 NA #> 2538 e81fcb68-e579-455f-9278-1bc28d5d332b 32828 14445 42313 #> 2539 c2359655-60f8-4eb8-b1c9-c41bc423584b NA NA NA #> 2540 8ca53dc6-9a7f-41a6-9b69-d199a6784013 NA 15532 NA #> 2541 117d2769-60b3-47f0-be7f-f47fe36e0ac9 NA 15621 NA #> 2542 7c023589-734d-489f-ac09-577d48f772f3 NA 15626 NA #> 2543 dfdf250e-0457-4008-be27-a0be2a3ae5bd 33333 14454 56262 #> 2544 22e0f7ed-9b46-4a75-9780-d9b66c245744 33336 14583 50532 #> 2545 e3a4104a-ceba-4df2-b265-70843ecf1fb0 32012 13795 83833 #> 2546 35150d4a-0dca-4daa-91b3-ffc46d44d1b8 30811 12442 18348 #> 2547 57df194b-d445-4e66-af51-7b781b0f529f 32028 13471 50434 #> 2548 99d9eebd-808f-4573-b39b-b9fef4ce5e98 27569 9327 8676 #> 2549 fe30ca46-c995-46ce-bca3-12451bfb5ad8 32280 14133 94366 #> 2550 90434aff-bd29-44be-8e76-056e412a9624 29653 11316 11050 #> 2551 dfbbaf35-08d6-4f58-8577-c2e53a492454 30152 12001 11794 #> 2552 144ef260-a22e-45df-9bbe-52a11f9188ba 27715 9671 8822 #> 2553 7d491979-7d1b-4b55-9f3a-f68db22d8bb1 32738 14447 49560 #> 2554 b8db855b-fd1f-46e6-ac23-466f68130e6c 32009 13702 49037 #> 2555 98166be9-2705-496d-ae1c-3bbcc2fe60bb 31451 13139 49190 #> 2556 97357c21-9d25-4a8a-a066-be6dad0e8a7f NA 15548 NA #> 2557 e75ed538-1888-4864-bd1d-e703d1ce4b5b 30229 11926 11871 #> 2558 2160ed45-4a2a-4d3b-9da4-d18446dfa292 32749 14734 26449 #> 2559 07b963d4-aef7-4874-ba04-f9b1ec1142d3 33335 15035 27128 #> 2560 27488f5f-e895-499b-9e33-fddd3d5d603c 30778 12312 12194 #> 2561 9ed520e7-a3d6-4e80-9815-a145631d20fd NA 15327 NA #> 2562 9c41ed02-01f3-4e55-b069-247c58983ad6 29622 11421 NA #> 2563 e929b3d8-6f7b-41f2-acfa-fe3840d03509 25769 8139 7061 #> 2564 e8fa43ed-ae19-4603-b69c-a555664bd368 29376 10908 10776 #> 2565 acc3f3fc-12b7-40b6-b773-b73b2b10cf32 31150 12670 38558 #> 2566 4e2c85e2-3efb-4c5e-ba5e-3c75202e4f00 32530 13708 36340 #> 2567 426048d5-8634-4df9-a0cc-b92f2c76a03d NA 15697 NA #> 2568 e08d71dd-58d9-4295-bcf8-9a6faf59c333 31105 12972 50088 #> 2569 243b786c-744d-4a6b-9a8a-0b4e5fd2ad18 30302 11941 11944 #> 2570 b8e0fa49-1122-4e97-9fe2-d90f6b7cb444 31835 13584 44216 #> 2571 99f82a33-5622-4f22-95ff-05d8bd3a6521 NA 15428 NA #> 2572 3b1227f6-05c9-421f-a2c1-4c8f1368b80b 29246 11112 10646 #> 2573 4be6de2f-0a6c-43fc-a91f-d01cdb5dca6c 31042 12814 24614 #> 2574 f6d943d7-3ddb-4054-8796-9febf6026898 NA 15543 NA #> 2575 0cddffa4-a061-497d-a487-359e66744416 NA 15695 NA #> 2576 fe1eeca3-7ad7-4bc2-9c55-b5662818642c 27040 9044 8141 #> 2577 d2bbcec8-7163-4d6a-b356-9002a16eebe6 NA 15453 NA #> 2578 bf5f7564-349a-439a-a8a9-4ddb10448a8d 27545 9380 8652 #> 2579 a3d59d11-8d6a-4cfa-9c5d-3387d20de7f9 32118 14025 57868 #> 2580 17dfbad4-f4fc-4a65-a085-6cdcefe36879 31989 13846 35413 #> 2581 5a79cba5-d633-4ed0-8aa7-a244060432b3 32557 14305 35771 #> 2582 808fe9a2-51dc-4d22-8f09-da1857b5a699 30134 11966 11776 #> 2583 171e1cf6-8bcc-46f1-8afe-47756967611c 32387 14177 20807 #> 2584 c75717d2-be1d-4305-9bae-5a18d9cedca6 NA 15388 NA #> 2585 b665d9b6-3079-4588-b7dd-5088a1e91c3b NA 15693 NA #> 2586 0e9ea316-700d-4368-86c1-d1181fc64f52 NA 15316 NA #> 2587 530f22b9-0f36-4ad1-9ead-ea44292b83a8 28620 10497 9665 #> 2588 04ae0bca-f5c5-483b-bf55-967f1423cb45 30525 12391 12124 #> 2589 c40d096f-62de-4e4c-a694-0249689c2fe8 30089 11744 NA #> 2590 c76beac1-4908-42a9-8f1b-052aabe1eb61 NA 15540 NA #> 2591 6d7ca819-8c58-4c41-bba7-643ba9553eb8 26569 8607 7746 #> 2592 e5266a8b-b610-4c5e-9bee-7269917ffd6f 30330 11804 11972 #> 2593 b24c80aa-85ff-4508-bdaa-879eccb621b5 NA 15696 NA #> 2594 b3819b2c-087a-4da1-ae9a-f470eebaa25c NA NA NA #> 2595 92c2dfb2-6929-4192-94cb-9ae6845dd2f6 30184 11793 11826 #> 2596 fbabd1f2-fe25-4cdd-9000-8fcc90372e82 29378 11133 10778 #> 2597 9ca56390-fb0e-4261-ac0d-1770f65021bc 29364 11110 10764 #> 2598 6993aad2-269c-4211-bee7-2fcd324288c5 30324 11810 11966 #> 2599 441ff2e1-53bd-47dd-b44a-0f97e0b97d9a 30770 12519 12187 #> 2600 07c68f38-f4aa-4129-9ffe-7a9b8257c05e NA 15694 NA #> 2601 99119082-a5be-4fb0-bebf-ad25cd564b4e 31494 13178 54483 #> 2602 e15a26bb-db24-4e5a-b3a5-cc4d4eb4f0b6 27594 9418 8701 #> 2603 67ebb029-28e4-499d-a198-de1129d16e5c NA 15502 NA #> 2604 f1bce91f-ba57-4015-b74e-dee3df872c98 30058 11634 11467 #> 2605 e731bbc1-09b2-4cf3-8aa2-00d00f9b2d29 NA NA NA #> 2606 ca98164e-f504-48f7-8a55-48444dfb4df5 32799 14622 NA #> 2607 eb7f7d43-7837-400c-828c-bd5d609bca41 29815 11559 11282 #> 2608 8639eb45-a9dd-4b3b-91f1-01319af3bdd0 32681 14391 59818 #> 2609 668bbc04-3346-4ba5-b038-9b5485f79d1c 31924 13801 46232 #> 2610 40c7c35c-1393-420b-be10-127d850daee1 30960 12762 NA #> 2611 85eaaf9f-59cf-4150-943c-c1abdaa78eb1 32861 14654 NA #> 2612 977646e0-0142-4293-aea2-cb36742bfac4 31828 12824 NA #> 2613 eab69ec2-9cba-4783-8260-cf99121ed2c8 27711 9318 8818 #> 2614 73e133bf-d3f7-4fda-bd25-2fde66cb8ee1 8937 5653 4474 #> 2615 f4808328-86e9-459d-a2bc-18e90c7d211e 31141 12826 46453 #> 2616 d0b866b8-6221-492c-a80b-4a12bbd13e64 32795 14531 NA #> 2617 17bb63b1-1b0e-48e1-baf7-55cd314d0e62 NA 15330 NA #> 2618 96e6687b-2b89-4dd9-98df-6e7507cd82cf 32018 13587 45769 #> 2619 7f119181-4c9f-4a9f-bccc-357277b64a8d NA 15273 NA #> 2620 f86e291f-d678-463c-93cb-beedab9a309a 32790 14427 26408 #> 2621 bbb3812b-cfee-4cab-80c9-6da225fec5b2 32528 13641 NA #> 2622 e25b6e0d-efa3-4425-bab6-5f846b902195 32383 14170 45038 #> 2623 5827b78b-5150-4ba9-bc46-902428e99a31 28461 10081 9506 #> 2624 23b17031-de21-412d-8182-5a4bca1049a1 31567 12563 45662 #> 2625 780a48de-d092-4e87-9c34-8d1b45a154cc 31077 12899 47164 #> 2626 36f54823-9d51-4180-9c91-d10281deb4bf 28473 10247 9518 #> 2627 f6c34178-e063-444b-96b3-df6b3cf66419 31953 13828 42018 #> 2628 1b016b52-62ba-4da9-9ead-6bad689f8d33 29102 10713 10144 #> 2629 cb1df42c-b59c-4e23-a9a2-fbfc2b39ef71 26824 8911 7982 #> 2630 990c2825-ca25-4da9-9966-269363a9bb91 NA 15339 NA #> 2631 e21e9081-44aa-464b-8d3e-83918d48b921 30118 11733 11760 #> 2632 8002dd5e-a75a-4d72-9a8c-0f4dbc80d459 28493 10224 9538 #> 2633 a8c96abf-a911-47a0-ac16-dd51a8782b5e 30396 12388 51593 #> 2634 18f0bd30-1432-4fae-9cb4-c212bad6d0bb 31180 12771 47961 #> 2635 c5a8b02c-d380-4f22-a690-b335001de8b7 30241 11697 11883 #> 2636 021f2c32-0876-4db3-9605-e829f7d449d7 32283 14129 55003 #> 2637 c80914e5-5b9b-4ed8-a993-bcdf5f77f5f6 29256 10852 10656 #> 2638 767b1112-c77a-4a58-89b4-30f1ffa2a497 32533 13934 48055 #> 2639 adfc13b3-1eb6-49f3-9ba6-d4d87fd13685 32729 14539 47800 #> 2640 b1935e20-6bd6-4863-8d7e-702ec403491f NA 15280 NA #> 2641 47b787d0-d4cb-49a3-8383-c3986bde0bdf 32962 14873 NA #> 2642 2f2181f8-cb0a-42e4-9468-17f5f5a219cc 33329 14597 34914 #> 2643 a63918a5-da89-40d9-8518-30a3e0e46da1 31588 12979 66957 #> 2644 <NA> 27361 NA NA #> 2645 6a904c64-5425-4f6d-b35a-1b72eaa256c6 NA 15426 NA #> 2646 1144d517-25dd-4b04-b316-d0bfc0d0c36f 32965 14876 29571 #> 2647 1d02b5a6-fe2e-4131-a9ab-6ed3558f4026 24978 7585 6343 #> 2648 aaf2367f-d65a-42f8-b4dd-7dc720b29e24 NA NA NA #> 2649 8dde622e-645e-4e89-85b1-a8aca7bdfd7e 32964 14875 47826 #> 2650 208c5228-2b8d-414c-91a8-57d2fe4803b4 32959 14614 NA #> 2651 1d7f2d77-86bb-440f-9741-8e61c43034aa 31591 13283 NA #> 2652 2c3ef101-5fa9-41d0-a0b1-32a1d27a1f69 26659 8647 7817 #> 2653 1d5562b1-78c3-4d48-87ee-1b7ce1e0d5cb 32371 14162 33464 #> 2654 72d2a51c-7f02-4db8-8cce-19c45820f170 32807 14413 55634 #> 2655 34786359-962b-44e4-8882-d387d1a8ed42 NA 15558 NA #> 2656 e431a42b-5abe-49de-9c8c-f143f393591c 29452 11170 10852 #> 2657 c2e80cfc-33a8-43f4-a61e-57048244e4f8 28486 10419 9531 #> 2658 cd340b59-3ee0-4829-8d08-be8744f670a6 31509 13181 26360 #> 2659 942b9da8-e0c6-4087-886b-370fe357f5f3 31095 12683 50543 #> 2660 4dcf9e8a-fc5c-43a2-9b83-4ca295490a9b 32023 13985 51391 #> 2661 a7413fb5-8d05-457f-a97f-504bee73a910 28838 10389 9895 #> 2662 b7253ed5-d2c3-4757-8b54-5176fe9f45df 26356 8509 7271 #> 2663 78ca0233-a32a-4435-ba06-6ececaa3c537 32145 14155 50353 #> 2664 3c151ffc-4fd3-4785-96e0-3a257e99706a 30169 12002 11811 #> 2665 8782ad19-a41a-455d-84f9-aa64f7038ee6 32968 14498 44440 #> 2666 789af1aa-253e-4fda-a93b-cef346bd91b3 32797 14686 42467 #> 2667 d6969476-95dc-42e4-9cd1-a1e8ae6973ff 32961 14491 43528 #> 2668 2a527ffc-edd3-4415-9662-6158d0ad612e NA 15437 NA #> 2669 23557a45-6dc7-43c8-a4c6-f53ae72ff660 29841 11527 11240 #> 2670 e1754596-4764-4686-8359-dc53fdabbd1d 29430 11231 10830 #> 2671 a56b9958-2eb9-47d2-a50e-be8aeaea3eaf 31120 12916 49699 #> 2672 66a67b5d-500d-46e8-90c6-e2f127d38190 31101 12546 50120 #> 2673 b3e41b52-a8aa-4be8-8513-8ede6f3f83d3 23988 6571 5538 #> 2674 e7e7dbae-02ea-4295-8e14-136c65fdd591 NA 15483 NA #> 2675 59184715-115d-445a-a361-c73a0e848837 NA 15345 NA #> 2676 06087aa3-4538-4eb0-8713-090967c3a32e 33184 14948 NA #> 2677 a25f92e6-6e67-4463-a32f-77976807b3d8 24803 7448 6168 #> 2678 1693934a-76eb-4cf9-a5cf-e0bb6df92ace NA 15639 NA #> 2679 14063f54-4935-4043-90f0-a6d2d6ab6143 31578 12708 48487 #> 2680 2d74a108-2b17-4db3-8ef1-0c2e845b414e 30127 11901 11769 #> 2681 96d75855-2d83-4e13-b395-846d6aaaadec 32973 14722 27300 #> 2682 49671677-0e37-4c70-ae1b-ec36be357eb9 25722 8154 7018 #> 2683 3f8e4972-2361-4939-b5e3-c5f6c63b9f68 29323 11051 10723 #> 2684 <NA> 30714 11949 NA #> 2685 ca5028b1-d96f-4444-9855-46e1661b9d62 NA 15329 NA #> 2686 a72ab12a-751b-4a0d-9f9d-a44d2510ac23 29350 11160 10750 #> 2687 07c51c65-489b-4bae-b997-f1a0f35deffe 29114 10660 10156 #> 2688 ebabfa18-7713-4002-8ac4-cf30cd4566fc NA NA NA #> 2689 059e5bb7-1842-4558-9aaf-77c352a21216 30266 12203 11908 #> 2690 a7b4b50a-9431-4551-89e1-6b8cb80536d7 32403 13460 30737 #> 2691 a004c949-7097-4faf-bac9-0edc5b1b2b67 32866 14737 42632 #> 2692 5a0c79a3-fd9e-4914-b3e1-27aae59d86fe 29409 11225 10809 #> 2693 98a23dfb-57eb-4b43-a2b9-c3a494f9fb7d 32967 14746 NA #> 2694 dec323b8-fb75-4182-b03d-6c412d3d51a5 33180 15096 43811 #> 2695 954d9ed8-41ed-4222-b0d8-b3cc8d1755a5 28716 10811 9994 #> 2696 423b3b98-da9a-4786-84c9-0662ec0ce11f 32773 14751 81991 #> 2697 bfe704fc-266d-4f6a-afbf-c903b5934e23 30448 12360 38587 #> 2698 444a23cc-f2db-4078-8eec-3f43f8542742 28698 10600 10007 #> 2699 9fe21c07-823a-47a1-a4dd-0c611c0280c5 25786 8127 7078 #> 2700 db099408-4fdf-44f3-9824-aa8006ac60c3 32405 13464 28844 #> 2701 4034f43e-26fb-443a-9ea7-35cee7a1d250 NA NA NA #> 2702 db390635-a7ce-4508-9c58-4ac1c36740df 32406 13880 45110 #> 2703 447db942-40e8-4bb3-9710-b12cfaaafb46 29313 11169 10713 #> 2704 782c4f21-74b8-4fb1-b9a9-f908e4de81b1 31176 12998 46647 #> 2705 66170e6f-1c23-4bc0-80fb-b18344e98fb4 31985 13540 46815 #> 2706 3edf64e6-603b-4437-a3be-53fe030c6f56 26627 8728 7786 #> 2707 d71abd0e-7a69-4e28-a2f3-d8d516f3d8a7 29316 10974 10716 #> 2708 4c01d331-f294-4836-bbfc-3369829d66c8 31203 13009 66916 #> 2709 0864f928-283f-40e4-9c04-f2b2b374e237 32611 13917 NA #> 2710 d0b809ac-b82a-4b66-98b1-9fcf613ace6c 32649 12696 46848 #> 2711 83657965-d1b5-4317-84bf-f9e471629993 32815 14663 27064 #> 2712 6c50f131-80dd-4aea-a34d-dac06d5cf91a 31854 13671 29250 #> 2713 fbae56c0-6400-4d46-9e76-621fc0d5fdd7 33192 14748 NA #> 2714 22fd9495-1745-42eb-baf2-19631176d97f NA 15186 NA #> 2715 64797df2-efd3-4b27-86ee-1d48f7edb09f 8795 5648 4332 #> 2716 7738fea8-7ea2-4c4c-b589-bca90b070819 30563 12511 12282 #> 2717 64bd0f02-6a5d-407e-98f1-fd02048ea21d 32723 14416 40291 #> 2718 d77d9cb1-7fbf-4f77-9f55-cd52afd0ba91 32404 NA NA #> 2719 6faa5a10-56b8-4dd0-b8de-0cf1378b6726 31013 12525 34455 #> 2720 4b09ab09-1457-4c9d-a99d-6a03d8e76c76 29384 10815 10784 #> 2721 ebae3f19-b8bb-43d6-ae78-d21e9dc08b61 32148 13534 40065 #> 2722 e2a5882a-dcc1-4800-889f-3b957b21834f NA 15222 NA #> 2723 ef3ceaf4-b733-4e06-a7f4-a94fc67361c1 31885 13521 40555 #> 2724 768f6afa-ba24-40d9-bdc1-3184bba2ec2b 31171 12996 39462 #> 2725 632f863e-ad20-424f-a468-7ee40c098c2c 32842 14796 45693 #> 2726 de3421f7-2147-4835-89a5-724e87bad463 26658 8781 7816 #> 2727 da95ded9-cafe-4dee-b2de-c75673cd9bce NA 15618 NA #> 2728 0560d134-d316-4cda-9d48-34d32267af68 NA 15510 NA #> 2729 2fc1c9f1-9e85-449a-9a87-fa8203e8e8f9 32415 13551 46481 #> 2730 e17b5817-d955-42be-bb8d-e34d89f6dd71 30594 12082 12145 #> 2731 e8029983-87cf-49a2-bc04-04c8233a0630 31019 12860 47272 #> 2732 472945d8-0062-417b-9967-430d381c80ae 31935 13564 47928 #> 2733 e00b3426-238b-4bdb-85c3-bbf08b7469e3 27626 9559 8733 #> 2734 019f8019-2a29-4131-b6fb-ea32568c1fc8 32101 14005 48213 #> 2735 0832c8ad-0872-446f-ad6e-0e309e8443d1 30715 11883 12258 #> 2736 dc3500ba-a2ea-4e90-af11-cd2f16884bb0 32971 14481 NA #> 2737 030f3ecf-f32f-497d-96a8-8f28d44fc311 32016 13735 48023 #> 2738 06ff7f42-5fe7-4899-84a5-9ba5349d17e8 32691 14421 61697 #> 2739 3ca39a84-5ba9-445d-bf6e-895be06edb34 32035 13979 47662 #> 2740 ca85137c-205c-458e-8b77-8457849f614c 32870 14464 61664 #> 2741 5a55bceb-bc9e-4d41-99d9-490f5e6441ad NA 15576 NA #> 2742 0cc1a941-1a6d-4a4a-8c7c-88157165c126 31889 13529 35014 #> 2743 58e217cd-53c0-40e7-b40b-62f53d246751 32838 14567 84142 #> 2744 ff05729b-558a-494c-b075-abdacb639279 30430 12539 12043 #> 2745 3555d07e-57ae-43de-97d5-b1b5bf055f17 NA 15406 NA #> 2746 5fe0785f-e6a0-4735-83e3-79bb7276ef5e NA 15337 NA #> 2747 fa7983c1-408c-4aa5-9723-efbf039db351 29540 11501 10980 #> 2748 68fd7ef5-2237-456f-925c-68000917edea NA 15386 NA #> 2749 b556dfd1-ed9d-45c3-9328-00236ddd54b1 31342 13025 45600 #> 2750 84d191f1-ff1f-4413-a139-85868c3ee964 33194 14890 NA #> 2751 4fce55c1-1afb-4667-9115-0e239b72285b 31915 13455 40160 #> 2752 d8fc7bb7-333c-4caf-9512-893c334f56ef 30207 12031 11850 #> 2753 3ec2ad5e-f4e0-474a-98a9-0bde4ff5aab9 23982 6617 5532 #> 2754 8cfa229d-0661-45f8-aa6d-c7f95faa3f85 NA 15302 NA #> 2755 7de23fa9-4c27-4dcf-bfd6-caf571065cb8 NA 15202 NA #> 2756 98d553f7-8e45-49d6-b0d3-51eaceee14a6 32168 14197 NA #> 2757 3e7d2a40-88e6-46af-b2ca-aded3a3b942c NA 15475 NA #> 2758 e4739abd-d524-4857-85fc-ed4845462817 30998 12613 51334 #> 2759 8cfce145-c6aa-40e0-b759-cad33237144a 29835 11596 11210 #> 2760 22cb3e65-ce1e-495b-8a71-cc75dba5dc41 NA 15657 NA #> 2761 38611281-fd6a-4b36-bc10-712b128e78af NA 15645 NA #> 2762 051ccf4e-e2b9-474b-b0c1-d5f6c0aebb63 32521 13841 NA #> 2763 60871327-0349-4246-8996-4a594addd8cf 32868 14595 49751 #> 2764 1aede0b9-557c-444d-9a2f-4cc690e1563c 30981 12624 51206 #> 2765 bf21bd83-9c97-4faf-97be-859f033848e2 30415 12026 12224 #> 2766 6e0bbdc7-fa74-41d2-b3de-4eaa8e670f87 32939 14439 60649 #> 2767 44750689-c0ca-4d26-86eb-ed40882f00f6 32070 13966 NA #> 2768 a18446e0-c116-4d12-83d7-6b12c5fb983f 27636 9414 8743 #> 2769 c57e6ac8-b427-4c99-9cd0-763651d53268 33074 15098 NA #> 2770 d7f79a32-6a28-4e14-bedf-6186dec771e6 31518 13390 48889 #> 2771 6a324511-1927-4360-b97a-9c780f70c873 NA NA NA #> 2772 5ec1f072-8ce0-449d-bbc0-5e8160836007 32024 13755 56503 #> 2773 61306d7b-7a04-4509-b954-d43a4e288ccf NA NA NA #> 2774 ff28a5cc-3780-4f94-8c40-d713ff75cd0d NA 15347 NA #> 2775 1aa8d83f-c084-4893-b9b0-b1296ec822f1 23985 6590 5535 #> 2776 3bdd0681-066b-477f-bca9-6b38bad6d8e9 31657 13237 32708 #> 2777 9758b9e2-5809-4a16-890f-e239f0808723 27574 9257 8681 #> 2778 821e5d53-5518-45f1-9679-6edabb0f63c0 32937 15011 NA #> 2779 9779acc7-ed88-4a16-b78d-230ace9ec3eb 24818 7449 6183 #> 2780 1dada1ff-5475-425e-8f38-0728d50c91c5 32902 14681 48662 #> 2781 5f644070-97f1-4b7a-b0b1-4a341ac10771 32041 13662 NA #> 2782 7a3d664b-e4d7-48e8-899d-5f7db6ecc4e4 29432 11232 10832 #> 2783 441eb531-1ec8-4f65-9174-78bc6adada63 28188 9646 8990 #> 2784 e44cc736-fe98-4b80-a138-4ebc5f087335 32918 14837 NA #> 2785 e58adf80-8e1d-4d9a-a605-619cb2fff852 NA 15656 NA #> 2786 4419b655-867f-436b-8233-6d45f4dfef77 29345 11091 10745 #> 2787 82a70525-35cd-4389-a5d1-3b0f11f05a28 29333 10968 10733 #> 2788 2cae991f-878e-434e-9f76-fad263fad23c 25728 8133 7024 #> 2789 11e6adfb-8144-4990-adc2-bfcfe905889b NA 15374 NA #> 2790 3b59e08c-0c3b-42c9-a4e2-9b79103ea715 31708 13306 50918 #> 2791 bc9bbacc-127e-4ba0-8006-3c428aeb6773 NA 15658 NA #> 2792 eec6be4d-4c1b-49be-87ae-a697d61789ea NA 15271 NA #> 2793 855f5d4a-91a3-40b0-9e8f-7435ecaf57c1 NA 15547 NA #> 2794 80637f09-673d-45fe-b874-bdb1a9c20ee6 31410 12704 50819 #> 2795 ab5d4d72-fb1c-4aeb-887b-f6ca35f679bf 31842 13461 27375 #> 2796 f340201b-a1b1-43ba-a47a-484a44334553 30143 11984 11785 #> 2797 86e5c278-2cd6-4633-ba0b-bc5e7a1c1372 33159 14852 NA #> 2798 3f4025d1-5782-43e4-9f42-8eee2da66a95 32772 14724 43507 #> 2799 c1ea7946-fb7a-4a5b-9ed1-c58caf7f8faf 31118 12768 49263 #> 2800 d1e8f343-9556-46f6-a238-2053a50b57d6 32039 13632 50810 #> 2801 0c306d14-6fe6-4b4e-b87f-871c72441947 30954 12977 20035 #> 2802 5d6266d9-b034-439d-9234-91c6c9696f8d 29566 11287 10949 #> 2803 9ea97d0c-6af7-46cd-a69f-b61a649e5a28 30187 11955 11829 #> 2804 96341b4d-152a-4020-b68a-3ff93e1baba5 27620 9357 8727 #> 2805 4501f87d-6436-4fa8-9f53-a8a475eb984c 32516 14232 41421 #> 2806 fb301e65-4c65-4b60-a8ca-d149fcdbcd97 32805 14749 46735 #> 2807 e10e0c39-33e0-4ae9-9374-915dee1ceb7a 28665 10281 9875 #> 2808 9408c891-ebce-4638-b0da-6e476da4258a 31529 NA NA #> 2809 e6d4351b-d073-4ed5-9d5a-51ea2e9298eb 30735 11922 12235 #> 2810 a4e669b3-32f3-4762-8b01-df6ef8dd0e51 31062 12805 46302 #> 2811 7f59e894-4ce1-4803-a556-2e02add60bc2 30431 11785 12049 #> 2812 b4473469-2593-4c7f-8b41-729e1ddb08f6 30718 12469 12168 #> 2813 d088fb7a-694a-4286-a51d-4a13ec398088 30250 11756 11892 #> 2814 14fb27c9-f390-4f58-a257-7fe2c7e6705b 31577 13258 NA #> 2815 6864e643-1085-41bc-99f0-66184fab5487 NA NA NA #> 2816 89c07ccf-8157-4246-8c83-898a81d2dc77 28479 10278 9524 #> 2817 19f35c8f-4796-4563-bcf5-6bab1679571e 32195 14066 46859 #> 2818 06c0d2b3-078f-46f9-86b7-fa5dfe038b75 30090 11748 NA #> 2819 0405bc2d-8e9c-4537-9238-111c4ccd88ae NA 15614 NA #> 2820 e20a7609-8129-400f-87b9-d11dda3836b4 28388 10172 10236 #> 2821 15bedebc-839e-450a-86f6-1f5ad1f4f820 30248 11834 11890 #> 2822 ea357add-1a41-4a8b-8f34-bbfade7f4d98 6770 3764 1732 #> 2823 61a7c5cf-2803-4715-9d28-27815e8b5306 NA NA NA #> 2824 be4ca0ad-f3d6-4b98-a37f-79d0cbc06390 31046 12629 46569 #> 2825 6e4eda90-2656-434f-a262-4e5e9fde3946 31847 13558 41897 #> 2826 <NA> 30389 NA NA #> 2827 fd4241f9-ab42-4dba-a701-455b896eca28 31135 12779 47297 #> 2828 cf338764-9e5b-488e-888f-2443b0b5fc64 30390 12075 NA #> 2829 573c2c6b-fbd7-40e8-a83e-30140cf43e7b 33366 14782 NA #> 2830 fc793c8d-b29d-46f8-8f89-8e2964ff4480 32559 14237 45764 #> 2831 30487ab2-836d-4e4b-a46a-89e31b414374 32794 14357 57289 #> 2832 74af3906-083e-49d1-b8c6-556101390381 31954 13453 45954 #> 2833 9b4e4d1d-ad88-4c10-b1c0-b9116755c184 30850 12433 38329 #> 2834 c6728282-0648-4926-a07c-be64f3ff5e0d 31100 12786 45741 #> 2835 48ec58c3-ec26-4434-b005-8d34035e6667 NA 15468 NA #> 2836 6d9f5816-f0f7-4562-9db0-26b1eb487f68 29389 11049 10789 #> 2837 9fbcfae9-dd14-415c-8952-9b1b5dff0dfc 27538 9210 8645 #> 2838 14683736-9d8f-4e99-86c4-a778d343569c 31478 12901 47131 #> 2839 04f0fefe-9d9d-44f5-94ea-6df2a42df3c6 NA 15267 NA #> 2840 1ea6e870-84ff-44ba-8302-f0f08623fa26 31441 13119 30887 #> 2841 58f18567-a050-49c4-aeca-b34499338b37 31973 13511 36049 #> 2842 9d95c076-0ceb-4ecc-9187-4f77354c2d1f 32261 13440 35985 #> 2843 7b2e40ac-417d-4a86-b239-66bbe91c0bfc 32565 14248 47186 #> 2844 5981a5e3-b1f6-4bfc-89e7-5df7e9c9e52d NA 15546 NA #> 2845 53ed110c-f022-4759-afd3-1cd3436dbba7 32719 14433 42312 #> 2846 244c00c7-fe9a-4f4f-adff-1d5b9c8877e7 31898 13472 33441 #> 2847 e0dc9dce-fe33-4092-b6bd-6af3cbcb762e 32482 13788 41706 #> 2848 c1b4d9d1-1e49-48e7-93d6-bf47688d33c6 NA 15574 NA #> 2849 b0a8704c-a789-491a-8a07-11c465d9f47b NA 15257 NA #> 2850 814aa074-fc61-4649-b7a1-098bd3a199fd 31030 12838 47792 #> 2851 d25a19a7-7de6-4476-b42a-833c8c3cb208 32948 14495 NA #> 2852 03b284d4-e624-4e2e-ab32-ab2564cdca0b 33163 14842 NA #> 2853 f7ff7599-a175-4a0c-b887-3ae9e596fc64 31157 12570 47895 #> 2854 9547fbb1-0d4f-4d9e-83b9-e2fa30463bb9 30175 11877 11817 #> 2855 8d77a320-4b95-498b-ba8e-f1db36f033cb 31475 12682 45578 #> 2856 67c2f38f-b568-4bcf-a40f-750cef707a05 31576 13282 49132 #> 2857 a80f1b08-3977-48b6-97e0-5991ca26bfae 30179 12038 11821 #> 2858 f8f7a845-ae30-404c-8800-66bd643b6d2d 27655 9367 8762 #> 2859 82cdfc87-01d1-49bc-a9c8-ecf8f5bde7f4 33234 14939 NA #> 2860 aaf9cdda-8da8-4b3d-95bf-6fea8070a537 33283 15123 NA #> 2861 17664e93-8236-4eb0-9505-4e71f43b5a7d 31112 12505 26940 #> 2862 b9e6500f-2bb4-47b1-a3ea-1e3f925a3743 28418 10387 9463 #> 2863 73c958ee-0d55-49e9-a613-f4475b444fd5 31116 12671 49059 #> 2864 0589b224-bfc7-47a5-b89d-ff58ef2dcf21 NA 15477 NA #> 2865 1c468a8a-355f-429a-a12d-d8528fdc6aa2 31879 13796 56263 #> 2866 c5614795-d8e3-4104-ad9b-edfb575410bb 32004 13876 49515 #> 2867 9448aee3-538c-4ff3-8781-bc848b086bfc 31964 13839 49352 #> 2868 26a4f1e3-2589-48d7-a208-a636f90661cc NA 15624 NA #> 2869 3d22209a-9800-4199-aa36-b9c86c86455b 24794 7446 6159 #> 2870 6ef80c9c-640a-4b0c-8333-98d0696b2d0a 33290 15059 NA #> 2871 5670f3dd-822d-4d13-a6c9-f981354441fc 32718 14649 NA #> 2872 fc116de9-ceb8-409b-b322-60659c73e943 32818 14727 56857 #> 2873 21199f7c-91bc-4295-a6c8-bc0cfd017616 29999 11065 11394 #> 2874 a48a150e-3e3b-4ef7-b67f-9edc0cb04a14 33269 15119 NA #> 2875 9912fa7a-040d-40cf-99b5-0a7a28e0ba1a 31049 12632 48731 #> 2876 e79d8a12-4ec0-46d3-ae42-384f16deebed 24029 6570 5579 #> 2877 9d546e3b-0eb3-4926-a5ef-eb5e48b9330e 31861 13751 48822 #> 2878 b612c556-1285-405f-9294-733f0302869e 27413 9126 8196 #> 2879 e00a7f77-8320-4415-8c71-ba9c5d0240b8 27862 9403 9045 #> 2880 7011a0e7-f402-4bc0-bba3-b31d3613e47f 24098 6714 5646 #> 2881 e6d6138f-1081-457b-9d89-dc9cd0ab9598 33131 14965 NA #> 2882 f00ccf29-884e-4914-b9f9-aca0090ee9e6 32336 14099 38461 #> 2883 7dcdf083-2f41-4788-a668-000cbfd1c8b1 33285 15124 NA #> 2884 e03782ac-0d49-49cf-92f9-50997132f3f4 NA 15411 NA #> 2885 60cc4395-be8e-441f-b6b2-7e74e15f2593 29263 11148 10663 #> 2886 09b78e4f-e683-4c5d-b35e-35cc0dbbf7e5 31477 12492 48875 #> 2887 eeb9e3f4-e378-44ca-94b6-a724011ad710 25295 7504 6515 #> 2888 475aa381-25d7-4d6e-a6ce-bc7601f4b034 32739 14670 81532 #> 2889 cf45fa8d-13e0-4c16-a9eb-301b090ef83a 26633 8701 7791 #> 2890 57cec700-8671-4865-9174-a2a33e558702 NA NA NA #> 2891 83ffd861-ffb0-4560-a79c-52acd2b6cb1e 30356 12221 11998 #> 2892 7af4c94b-529b-4403-ab66-2bfed3fcf0c7 28378 10157 NA #> 2893 8fe853ae-184e-4c65-a00e-70d2f141504f 31974 13844 50967 #> 2894 ef422c88-b74f-4720-a831-947010c44ebe 32697 14739 50851 #> 2895 577dfac0-3f0b-45ee-afff-c851c6aebb1e 31920 13733 50727 #> 2896 57ace943-bda5-470f-8388-560cd1964153 NA 15794 NA #> 2897 f87e26bb-155d-47a5-b444-6196129e84a0 NA 15750 NA #> 2898 706bc0ab-7200-47e9-9b09-726110eb83dc 25757 8208 7050 #> 2899 5e21c974-4168-4d6d-9b6c-97c16a96fb01 NA 15770 NA #> 2900 90cc00f8-1ee4-4c9c-97f1-ff01de473cc6 33271 14677 NA #> 2901 e1677afe-2d03-4e11-b6af-ba3810720799 30191 11952 11833 #> 2902 017812d3-060c-4d3e-988e-30fe779741d3 NA 15797 NA #> 2903 818450c3-93a0-417e-80c1-b49a1bc541b2 33125 14412 NA #> 2904 <NA> NA NA NA #> 2905 c7e51d4d-18d6-442b-850d-040411225b14 28221 10155 9174 #> 2906 1a1830c2-9717-4af0-82f0-7d7b254764f1 27609 9437 8716 #> 2907 03f235b8-e338-450d-9107-8103b7d0a32d 31956 13862 29244 #> 2908 736c12de-b7be-4c12-bed2-57856b7c8449 30171 11814 11813 #> 2909 704cc12d-78b1-482a-bd2e-06dc9a633ceb 30634 12105 46744 #> 2910 45bf5c4d-8583-4ecb-a836-58b6f9d85ecc NA 15769 NA #> 2911 7c84bbbd-6bc1-4d3a-8fe9-263b807a08b2 31138 12938 46226 #> 2912 2157404c-7cd3-4758-b620-872ad7724d04 NA 15553 NA #> 2913 f17143f4-30f7-40da-8926-bda923f2761e NA NA NA #> 2914 b2805ba0-6faa-404d-b0b5-7c8ccce85f3a 28409 10262 9454 #> 2915 f26bd260-a1eb-42ab-8768-bc8ad24e4f9e 8803 5773 4340 #> 2916 a2b2f929-e3a7-4d19-888f-49600cf718bf 29392 11171 10792 #> 2917 8721884c-d136-4c87-ac7a-c61c035f1af2 32347 NA 46840 #> 2918 2ffa0607-bab5-4d29-b662-c054690080d3 NA NA NA #> 2919 d1ae3222-8892-49bc-bb3e-0bcd7c74522e 31119 12481 35381 #> 2920 b47fe0b2-e002-42a7-ab84-4b9e61adc9e3 31190 13003 46420 #> 2921 <NA> 30758 NA NA #> 2922 cfc93f5e-105e-4a5e-88d3-f4279893cfa8 26662 8743 7820 #> 2923 91ead748-e3b0-4926-bd3b-3e327b44e6bc 28477 10176 9522 #> 2924 409d4cac-ee90-4470-9710-ebe671678339 25785 8043 7077 #> 2925 a5b32b41-5394-41ab-b5ec-a8a0824b5605 32613 14319 NA #> 2926 2b119688-83b5-4d19-acbf-fa2087035fae 30997 12830 27414 #> 2927 990a689e-200b-4cda-85db-85d6c3af911c 29405 10803 10805 #> 2928 01d96b53-488d-4d98-8623-b2b29c7ebfbf 33281 14857 NA #> 2929 0ff73dee-f160-492d-b7c8-7d23b15e141d 33345 14887 NA #> 2930 48ef5bfa-7b91-4ed1-ad12-e94c0bc101c2 32814 14410 55632 #> 2931 c6938e95-e8cd-4975-a0e0-ef6aa9b207f6 NA 15581 NA #> 2932 4afb77d8-4564-469b-be4c-5a8587df8046 32036 13484 45859 #> 2933 0afca88b-83e7-49d6-80df-1f68b21cca9f 30362 11784 12004 #> 2934 1a92b0ad-3eb2-4df3-bf02-04c4d9ffe10c 30119 11985 11761 #> 2935 d21096bc-ed34-4b82-9129-a5b08d51a827 32567 14244 49074 #> 2936 8092ffd3-3f39-43eb-a602-b14fff77d413 28588 10433 9633 #> 2937 7483724a-dfce-4d6f-b499-481d37744fee 33268 15118 NA #> 2938 ebeceb00-57e0-4b74-9cf7-853da2afed18 30157 11737 11799 #> 2939 bad1a0c1-7ea2-4898-b5d9-ad1aec45c8b1 33286 14928 NA #> 2940 799eaad9-6162-4407-b9d9-1ca7542bddeb 33291 14607 NA #> 2941 1ea7affb-e5e7-491a-aaa3-55e200b2eb48 32803 14463 52266 #> 2942 59754f93-ff02-4f0f-844b-699b5e56f211 NA 15792 NA #> 2943 20278c55-eadd-4256-a4c3-0f03c29fa476 33154 14847 NA #> 2944 383f4814-6836-4766-a297-fc063e8509cc 31090 12986 30762 #> 2945 773494e3-4e77-4db4-8197-dba388a014a6 NA 15779 NA #> 2946 2b841f75-c4f4-4f3b-9369-a592c41e7aae NA 15356 NA #> 2947 c07ed6d0-af1a-45d6-b4af-ef2dc6f93af6 NA 15217 NA #> 2948 a275eaf0-f221-4243-9ae1-b91f6c7aa220 NA 15606 NA #> 2949 dffa69ad-331e-4f09-ae38-40a5a4406be6 28457 10161 9502 #> 2950 c00e0b6f-367f-4cf5-ba11-d23b1aa114f1 32068 13470 26586 #> 2951 df2caa7b-29f4-4391-8ce0-b1b711196379 33267 14638 NA #> 2952 81997ce2-9e70-4014-999a-25ebb405dbf6 32884 14644 26448 #> 2953 d32ec430-b35a-47cf-922e-2460ae818104 32426 13433 NA #> 2954 a296f2fe-7af8-4796-b50a-28ef010d0933 32293 13616 13534 #> 2955 c99cb557-3364-4755-a353-82737ba1de6b 31722 13321 23254 #> 2956 754faf0f-40f7-45f0-b23b-6ce990ecaf26 31896 13424 47864 #> 2957 16da963d-a300-4d72-8e4d-7771196c03e9 32367 13490 48152 #> 2958 257c2ef8-cd08-4bab-b0bf-68e1957420de 30854 11701 NA #> 2959 4a76219c-34b8-4cfe-81ab-2bb011368367 NA 15461 NA #> 2960 b228c353-bb1f-4ba8-aa6d-d18ecf297259 26561 8415 7618 #> 2961 597f6a8c-6a64-463e-93f8-f46cb8a7e592 NA 15427 NA #> 2962 f42981b3-d272-4438-a024-f28277392ec8 27571 9431 8678 #> 2963 7cfc5f12-e344-4a41-8f54-52a5c2bbd52d 9285 6054 4944 #> 2964 658f1215-e84a-4170-aaea-a6e8bacc8ff5 29887 10918 11117 #> 2965 5d03f256-0569-4908-a0bf-5f95325c8be3 27606 9447 8713 #> 2966 6ae140bb-56cb-4eaa-8473-3ebd39042325 30555 NA NA #> 2967 d0dcbe53-8c71-4488-b468-785a756ee489 32171 14187 43823 #> 2968 ae6a5f6b-20ac-4b44-9d05-b75634aa1199 31386 13422 50430 #> 2969 b4f07920-56e3-4e9d-b787-014b2f940b0e 32084 13889 12955 #> 2970 113045ba-c7e5-4a91-a089-bc1bbcf55008 26737 8830 7896 #> 2971 63a656b9-bcbb-44a3-95c8-e8a63660e71b 28265 9953 9332 #> 2972 13112f4f-03c9-432c-a033-454870cda46b 27553 9330 8660 #> 2973 f60017c5-e44c-4256-831f-86c8d8626481 32357 13646 49394 #> 2974 45c926b6-0f2f-4d29-b806-d21e4ea89ba2 31121 12726 37492 #> 2975 7da672ef-7d6f-4162-b3ee-7faa37b0ed95 NA 15176 NA #> 2976 d5ba025d-5e9d-452d-8b86-f68a3bff5e22 27657 9301 8764 #> 2977 7690ab6a-2ae0-4449-abd5-74ec54403f2e 27081 8688 8361 #> 2978 977e4e40-c596-43c3-a5a9-2141f6590b89 27549 9288 8656 #> 2979 cbe81592-1ee2-4bf1-870a-2578c4c8267e 25758 8209 7051 #> 2980 cec656f2-7a0b-4993-9489-7a0cef088c0f 33201 14780 NA #> 2981 d1e280f9-6df0-45d9-841e-0cfe6ea081b1 31154 12636 51408 #> 2982 55414554-e550-435e-a108-6047a9318e0a 31065 12985 49178 #> 2983 92da4f95-8f58-4379-b236-ee4ab8ff5daf 28434 10451 9479 #> 2984 d24bbe70-baba-4337-822e-c166a156f92e NA 15192 NA #> 2985 a1a2f797-77ac-4f13-8456-50a10a7fd61a NA 15317 NA #> 2986 1b8414b5-3db8-4e89-8bcc-7ac7f7d0b931 27558 9308 8665 #> 2987 fa8fbc2f-5160-4aaa-8f86-bbba666368a3 30548 12090 12102 #> 2988 12645147-c0fa-4aff-a395-496f8b9fb275 29309 10933 10709 #> 2989 92c77d16-f8bf-4716-bcde-6328838f4e65 30186 11953 11828 #> 2990 5165ce25-382b-4809-83b7-8c66d93c2aef 27905 9637 9195 #> 2991 acb7169f-3ffa-4386-9866-e06af6ed7fef 28405 10309 9450 #> 2992 6a369c2b-debb-4bfe-8ea3-2a8364ceb7ee 29436 10887 10836 #> 2993 09f4ba1d-6eab-4e9b-9f22-a5ff33f0f2d1 30766 12426 12183 #> 2994 acc85868-4848-4de3-8e6f-5427e93c8d80 31057 12545 50201 #> 2995 987c5e68-21d5-4bcb-a5f3-2e09cc512374 31834 13421 42741 #> 2996 1d05c82f-81cd-4fad-84f5-8be990c5258d 30238 12201 11880 #> 2997 fdc01035-18e4-4928-808f-26ee414948d4 29636 11432 11033 #> 2998 3c2fcad1-f609-4003-901b-651fb04bb137 33085 15101 NA #> 2999 6c434322-0ee2-4df5-a5e8-1a6e5f12285e 27551 9342 8658 #> 3000 764df188-bced-410b-ac54-84a86ef125a9 30190 11917 11832 #> 3001 1a8eff7a-1057-47c9-aa82-3dbf3f47a76c 32684 14444 56834 #> 3002 eb864600-7562-491a-b7a7-9eb3068dba06 31098 12752 48404 #> 3003 81b159d5-86ac-4130-a87d-dbd5e0b211b3 31110 12878 38563 #> 3004 9b747474-db7f-4137-a559-38402c828139 33195 14551 48659 #> 3005 d2e2b313-6769-48c6-a217-d167f04068df 30310 12209 11953 #> 3006 3618e094-0273-4e99-9641-65cc488128e5 30201 11948 11843 #> 3007 2a86a6b4-58ef-42f5-aff9-d5d979bea6c7 32321 13519 28308 #> 3008 7a52585c-03ce-4b03-91cc-742399b8399a 33200 14988 NA #> 3009 67da5b5c-0db9-4fbc-b98d-7eb8e97b69f6 26753 8930 7912 #> 3010 abd73d50-ce60-47f1-b37f-2f9a05b0d7b9 7520 4686 2607 #> 3011 1b0234dc-a434-4c31-bb41-6457c068a0fa 26669 8698 7827 #> 3012 c5175598-1392-4eaa-ae62-d99811a0c477 32319 14074 49231 #> 3013 75a74283-5ab6-49d4-bf2f-e6fcaf91ec36 31040 12769 51222 #> 3014 77b90860-a321-42ce-b505-32216dc40276 NA 15493 NA #> 3015 5180ecc5-bbd9-42b6-b227-c5efdb53cf80 33197 15013 NA #> 3016 e9348fc5-273d-4ac3-9760-462f37c025dc 32318 13829 49792 #> 3017 7ec15a09-9237-43cc-9401-fb76cc418022 25756 8207 7049 #> 3018 5ca7e14d-40e0-4074-94c7-51c2f6e2daaf NA 15647 NA #> 3019 0b06c168-c660-440a-922e-954ac15c0df0 29822 11646 11202 #> 3020 e6eb9d50-9231-44ff-89eb-7f7b996e042f 31980 13804 51503 #> 3021 93d10760-436e-4638-b506-a5c655ed5365 30622 12422 51589 #> 3022 0c727216-dadf-41d5-80e9-154ba9261663 30088 11740 11748 #> 3023 d0b7699f-5e18-4631-813d-2f709ee4b281 28416 10269 9461 #> 3024 848e4531-e43d-4ae1-a2d8-e0d258fb2c93 NA 15488 NA #> 3025 ae0e9024-5df1-4b5b-b928-3c0e3429fd32 31447 13154 66937 #> 3026 945aa5ab-3fde-4091-b360-66c2da384f2c 32214 13981 42414 #> 3027 370a8ac8-f6f4-44ef-91b3-a65ab79ec314 NA 15503 NA #> 3028 0a821a41-cff9-4b6d-9140-301a09edf895 25861 8305 7144 #> 3029 1c1f0577-f9c7-4406-b2ab-b9e42ddb1af3 25903 8339 7181 #> 3030 1a7caa50-2fa5-4651-85d6-05cda9d9b3b3 32823 14671 29314 #> 3031 63e4892b-f841-4694-afcb-4114021aa12b NA NA NA #> 3032 8925f38d-5c75-42c7-aa52-e3bcca16a21c 30449 11781 34807 #> 3033 b070601c-7985-4a1c-b71a-9f72bb5dbc59 23979 6541 5529 #> 3034 eb995f08-f023-4338-bc36-5def4a83f59e 32015 13679 38951 #> 3035 c2b21a35-81fc-465f-9476-6e5cda608288 30979 12882 46275 #> 3036 a3cf95a2-4994-4ee4-a07d-b27004183a6c 29310 10975 10710 #> 3037 e8e8a5fe-00d1-4ffc-9401-9e5cb254afea 31942 13816 44663 #> 3038 e1c506bd-9e36-45e7-b2b9-fff6a9728a06 29421 11187 10821 #> 3039 42de9d1d-0352-460b-9172-9452414fd7fd 27590 9320 8697 #> 3040 676a508c-c65f-404a-a2b0-f861a4bfd072 NA 15198 NA #> 3041 <NA> 9338 NA NA #> 3042 8ba68abf-e9d2-4927-bf8d-476f271d840c NA 15379 NA #> 3043 72cf3127-3953-4fd8-8049-3de1b6fa9825 31394 12932 29413 #> 3044 567fe739-5425-4d78-896c-f1486813910d 30253 11761 11895 #> 3045 b040e601-ec40-4757-bf3d-71bf64ef99cf 28654 10604 9783 #> 3046 b7146193-fcd1-4b02-a6da-625fe467f60e NA 15413 NA #> 3047 c6c50d09-f14f-41c2-9eb3-87514f0121f6 33199 14392 25582 #> 3048 b5bf2a1b-6a13-43ff-8cae-ed9793dc9437 NA 13032 NA #> 3049 f22b34cf-6ecf-4522-9c77-1da275dfda7d 28531 10251 9576 #> 3050 70473218-5ae3-47b4-86fd-151e68f1e8b9 31329 13030 20994 #> 3051 31815cf3-6f59-439c-9a10-8548151da1f8 33198 14767 NA #> 3052 9c18801d-bdaa-4036-9663-24280c763bcf 29654 11317 11051 #> 3053 7b96a836-666b-47b6-a0a7-9dbb0b4c53e8 27570 9273 8677 #> 3054 527dfee0-a242-4dc7-830a-ab7028308259 32860 14608 42257 #> 3055 2ada91b0-036e-454f-83c3-6d939ff584a9 30259 11892 11901 #> 3056 917d4304-d039-42a9-9c43-84e3786f105c 31899 13631 45752 #> 3057 132721b4-fd32-4795-b214-ab4baaaceb3a 27826 9353 8914 #> 3058 0e3160c0-d5ad-44c7-8c28-b31c1f6a7e03 32325 13588 25513 #> 3059 1726a359-9444-4761-a1f2-cb35ee6fa60e 25793 8026 7084 #> 3060 628a6a0a-4fde-4024-8d7c-28674953d5af 31868 13429 48274 #> 3061 3ae9f0fa-c711-4663-80cf-4707856c07aa 32887 14376 NA #> 3062 4f0053fc-5559-4551-bd81-dcd1cdf3a9ec 25810 8111 7100 #> 3063 4aae1781-1eec-48c0-b41f-e4fee61c3c32 31210 12579 28991 #> 3064 dda1c351-8148-4c26-9bc0-1d906065290f NA 15434 NA #> 3065 6124c4d4-337b-4926-b3f8-d2feb1c16fa9 30955 12447 47417 #> 3066 c90471cc-fa60-4416-9388-5aebb5d877eb 32695 14386 84109 #> 3067 bbc981ff-556b-4346-abea-f6efc0f94001 32137 14012 48107 #> 3068 4c3c6b63-aa1f-4452-9d1d-662073f06142 27567 9453 8674 #> 3069 7b108d08-f950-49c6-be33-85cb9222e655 30861 12260 12330 #> 3070 18ccb826-5584-4f6a-8434-cf9a3b927b0f 31320 13061 48021 #> 3071 f6d49e36-b9b1-47c6-af3b-a6134d022ea6 33278 14912 NA #> 3072 4fd34650-15f9-4ce7-926d-b31ee4ffd570 33244 14865 NA #> 3073 50287cd3-afea-47f4-aa56-98a82aa87cf0 26826 8981 7985 #> 3074 9bc107dc-1920-49db-b009-436d1a77955d 29957 11518 11353 #> 3075 ea8d0a80-2de3-4715-bcce-710f625ccb6a 32472 13969 49572 #> 3076 f84bf885-d6ff-4fc8-8b6e-64bb3bceb17d 31871 13648 25891 #> 3077 5d61b458-9b4e-4016-9983-7add180b698d 31261 12666 31078 #> 3078 1e9a3d33-62b1-4fab-9b06-b4d61ef1accf NA 15649 NA #> 3079 8de972e7-c997-4444-83a5-10f975d4fff6 32396 14192 50480 #> 3080 9a900683-a498-4ac0-83a2-e4ca36f48742 NA 15352 NA #> 3081 278a0811-98b8-42d2-96e9-160b7f364ae0 31926 13483 34918 #> 3082 2df83b38-7b2b-4aea-91ee-bfc5974486a1 31033 12531 49335 #> 3083 36da9517-98fe-4258-807d-6d7e4b334c2f 27637 9655 8744 #> 3084 f4d21580-2e19-4f95-bd9c-109aea149cbe NA 15721 NA #> 3085 4deb42ec-bece-4b00-b697-3caeff8c1997 31087 12641 49196 #> 3086 01e8d2da-0d00-4016-aa36-0a9f9415b224 NA 15718 NA #> 3087 4f13ee42-4af7-4719-bce6-60a426036fd5 33273 14916 NA #> 3088 dfa638bd-7c3a-4269-8b39-b9e6b2148a41 29062 10658 10109 #> 3089 18911a2e-1c57-49cc-b7a1-c2cbc599264f 31367 13410 28870 #> 3090 374036ec-f329-4098-8972-0d9ca326fd37 31433 13111 24750 #> 3091 b2da84c5-e51c-47d8-bccc-888f8caaa8ad 31931 13789 51282 #> 3092 27732f2b-2009-4954-a0a0-d29f5ce1abdf 32715 14484 42475 #> 3093 0f11eaf4-87fe-494b-b75e-2953bb10cda7 30469 NA NA #> 3094 2157df58-ca82-46cd-9897-261a80060292 30363 12223 12005 #> 3095 933edc6a-9617-4957-8f64-62a11bc43e6c NA 15585 NA #> 3096 a0557106-4517-4516-a5e7-d46cba52fe44 26749 8664 7908 #> 3097 02c7bde8-3715-462e-a268-95b3f2e19311 30317 11927 11960 #> 3098 c70cee71-fc9a-49a5-b51b-df5cabdf0794 33260 15049 NA #> 3099 4e0ffde2-7f1c-45e7-b9a3-628577751663 NA 15719 NA #> 3100 b5e33405-ea22-4fb7-97d8-8b324d6c90b9 33277 14913 50195 #> 3101 cee49408-2e91-487a-a8ec-d3314ebf539d 9673 7168 5232 #> 3102 f0f60621-a075-41f6-a07d-74fd9e1348f2 23977 6537 5527 #> 3103 fa1bd78e-99e4-4745-9896-cfea01392038 33346 15162 NA #> 3104 503eb9a7-83ed-4b96-b0f2-7afe4920bde9 30982 12500 48956 #> 3105 2f471656-9ecc-42ea-977f-0c56756d0557 32864 14682 48988 #> 3106 d6ce0b64-9526-4983-8c3c-7f14f2918f8e 28605 10339 9650 #> 3107 d149dad5-b0b6-45fe-be2b-68479b1295d1 30474 NA NA #> 3108 75f6779f-4f5b-4059-bed1-c79bd2b40b49 32585 13577 NA #> 3109 f48df73d-5d7f-4b84-868b-7cef4d77a282 33275 14672 NA #> 3110 ca8fe3b0-337f-4354-9010-3951127786a6 33292 14915 NA #> 3111 42a287f6-9a56-4699-8c63-bc54625ff6eb NA 15617 NA #> 3112 ecc4f0c1-64e0-46cc-9b58-91c2b215e62a 9520 6150 5180 #> 3113 f9dbd390-b1c7-41a2-9e96-6f5de2848efc NA 15247 NA #> 3114 2784acd6-85b1-4411-a00a-094a5fc01930 NA 15408 NA #> 3115 186014e2-3430-4510-867f-a7013daf0bb8 26668 8694 7826 #> 3116 a1902bda-47bc-4436-9165-2d79620e4030 27555 9271 8662 #> 3117 8bc51884-c9db-4745-8731-20eff25f41b0 31939 13562 48405 #> 3118 df483199-088f-47d6-b8fc-1574f74bb4e2 27820 9995 9000 #> 3119 112b95ea-d080-4aa7-bedc-5755c6c6b80c 33272 14917 33560 #> 3120 37849d01-7d7e-4a35-8840-e17cacd73d85 31837 13611 43089 #> 3121 9a612961-9fdf-47d0-b7ca-32b55adb1f61 25768 8184 7060 #> 3122 6267ade5-9e1e-4b3a-9e4b-89ceb5e17084 NA NA NA #> 3123 5554177a-c14b-4931-85c6-fc302eb6770a 30785 12454 12321 #> 3124 e56569f1-eaf4-473b-b92c-fc5c84cc7338 23990 6568 5540 #> 3125 c8d98dc8-ca11-40bc-bd72-7e2f4bd2ba3b 32062 13990 37468 #> 3126 ef978985-2123-411b-85bd-c59c04618dbd 33104 14723 NA #> 3127 94285cbc-7338-4732-b59c-3b1082cd5d83 9537 6932 5430 #> 3128 5c66adc6-62d8-4f29-aadc-11b5ed21495b 30096 12538 NA #> 3129 e49b6d73-1751-4254-b63f-60a71291e170 30095 11745 NA #> 3130 4c2f446b-0c2a-43ee-ab1d-7ab0373b28b0 NA 15583 NA #> 3131 5fd40b6b-d81a-4a4e-a394-53ed7e58511f 31619 13303 28653 #> 3132 538a03f2-ae79-45e0-bb22-01b9a8517e77 28449 10272 9494 #> 3133 e1a79497-3e4b-4820-99a6-8ecbfd03995c 31064 12851 66578 #> 3134 <NA> 30946 NA NA #> 3135 f6244333-6b6a-4e61-bc2c-cb6ffc2f318a 26739 9092 7898 #> 3136 9a0ca58a-7850-44b1-9866-50d7120faecc 33072 15095 NA #> 3137 f552cc18-aaf5-48ef-87f1-4791a101e553 28422 10271 9467 #> 3138 3d861092-3d64-4663-bf91-aa1f15e4e3a6 33237 15026 NA #> 3139 cc58971d-d24e-44a3-9f09-1b2289e92577 27882 9965 8968 #> 3140 a10ec19e-0573-4a53-9a27-5285ce9fe85f 30349 12218 11992 #> 3141 e39240b4-cac5-453f-b99f-6bbbdd1c9c82 32683 14616 64818 #> 3142 10498aac-6432-404e-8bcd-52b0b9f57a21 32185 14058 37228 #> 3143 ef490eec-3c43-47f3-b4a2-ae41c95108b6 33325 14866 NA #> 3144 b2fb04f7-8b2b-4048-952d-ee5c9ef460b8 NA NA NA #> 3145 5d109065-9f5c-4f09-b2b5-87d99920aaaf NA 15497 NA #> 3146 9000be32-15ad-4c43-bf8d-79a9c7113cdd 28553 10466 9598 #> 3147 812162ea-0b21-4da6-b7c9-383b1e8ab60e 31809 11830 NA #> 3148 4278baf5-f774-4031-ab0f-12a9c7e43c45 28738 10532 NA #> 3149 949c34b9-150a-4a1b-b884-1fcf1ebaabdf 26949 8923 7983 #> 3150 22fb2b54-4936-4e8a-a48d-62096c0c9bb1 8297 5251 3659 #> 3151 de816e24-8442-49a4-99cd-dde7e7c05863 24797 7248 6162 #> 3152 41c44740-d0f6-44ab-8347-3b5d515e5ecf 5228 1350 698 #> 3153 13038760-a019-4e2a-9aea-f13d7dce5bda NA 15335 NA #> 3154 15965c39-17be-4338-911a-8f337f48a3ce 31008 12566 34001 #> 3155 4b0a90db-f007-4ac1-8542-b531342b9da5 32746 14557 45866 #> 3156 5c651ad4-7aea-46d9-83c3-3d0cc35c7723 32629 13599 34669 #> 3157 24cf6148-f0af-4103-a215-e06956764953 26660 8622 7818 #> 3158 5a9401fc-e43e-43e8-9e63-dadecb12491b 30061 11642 11473 #> 3159 7f46a7be-286e-4bfe-8778-d03dbe600ce9 30117 11687 11759 #> 3160 f4992e8f-73f0-43e4-a9ca-c83953fe3f5b 29324 10738 10724 #> 3161 987fb8b2-98ba-4a01-bd84-d962dcdcd053 30292 11764 11935 #> 3162 c6c82ca9-bdb5-4ee2-be40-97bcfaf580af 31550 13274 NA #> 3163 410037b3-d7f2-4188-9d87-53bf51fd31fe 30163 11988 11805 #> 3164 c9e777fb-ad87-4304-b7c9-bcc0fdb3b42b 30931 12102 48114 #> 3165 47426d59-7af4-4714-8050-a85a0ae70f65 29418 10876 10818 #> 3166 93ed8c6f-b676-46d3-bf82-6155e89b4a68 30132 11806 11774 #> 3167 2fa75e05-cac4-4b40-8924-dbc9ae0c959c 31257 13286 66924 #> 3168 5afe93fd-0caf-4cca-83fc-7f405bebfa3e 28267 10008 9207 #> 3169 2142a164-48ad-47d6-bb27-0bc58c6b2e62 24017 6443 5567 #> 3170 225d9e5e-598c-4b32-9c74-d7df2018500c 31732 13341 66966 #> 3171 a0498a95-9dc3-4df5-8f51-a1564fb3de57 29978 11213 11371 #> 3172 a138f20f-8a41-4d0e-930a-a16b6cb597b3 30111 12121 12077 #> 3173 baa61bb5-f8d0-4f90-bbe2-028576b8d33d 30197 11718 11839 #> 3174 3513b0ad-2b0b-4e07-a401-54cd04106ea2 33294 14778 NA #> 3175 16e33176-b73e-49b7-b0aa-c405b47a706e 24171 6454 5718 #> 3176 4145f2df-1dfe-478e-afd9-fbf5fac68490 NA 15720 NA #> 3177 04e6911c-7569-4d36-9d74-9c49616de1d5 30480 12324 NA #> 3178 50d378c3-a33e-4f30-a5be-7c13bf52ff66 31712 13207 25576 #> 3179 19b027f5-8d0a-447e-8511-b98e4c95f9f4 33274 14892 NA #> 3180 93c17735-5275-45cf-b3ef-620351c62313 32831 14432 48054 #> 3181 c48c21d9-0ae5-478c-ad34-30a660cfa9b8 27535 9253 8642 #> 3182 ada174f6-9300-46ba-833f-018d007f20ce NA 15240 NA #> 3183 85e18d5f-8a3f-4b6c-88fe-dfdaaed5554e 32040 13987 47481 #> 3184 bdb77276-7191-4454-85c2-e1693a33d709 31114 12746 66915 #> 3185 <NA> 31274 NA NA #> 3186 1b7258f3-ea04-47ba-b315-cc709fef4bfd 29527 11487 10998 #> 3187 dfa9fbe0-286b-456f-966e-14a9f70cb85e 31413 13104 46084 #> 3188 fa9d0178-a2a7-402f-ad11-c7bea0b80705 25809 8129 7099 #> 3189 e2ba47b5-f503-42fc-86d2-2f6061551a30 29133 10716 10174 #> 3190 2a41d03d-aec1-4821-a241-6fbe1878d3fd 33338 14897 46014 #> 3191 d0fa2103-69a1-4ed0-a3cd-4eb8d5e342c2 30623 12097 39398 #> 3192 593d31fd-212e-47a5-b3cc-0793cf075a98 30477 12406 12068 #> 3193 c87aaf5b-e1e9-4d18-b0f1-f328b646031d 32731 14443 42894 #> 3194 30e539c3-74dd-4a9a-9ebb-4bdd0f0d39f8 29924 11101 11302 #> 3195 be7e6d3f-a5d5-4ba9-b694-5bdacab75606 25749 8164 7043 #> 3196 00c9f0a4-de0e-48ab-9138-14036b70fb42 31610 13299 NA #> 3197 f3de155c-da4f-4487-abb5-76225a8e3c17 31270 12614 38566 #> 3198 351963c7-bdc1-4966-bed2-845ccddfdfbf 31636 13196 49339 #> 3199 f063865f-624c-45ae-9433-4f9565890665 NA 15169 NA #> 3200 0224c851-7e91-4e93-9bf8-89a8d72c55ef NA 15530 NA #> 3201 22d9354f-3277-4ae6-bfaa-351ce38f1140 29574 11292 10953 #> 3202 aac96096-362f-4254-952a-5b3b04472f19 31948 13550 51378 #> 3203 1fc0af83-3c6e-4f4d-aadf-233e501c7241 30848 11987 49282 #> 3204 099c975d-104f-4bac-9815-52346771a515 32913 14835 42512 #> 3205 5af719d9-4a47-4a93-a522-a5060fd0df79 30224 12004 11866 #> 3206 2967c556-a7b2-407a-8013-cee8d99b41cf 29507 10910 10903 #> 3207 486d1b54-2f4a-4fe1-8935-c8659a8dc942 30652 12149 51190 #> 3208 bfdd9770-7f14-4949-8978-95c407ab28ff 33077 15046 NA #> 3209 7f969cc9-59cd-43e9-bcd0-c1885f0b18b7 31122 12731 25546 #> 3210 195083b0-4c73-44a3-a33d-4839b6196e27 NA 15599 NA #> 3211 c6392013-57ae-46b3-8a86-791f94bc0c79 28497 10454 9542 #> 3212 c909532a-693e-4e8f-b853-fbf41037c100 29298 11218 10698 #> 3213 9b80f314-0cd8-4a35-918f-a405b680e879 27180 9111 8220 #> 3214 594c3651-1a2f-453e-a39d-2c84a377f2b5 32601 14294 48374 #> 3215 a21d1e4a-aae6-4ebe-8f70-1087151b2b50 28266 9746 8982 #> 3216 b84b99f3-5fac-46ed-b892-5800159edbf9 32287 13881 50115 #> 3217 b3beb95a-c1e7-4d03-b61a-097199528816 29873 11355 11215 #> 3218 65a702f3-1e60-46a3-bce9-8b4e3f939888 32408 14018 56895 #> 3219 8905d02c-c7f7-4a50-901b-6eee71e39cc6 29751 11305 11093 #> 3220 <NA> 30749 NA NA #> 3221 728571c3-6651-4534-ad27-d86d72dc7d16 NA 15243 NA #> 3222 dcbe3642-aa52-43e6-8f4c-4b9809377c4d 31851 13465 43742 #> 3223 a78206af-6d78-4b4c-90e3-dc4bd62ac80b 33347 14985 82261 #> 3224 b7d42dc5-dedc-4cd9-b5a9-77cd30fd7ea7 31992 13607 48933 #> 3225 2a97c476-70e9-479a-be0b-11ebaeee11d3 31193 13002 48684 #> 3226 e9a7f92c-241c-4172-9874-6eb0c1576899 29630 11428 11027 #> 3227 ff0950aa-357f-47b4-b4dd-d4374413ffc1 32844 14718 57004 #> 3228 1e8324fc-540c-4a95-855a-8c0afcb4957e NA 15562 NA #> 3229 5dd762ce-5e26-4bcc-b868-529f0ab1d1b3 31608 13298 NA #> 3230 fe48d4f5-147d-479b-9f02-9cdd2e6fbfa5 NA NA NA #> 3231 d124ba69-9d3b-4e2e-bedc-032eabf95646 NA NA NA #> 3232 746168bc-d529-4fb9-bcd1-3fe9889b0027 30831 NA NA #> 3233 be449b4d-799c-4045-8e9e-e8a7fd7c2cc8 26264 8835 NA #> 3234 397901eb-5589-4f0e-8c02-f50509e22f3c 33343 14860 NA #> 3235 c5dd8fc7-7723-4a66-8faf-2106a9898f13 NA 15401 NA #> 3236 f61e6429-3f9b-478c-8697-e00fe813ce9c 30038 11610 NA #> 3237 8f442456-427c-4d96-8596-a7928074a094 32427 13774 30462 #> 3238 b0b804c6-b75b-4497-8f47-86ce924f862a 28679 10684 10127 #> 3239 cc67f4a1-99e9-48a9-84f4-245d7425ba6f 31484 12574 50154 #> 3240 c008f3d4-7141-4d58-aa63-cb86088b0c0b 29098 10646 10065 #> 3241 28558bf5-c09f-49ec-8cad-0154971728a0 NA 15277 NA #> 3242 587fc996-b54f-48ce-8261-adb50b872ec7 NA 15253 NA #> 3243 25a4ae85-e94b-4db1-b939-4c96f24ead11 26752 8711 7911 #> 3244 48dca4c3-c6ac-4122-aee6-26f7cd259824 28410 10351 9455 #> 3245 60d5e71e-e127-463b-8e6b-26a7dac3db76 31011 12883 48600 #> 3246 0a5c0e59-34b8-4131-bb9c-e70caff8a4e0 33158 14855 NA #> 3247 0813c5eb-608c-4a6d-8bfb-ed3538767e90 30992 12879 50213 #> 3248 29c53cbc-9d94-46af-b46a-674f9c1e5c79 30268 11963 11910 #> 3249 55d7adb4-be58-4c59-9a6e-1ceb73c10c4d 32020 13486 29367 #> 3250 1d1d59bc-ed91-4ed6-adf3-f40d0e296554 30539 12434 12097 #> 3251 513df09d-7d3a-44a8-873c-34f2fe46326b 24362 7075 6020 #> 3252 d53cd589-73d6-4aad-ae69-e979670a0d14 24008 6554 5558 #> 3253 06748afa-6b89-461d-8de6-9f1628169845 32326 13961 46142 #> 3254 dbce7118-3f7f-42b4-8da4-83a864f91aed 30762 12435 12266 #> 3255 090d7fd9-5a44-454a-88e2-db84fd18fd1f NA NA NA #> 3256 496680c4-2432-481b-883c-6f311da3a4a3 26799 8829 7957 #> 3257 3b69032b-a321-4da8-9303-9d21a1970de6 31914 13800 46808 #> 3258 19da8eea-111c-4e70-b516-0259015ad9db 27864 10144 8921 #> 3259 1f301468-0e6e-4a38-9c73-919796ebaca8 27539 9256 8646 #> 3260 88c9dc8c-2952-4e7c-8677-f29e30d15309 NA 15504 NA #> 3261 99c3a17f-afdd-4150-ba51-2120b61823fe 31453 13141 46976 #> 3262 9f102200-82e7-4fce-a033-2a06d16c35fd 32233 13718 46846 #> 3263 1f7fb52c-0320-4a3f-af26-608e99699fb3 28447 10275 9492 #> 3264 a87f6156-c028-4634-84a8-e3388d6dff2b 28892 10644 10017 #> 3265 d7afa203-07a1-406d-bb1d-eb81f331955b 31618 13300 46887 #> 3266 3c136bfa-d96a-4b39-966a-43973010c5b0 33344 15156 NA #> 3267 f163999b-6b80-4fea-bf19-919ed2518bd3 NA NA NA #> 3268 9aec0e35-cef7-4093-8de6-49868ca8644b 9070 6315 4580 #> 3269 da7cb0cc-543e-47d5-b29a-2ba2b341bd14 26721 8004 7880 #> 3270 5812204c-6dae-4450-8011-99e0f72864ac 25718 8040 7014 #> 3271 2a78e2e7-4ef3-4cdd-85e8-0d254b65143e 30165 11692 11807 #> 3272 ddff375b-365e-4af1-b9ae-58d03b1b1195 31219 12949 46517 #> 3273 eb3c219d-6489-4f2f-a542-bdbf7423a325 32763 14400 40692 #> 3274 25cc3585-6194-4786-968a-2600db46b6c6 30275 11767 11917 #> 3275 bd12a2c0-e6ce-460b-9f09-27b75c306608 32140 13998 44889 #> 3276 87c481c7-7414-43cc-82df-19ca0c2ae22e 29279 10819 10679 #> 3277 26873576-2bbd-4622-bc3e-ec847577855b 30269 11719 11911 #> 3278 47b995cb-8e6f-49ef-a6a9-4ba8cd649c78 NA 15367 NA #> 3279 413b48a9-4af4-4eeb-875c-44ad76b519f5 33342 15161 NA #> 3280 cad43704-4231-4a72-b616-c66642103452 31519 13022 29556 #> 3281 5b712aed-201c-43dd-b978-b7b6ef91178e 24891 7413 6256 #> 3282 d0f9112d-2496-450a-9fc5-d2d01b4d2454 28634 10507 9679 #> 3283 7656034d-8647-49e5-b0d4-b708423042ee NA 15561 NA #> 3284 b0719e3d-199b-46e5-a2b4-1091f6fd5c0d 30571 12235 51837 #> 3285 0f0aa0af-8830-47f8-b83b-ba0aab773594 28964 10560 9980 #> 3286 3d2f2c64-3d4e-461b-a3e7-677f74e6c5f8 33064 14632 NA #> 3287 d9fcbb62-399e-46c8-8a74-b5f3d96a3fa0 31255 12948 47243 #> 3288 62d557bc-ee99-4703-83f8-e7b1ca0c89e7 33340 15159 NA #> 3289 ab6618ed-8500-40ed-993b-7d3507dc52dd NA 15539 NA #> 3290 54c60acc-65ac-4e63-a988-697ee26e862a 31623 13206 47669 #> 3291 1eaede88-f9fd-497d-93bf-2849948c993c 30901 12291 23172 #> 3292 4e87e1a1-8b89-4738-a527-87eb0663c35d 30940 12367 38044 #> 3293 0b3217b9-ba37-4222-95cb-a7a222441e8b 24793 7242 6158 #> 3294 958c9833-2e55-411a-8e0e-ecc229bbeb14 29609 11256 10918 #> 3295 a9e580f2-1fbe-46fb-887c-c84089b507e4 31883 13432 48327 #> 3296 528b6f5c-7043-4c5a-bb04-7314b1e0f155 32946 14640 NA #> 3297 fcfa9d4b-3e09-46ac-b4b6-77d70a5f304c 29678 11534 11074 #> 3298 5e63e674-adf3-4f4e-929e-4a0ff2cfb1df 33348 14750 NA #> 3299 2a977d56-5e34-48dc-986a-e862e6886112 NA 15454 NA #> 3300 682eda79-0026-4ad8-8f45-a61ce42cb908 30230 11871 11872 #> 3301 6a8b0081-6ac5-4eb7-8840-8fd633568e78 30660 12926 12052 #> 3302 e1d69406-4bcf-46d3-b35f-5ef170e5258b NA 15466 NA #> 3303 4d14a6cd-273f-4cf4-aac0-7fe041b6c650 33351 14858 NA #> 3304 f527c2af-05ac-4086-a35e-8efa1136860d 30956 11823 22917 #> 3305 fb69c7cd-75b1-4431-8648-daec4817974a 30312 11816 11954 #> 3306 446f9da4-8ca7-4552-9674-e0391ae2a2d6 32826 14662 41878 #> 3307 ffdf2019-e01a-49be-86e5-09b25371af2b 29495 11544 NA #> 3308 1b1e5bef-13e9-4814-b7ef-7970cbf103b8 28105 9433 9304 #> 3309 7f32c3e6-113f-4922-b51d-a1a5a1d43bcf 28533 10422 9578 #> 3310 76c630cf-0fd3-4210-a73d-9347da9d9d66 27642 9337 8749 #> 3311 5ce96781-4dea-4995-a6ae-7e8ba7acfdbc 28635 10427 9680 #> 3312 4296dd5b-261c-4c64-b1e2-e2afcda719c5 31211 12751 49354 #> 3313 c0520c25-b89b-4f4b-a905-dd0c5612cf88 31158 12991 51583 #> 3314 46e11bbc-8d8a-4b32-96a0-d059472b8fc6 30646 12040 49357 #> 3315 c967809a-7c88-447d-9d9f-6aebfc8370f7 29258 11067 10658 #> 3316 3f178f8f-97fc-491c-ae5a-4c2544e611ef 31402 12834 49379 #> 3317 1163ba47-560b-4705-82be-69967c4fc096 31415 12699 38426 #> 3318 8e06b4a9-d210-465c-80b7-9bae20dc64b2 30381 12091 50361 #> 3319 4bbe8ab7-3ae2-42a6-a471-fd2b344843a2 32059 13603 28704 #> 3320 81ba31db-e21a-4944-8d0f-4e12cb83e3c4 29318 11038 10718 #> 3321 2d969b4e-4da9-4bf6-abd7-02c5e607c080 33287 14692 NA #> 3322 a9c41c5b-0dcf-40cc-a76c-644307f2f2df 28421 10057 9466 #> 3323 6c582650-e297-470b-bb43-f9a1cee68417 NA 15598 NA #> 3324 6e91b25a-4bf4-4a53-a328-69d3e7ef86c1 28785 10701 9940 #> 3325 eff8e3ec-98e4-49c8-b865-436e3abb0870 32886 14381 55800 #> 3326 19dd3c47-6da2-4baa-8f4d-c44c152924f2 NA 15479 NA #> 3327 198b8c48-abe7-4fcb-9aea-6519fa650b18 32055 13547 49407 #> 3328 186a4bda-d3b3-48c1-8ed7-cb4ad1014062 NA NA 50406 #> 3329 d187953e-102f-4f78-b840-79fb385fa15a 31079 12914 49260 #> 3330 226d3b7d-f8d9-4dfe-86b9-ba710eafaced 31666 12970 NA #> 3331 63758554-7225-48de-a553-c43c03419c49 32899 14729 48455 #> 3332 e3601423-c3ac-4013-bbe9-3478e2b7e1dd 31858 13745 27271 #> 3333 8d617c67-6e6a-4afd-b5c8-f98dd744c36d 32903 14753 38472 #> 3334 16913d50-4fcd-401e-abb8-3a9fdfd24de5 NA 15480 NA #> 3335 0286d565-4914-492c-a726-9c1be03c8c39 NA 15710 NA #> 3336 9947409c-4a34-45f5-99a1-aa6daa13c430 32672 14452 56436 #> 3337 fe1a1b0d-1d0e-496c-8777-2b5aff1f7231 30298 11904 11939 #> 3338 38bf12bf-5a77-4b2a-9d2a-e63008fe8be1 32073 13807 48426 #> 3339 8b497077-73c5-4e3c-a1b6-348b579ec02c NA 15312 NA #> 3340 0777efdd-14bf-4561-bbb4-20f926fe115c 29386 11063 10786 #> 3341 4faa0d20-a129-4bb4-9fb1-10690c00641c 33185 14947 NA #> 3342 0a1be8da-5839-4768-bfe5-9fec74908268 30983 12618 48698 #> 3343 39e4f09f-54bd-4d2c-9d71-c6e35d1bd0b0 32198 13625 48922 #> 3344 8442c8f8-7fbb-4a0b-8407-355c2dfdf72c 31133 12544 48966 #> 3345 87c4b182-e4bc-4f35-97ec-8537a2665875 30412 12173 12222 #> 3346 8a73dcfa-3e7c-4a8d-acee-7d2b1fee6c2e 28501 10321 9546 #> 3347 5ba11bd2-e764-4dea-98e1-dad01a21cdd3 30130 11900 11772 #> 3348 710f3162-8649-4eba-a707-1e6ea0cd1577 28911 10836 9818 #> 3349 c87b35d3-1e67-4944-867f-71101f2c4a9a 31408 12806 NA #> 3350 b254f034-ab48-4a08-98d7-0dc6724e8a20 31387 13417 46833 #> 3351 058c99fc-470c-4579-a165-03e043335cc1 26800 8896 NA #> 3352 622c2cf0-a29e-4943-8819-f9dc48f3d7a0 31421 13131 NA #> 3353 a76abacb-2309-477c-b075-ec05ccf938ae 26673 8696 7831 #> 3354 677a2fa2-55d5-4a1f-b56f-1f97b0a4b61a 28557 10469 9602 #> 3355 6484ba1b-2145-46fb-83f7-c38baa3080c0 NA 15375 NA #> 3356 e7b9abe1-2a5f-4029-90f5-7fd174750093 29505 11149 11011 #> 3357 4217a140-cd83-4b9b-8493-b5b27688d055 30144 11746 11786 #> 3358 fceeeac9-470d-4864-bc19-36c5d03013b0 32151 14257 38548 #> 3359 5c52edd1-7566-483d-9564-03c21438fb29 32832 14480 49073 #> 3360 5ce0fd7f-bb8f-4d0b-a995-1473e148d45b 32204 13903 49677 #> 3361 897fc741-34bd-4f34-a1ed-125d56805b70 29485 11247 10885 #> 3362 c727b9d9-9776-415d-953c-9ae046e10a05 32005 13700 49753 #> 3363 dcf4a3aa-6fb8-4b50-a246-358fffa55af8 NA 15652 NA #> 3364 a12890df-5475-4689-895c-6b54abc71b1f 29429 11230 10829 #> 3365 0a3aad9f-54db-4f86-92d3-c2faab45c046 31963 13983 46087 #> 3366 d6ac9c49-ef2f-44be-a5df-dc57ce23fcc9 32450 13580 46801 #> 3367 9aac7466-6718-4c40-9431-e51a3bfa0ab0 28393 10257 9438 #> 3368 6ffeb3fd-dd6f-4b03-95a9-da9908005415 NA 15213 NA #> 3369 a54039fe-c6f8-4a25-82e8-80ce45db9a67 31097 12987 44802 #> 3370 1fc0823d-73ff-4657-9c85-f4527abd6a12 31254 13284 26461 #> 3371 40a38dc1-6355-4467-9064-07e2d063f558 27774 9631 8880 #> 3372 c8fc4151-7d5b-49d3-b269-e5b2b1246736 32778 14516 59820 #> 3373 dfdbe925-912e-4eca-9a71-e38cd3c88479 28397 10263 9442 #> 3374 bb414aa3-f682-426b-abec-042edf34296d 31544 13270 46936 #> 3375 94710841-1b2e-4309-82ff-d7a00b4293e8 30242 11818 11884 #> 3376 4c22d0dd-3f8e-4abf-84ca-7f08c046e3a5 28000 9429 9025 #> 3377 55e1ecbd-96c5-456e-833b-9cd3f046f3fc 26945 9832 8358 #> 3378 2c259733-ec2c-4e3c-bb7b-34dc0d37dc34 28839 10179 9896 #> 3379 d2023f5b-f73b-43ad-a816-f10dadfdfaed 31301 12623 26152 #> 3380 d446443f-130c-4bce-a300-a15cf66f27f1 33207 14393 NA #> 3381 0742d2ea-1cf2-49a6-a150-77ba6e034d8c 7426 4385 2467 #> 3382 a212c5d8-67f8-48b9-99be-2c121ee56366 25807 8008 7097 #> 3383 260e8f87-1d08-4c69-8e2b-afa825c1a68a 29650 11312 11047 #> 3384 697200ea-cabb-40b8-aeac-e52763310306 29390 10851 10790 #> 3385 86363c46-567e-41d6-a59a-3fed9ca64591 29560 10902 10927 #> 3386 c0a8a5d0-583f-457a-9d96-70027d3f69e7 32736 14639 78050 #> 3387 82996e3b-b72d-41ca-8eb1-91e462ceff85 NA 15315 NA #> 3388 3610560c-c2c1-4649-9554-ceca409ae27f NA 15586 NA #> 3389 58bad26f-f848-4968-8dfc-d4f9c8d4d77f NA 15691 NA #> 3390 52735659-a294-4f64-a7f4-3591450834e5 30494 11876 12020 #> 3391 f0f0b2f2-14b7-497d-a9bb-a5166c65bc56 32183 NA NA #> 3392 b24625a0-d402-4d59-a778-aa4b073bfe5e 27648 9323 8755 #> 3393 870e89e7-018a-466b-adff-d0fe872b3e20 31161 12920 NA #> 3394 a195e517-f732-4e55-a84c-2ce132a73c65 32086 13444 38305 #> 3395 3208880b-949f-4926-85eb-1940770550ea NA 15289 NA #> 3396 02fc59d0-8a66-431f-97fc-21fdc096eb14 29411 11009 10811 #> 3397 2aa9cc15-bd17-4e53-bfcd-17a2fb1a2170 30763 12049 12267 #> 3398 7bb0744a-c93f-401b-9091-2a34072a40c2 32812 14568 39993 #> 3399 9ae2584a-40c1-4b30-be34-a9567659eacd 28947 10234 9859 #> 3400 cab3a948-e9a2-4b3d-b893-020836be00d2 NA 15569 NA #> 3401 7126e287-8c89-4204-b565-433eee67db48 31401 NA NA #> 3402 66a21b6d-97e5-4732-8bb0-062145d6bbc6 30153 11710 11795 #> 3403 7e8c4641-2beb-4213-ba22-69fe0307005f 31908 13536 48229 #> 3404 f4f11bc2-2fe6-4da8-a83c-63085788e789 31405 13101 47908 #> 3405 eb626cc4-10ec-4385-933e-eea81e2dbfbc 33303 14603 48344 #> 3406 d3cc6f89-56d8-45e9-87f0-3a1a56f97bc6 32038 13428 47931 #> 3407 d6d41a89-a8af-48b9-bf75-561de99a1d87 29070 10680 10075 #> 3408 d6f5ecdf-be55-430e-9370-0ea608395dad 32253 13515 39533 #> 3409 af534c7d-791e-4b7f-900d-2d8fd47c0d2a 33209 14503 40113 #> 3410 4a213e4e-b0ba-4124-833e-33c528bd5908 32187 14055 48341 #> 3411 0fb60ada-bdd3-4d74-8c98-058303a1649a NA 15274 NA #> 3412 041c36ad-0d7d-4ed1-8157-95092b3027a4 24802 7548 6167 #> 3413 766bff49-4d79-4e44-a53c-ba9f8714b7f6 27778 9789 8884 #> 3414 03611d74-221a-4436-913f-d23f95542598 30561 12436 12280 #> 3415 2182217e-7580-4602-babb-c73beee0eb2b 29627 11427 11024 #> 3416 93eb4e28-a809-4192-82dc-783ab472323d 29788 11455 11257 #> 3417 d503e3cf-861d-4b06-8de8-f66b1b72a3bf 8313 5294 3675 #> 3418 49606a1d-e06e-4cde-8528-f1adca8bd5fa 29212 10774 10345 #> 3419 294acd0c-63a9-429e-afaa-2bfeb00d7988 25805 8310 7095 #> 3420 f7163bae-d4da-4d38-847e-e0315605b9d0 9490 6215 5150 #> 3421 bffc773e-0286-4c48-933f-17ccd9c805d6 31721 13339 21865 #> 3422 ae34c85c-a174-4f6e-b11a-f3b56e3c230f 32526 NA NA #> 3423 8ae7ee0a-772f-441e-be2e-45508751d44b 32099 13680 28746 #> 3424 6c2c4e4c-82f0-46e2-bcfb-3ed5f452266b 23993 6563 5543 #> 3425 d06b5a20-97d9-477f-bd3b-bb454575c8a8 31801 12709 45591 #> 3426 2ae2aec7-ff82-4d2f-85ad-bba52ac09650 32133 14017 25158 #> 3427 7e3c0631-1bff-49af-b6bc-9c66c59a579d 25808 8330 7098 #> 3428 d80bd709-da27-4f3f-884b-a1e420191453 32489 13949 91475 #> 3429 c1d07724-541c-49e3-bfbb-6843786de72e 28077 9658 9148 #> 3430 8c2d4bf5-e654-4a8b-a17a-f81d6aebb030 31617 13295 45599 #> 3431 dadcbaf3-cd13-43dd-8b7a-9f81db468872 26874 9574 8034 #> 3432 0e20c25d-437d-45b2-86f1-73bbd2d22c0d 31108 12801 46953 #> 3433 3a3a069f-906e-4fa5-94ad-4cfd4e47b1e8 29093 10605 10060 #> 3434 d03aa6ca-ae90-44cb-954f-507213a73b22 24950 7614 6315 #> 3435 fd8d401a-0c57-4078-a29e-2ad3b07e06ad 32117 14028 26727 #> 3436 7f87c105-e608-4911-8897-31cc5a443175 8964 6404 4501 #> 3437 00eb19cd-bd8f-4f2a-98e7-a718d50ad66a 27701 9428 8808 #> 3438 4db7ca4c-e0b3-4652-b311-6711c816c96c 31535 13264 NA #> 3439 ed6cf80a-b7d1-4a99-8a29-63b5c620bcd4 27604 9430 8711 #> 3440 b9d781a5-8049-48d8-a2eb-9b7ef61f22ec 31260 12655 46610 #> 3441 e9596e01-6469-4245-b5f9-d68a6718e4a4 32562 14247 30032 #> 3442 d33249f0-02fb-4c18-a73a-af8930ad27af 28722 10866 9794 #> 3443 53425600-c59d-4e89-867b-86affd42c13d 31476 12857 NA #> 3444 45f92801-156d-4488-a164-b9e527a6b72d 30521 12432 12120 #> 3445 778bde7d-c328-439d-a2ac-7f9d1ce23df9 32144 13717 45568 #> 3446 99fb51a5-1ab1-4818-90aa-f0c10944067d 32407 14022 46763 #> 3447 1c435ae4-8e29-4006-905b-7fa34f87604b 28459 10274 9504 #> 3448 a1cb7e9f-cd33-4c3f-9321-0c2258750eac 30385 11786 12058 #> 3449 95abcdcb-16c4-4a13-8b52-ecd499c25c07 32554 14268 29378 #> 3450 a6025030-596c-4829-9138-8281df21d841 26730 8634 7889 #> 3451 f1decd46-ab7c-4ed9-a1ff-844a63bb091e 31767 NA 26384 #> 3452 4454ebd3-84f9-40d1-8d7d-8917929b6af5 30397 12982 22381 #> 3453 5f642a99-fc5b-4cae-b23d-8d043681b264 31522 13384 NA #> 3454 386e226c-faf0-4336-82f1-9e57d76ed617 29669 12362 11065 #> 3455 1818c219-44ae-4cd4-b8fe-5d93e596e936 27733 9772 8839 #> 3456 a64aaa83-6381-4b2c-84b2-daf2002c9060 28610 10494 9655 #> 3457 9ca42d97-d764-4446-b69a-a76fb7b5363c 32240 14086 28134 #> 3458 c3d1c1bd-0552-405f-9fe4-b99925e7ec15 31432 13110 39377 #> 3459 b1674df8-2270-4ade-a168-00159259c0b8 9313 6055 4972 #> 3460 db4eadbd-ef43-444c-9e33-1ee781dc9965 30329 12035 11971 #> 3461 bb6c7928-54f1-43bd-bf14-f2645644dda9 24918 7518 6283 #> 3462 2cf86b24-50e1-4047-83cb-afd82b17aa91 30865 12317 12338 #> 3463 38709da2-bd62-45f9-a7cd-f209879aca81 26875 9082 8035 #> 3464 b8fa8d21-898c-4718-9b4e-f512c6414b28 29483 11246 10883 #> 3465 3ade957d-5c6f-4f8d-8d56-fdaae1753aa2 29487 11248 10887 #> 3466 639ff90f-285c-44a7-ba8d-6a47d0ecff71 24924 7623 6289 #> 3467 bdeffac7-3509-4689-af1b-29e9fe86b008 32120 14027 48212 #> 3468 8cd557fb-94df-48c2-8665-198e5c8be20b 25776 8211 7068 #> 3469 2ba5bdad-0b7c-4637-89a3-5b7b34d215b0 26674 8643 7832 #> 3470 a3012bb8-118f-41f9-a010-e264499ff750 30316 12210 11959 #> 3471 4f799675-2b27-4437-9acc-bc4e0c73ef0f 24685 7236 6017 #> 3472 3f9d4b4d-2c3d-417e-a95b-714520b309be 27596 9316 8703 #> 3473 3e310944-48c8-4d57-8e44-2a76e789980f 31524 12707 49365 #> 3474 a2015dbb-fd0b-46fc-ad19-eb387605f244 25825 8320 7115 #> 3475 e2ef7b61-cf9d-47ab-927a-77759412ceb1 26691 8649 7849 #> 3476 1e3967fb-21cc-43b8-9f36-1c2e3b280cec 9289 5984 4948 #> 3477 b2e66f2f-5b53-4e72-bbd6-83c948f3b7de 26082 8440 7362 #> 3478 21f0649c-8f52-4837-8d63-baa836bbf58f 32252 13503 49433 #> 3479 29ac0dbd-2d1c-40da-88ba-36f0d3856d05 24941 7600 6306 #> 3480 5c4ec28a-5393-4073-a71d-df0dad8858c6 26635 8879 7793 #> 3481 b381794c-a1e3-4659-9ae6-766d3d943909 28468 10417 9513 #> 3482 73cdb8ae-7e5b-4025-aee5-6891ed3500a1 NA 14264 26516 #> 3483 8796d7af-c72c-4a1e-9665-677afd849a52 28630 10437 9675 #> 3484 2bdf19ad-a957-4f3c-bb2f-2bb72b0b3595 25853 8174 7649 #> 3485 812c5dd0-4da5-498e-bf8c-4efdd885973a 29589 11301 10961 #> 3486 08b0d908-ad25-4b05-8b44-8c60eabb76a8 26571 8566 7624 #> 3487 0d91f918-0ad1-42c7-9eff-adecc72ca442 30607 12453 12105 #> 3488 40002ab5-a6c3-4ab5-84ac-6502c8f3e904 31418 13371 49361 #> 3489 d00ac1d2-dd0d-4362-bfb3-29c9f29d2671 31690 13205 66956 #> 3490 588022c3-f9c6-4f30-b4ea-a264f99fc997 25994 8596 7450 #> 3491 11ed92b3-c1d1-46e9-87d9-387fd3280e4f NA NA 42965 #> 3492 695d16fa-1c4e-4ce4-9d2c-0e117b4fa577 30569 12233 12242 #> 3493 5c6f3e4a-dee5-4aae-a128-14d638293a75 31756 12873 68148 #> 3494 7979b613-6dbf-4534-8166-6430433c1ec3 8607 5848 3589 #> 3495 4f260130-570b-4a37-9f17-193b6c9cc025 28639 10505 9684 #> 3496 d2e89432-b9e3-4beb-a795-f0e9f6756efb 29079 10795 10080 #> 3497 c0cfe76c-0633-4b6b-b282-02ca9911cabd 28544 10227 9589 #> 3498 3e5858a5-d0b8-44ba-94f0-e341b1139676 30859 12259 12328 #> 3499 85a051d3-3f76-411d-a59e-82d04a971c3a 8909 5810 4457 #> 3500 23893852-6ef4-48a9-99a0-c51f41670508 8906 5878 4454 #> 3501 8ed1ce29-8bbb-417b-9766-5de8fdfb4606 32379 14159 34280 #> 3502 8076f480-6c59-4aa3-8e19-71a9d5227e4b 26939 9874 8359 #> 3503 e7f4b773-e944-4b62-a67b-fa0968862a37 29534 11494 11004 #> 3504 7e4cc74a-0ae2-422f-ab7e-dc26fc116d92 30549 12030 12095 #> 3505 eee79103-9ded-4a79-812b-b9b18da20135 29723 11442 11145 #> 3506 a69f9855-327c-4618-bdfd-cd913b31904f NA 14107 94364 #> 3507 2ded061c-1061-4c92-b417-c6ef04134c8c NA 13563 50541 #> 3508 0d50cb7b-d179-41b7-b4bd-acc4c05e2d8a 29771 11328 11129 #> 3509 6eae8044-47a4-4cd8-9c4e-6539afdf3837 31152 12767 50451 #> 3510 101b9211-4f92-4024-8978-b4df2eec3c74 27708 9768 8815 #> 3511 02eb6a66-8d0d-42a4-a2c9-10e028908910 28204 10001 9115 #> 3512 57d6fd4d-29e1-46cf-a3b0-601cc5b3d48d 30846 12347 37997 #> 3513 e0d47951-fea7-4f2a-a936-f4d758ea6b83 25716 8162 7012 #> 3514 <NA> NA 12380 12063 #> 3515 688f7a3b-4d66-4fcf-802d-6a3cb133ea30 24578 7140 5903 #> 3516 3461b2e5-e015-4f0f-a2a4-a5116732ca98 NA 13594 NA #> 3517 dbe9a91f-bc71-48a2-aaeb-8f7f3d3fec14 31297 13208 43029 #> 3518 fc309bb0-d8f9-49a8-b2d3-5c6eea4dec24 24960 7603 6325 #> 3519 a4f5b5d2-e56f-45e4-b448-ce8ac8b77706 29896 11373 11126 #> 3520 e8e8cc9e-678e-4da1-8a23-cb53f15a9b9a 30348 12170 11990 #> 3521 075a78d5-72fd-440e-ae25-f22b57835ec4 28570 10475 9615 #> 3522 bb4823e2-f2d4-4910-8528-a762f8db449b 31385 12580 50450 #> 3523 a24108bd-87b2-47c2-903e-d38e35a02652 30732 14511 51223 #> 3524 4a69f085-8bef-4b3c-a66e-cab65b3fcb7a 6341 3008 1321 #> 3525 accab0d5-2f39-4a5c-a595-c029cb6a9c05 29684 11538 11080 #> 3526 4990de3e-553a-4cae-9ce8-c3d1f4eb6bbc 32365 14185 50342 #> 3527 226723b9-fddf-45ca-8245-d8cc5442c400 26677 8644 7835 #> 3528 ae269fa8-85d9-4d95-b0e2-6d0451dd9425 30282 12012 11924 #> 3529 0553c32c-4b9d-4ea9-811d-6d58c1985c9b 32331 13849 NA #> 3530 fabca6af-000d-42a9-8a90-524f401a9774 30620 12282 12118 #> 3531 036fd3fc-e7a0-4f75-9019-8a5badff5e5f 25401 7937 6871 #> 3532 034cade9-af0c-4c85-b5c6-9d6ada777dcd 31236 13150 50445 #> 3533 b2ee8205-9bb6-41e6-814d-40433673e172 29916 10934 11337 #> 3534 14d50779-5b08-44c0-9ae1-6f05b1b8a4f9 29536 11493 NA #> 3535 169612b8-67e4-4b1c-bb0d-c73967ac583e 31632 13269 66952 #> 3536 b9523f29-adfa-4382-98f2-611c590bb526 29956 11515 11352 #> 3537 28270bed-0130-4ef3-aee9-c7069a662c46 30335 12027 11977 #> 3538 8564968a-505e-4954-81a3-3d288204cf91 31521 13415 50549 #> 3539 d461a676-a2f4-4e26-b851-60af14b00ca7 30239 12036 NA #> 3540 db7c756b-a340-47fa-bdd5-5556fac68d20 30619 12404 12117 #> 3541 b8e9269d-2310-4dcc-a225-6bcf47d8e5fc 30744 12399 12287 #> 3542 08770f4a-4b29-490e-b76a-f60d87fdc414 30014 11407 11418 #> 3543 976fdc88-10c2-469b-8ee4-c96de6805339 31368 NA 49372 #> 3544 7b378e5b-6414-4bc2-8ee8-c196d2ed7d78 30628 14605 49137 #> 3545 cd6cfc03-9ffc-4a2d-8dd3-7dac5915e637 32628 13730 27582 #> 3546 6d9fad01-7167-4291-9523-3f72d6837d4c 27989 9960 9252 #> 3547 655f87b9-e129-4271-8b90-8ff3c9b9d4e9 31814 13570 NA #> 3548 b7b3c187-7447-4d02-94b7-5d3ee64ca530 26122 8584 7716 #> 3549 f2d31944-cc46-46e0-bdeb-5cd99ab366a4 NA 14167 56047 #> 3550 5161ce0c-a12d-4daa-9176-eb9edee80c37 27725 9699 8832 #> 3551 3c20f5c4-3ac8-47aa-ba3c-c09ddf94c814 31667 12597 49348 #> 3552 56e7b803-c110-4ff8-b097-7e3a7e7c0a9c 25833 8166 7123 #> 3553 2b76130f-5a38-429e-a620-9c5b1cd557b7 NA 14298 39342 #> 3554 42cbcd13-4fbc-4cea-905b-85d2c0b0ff55 26713 8905 7871 #> 3555 a2907a39-139b-483f-8369-e278c26a6951 8424 6211 3786 #> 3556 47abba7f-63e6-41e5-ac8f-9b3f274db595 31703 13313 49337 #> 3557 207d740a-6c64-449a-bd24-b90aa85934d3 28509 10421 9554 #> 3558 ebfdad99-5262-4d16-9024-85583947d544 27608 9690 8715 #> 3559 bc41be9e-edb3-4582-b2eb-c7177dd6d979 31273 13044 42401 #> 3560 2023386f-584e-4cd3-b4e6-491cda3fee31 26043 8170 7385 #> 3561 1413a204-0c2e-40d4-b1fe-15ada63dfb4a 29848 11529 11243 #> 3562 06dab231-dbbd-4ccb-8233-3c2d70318ee3 7773 4768 2969 #> 3563 ba95b150-fad0-4a8d-b15d-a5e318d95b7f 30491 12929 12017 #> 3564 98649d6d-839b-48eb-a92d-e57f82807841 31406 NA 49351 #> 3565 221abfe3-f41c-4c1f-aa88-ca06fc57ed8e 24876 7517 6241 #> 3566 3f05e230-38fb-4caa-b488-69e034ecdc03 28656 10685 9784 #> 3567 6a85f300-518d-4c97-860d-c69713649c58 29564 11285 NA #> 3568 be4f1dbd-6ffd-4054-9f49-cc398d4ce5f3 29962 11656 11358 #> 3569 ac65cfa3-1db6-40c1-a3f8-563767d599ef 30776 12465 12192 #> 3570 5927b542-db0f-445f-b6cd-eb8c9e80c427 8797 5591 4334 #> 3571 1bba6a5c-9759-4559-a6c3-4b2ffffa1ab8 28959 10832 9974 #> 3572 69d9c13c-2293-4eed-ae35-01c90dd45c1b 7182 4457 2223 #> 3573 716c039e-a1c7-42f7-87f9-ff414df726d3 28430 10405 9475 #> 3574 30c9d379-80f5-4d53-a05f-2aca8c208e8f 31192 13001 NA #> 3575 a486fc4b-e475-4ff2-b22a-f454c266819a 26962 9162 8142 #> 3576 10af66eb-88ac-456d-8d47-d7c1e19c8b30 28270 9830 9135 #> 3577 ecd53958-08c3-4ef0-8984-ec68d58deec1 30210 12033 11852 #> 3578 86476721-3f9e-4ad1-8c7a-40be5a43e602 28471 10418 9516 #> 3579 5661762f-9cf4-4cc2-b9fe-4cbe58f4ad28 32286 14143 94367 #> 3580 9dc422e6-f4ce-4bc9-b8bc-7ff946b51a8b 9480 6242 5140 #> 3581 d6f6362d-4e7d-4278-8471-780da7a203a7 31658 12955 NA #> 3582 5f55d5e7-1ff5-4ace-830a-920fe46acb88 31672 13045 39373 #> 3583 20da5dae-7faa-42d0-8b97-0ce3e3beee43 28715 10840 10294 #> 3584 e5bd7067-d9ac-4aee-a073-3f345cf8191c 29847 11053 11227 #> 3585 6775c8ae-1966-43c6-a61a-147ea5d112ff 30093 11704 11517 #> 3586 5bb30e2d-868a-4597-94dd-0e0f6ab76d66 32500 13690 50439 #> 3587 31ac1b75-5119-47b1-9ca0-5b8c329c95b4 31600 13227 50416 #> 3588 a0b23166-6964-4d52-a7b4-9705b61a7e56 29439 11136 10839 #> 3589 e972d67d-8302-4c64-9c1c-bc3121b90af4 25727 8163 7023 #> 3590 342fe758-e8d0-4baf-af71-1fa568197837 29294 11075 10694 #> 3591 4c0a966e-797d-4e60-8ba9-a67b5749ec5f 27676 9618 8783 #> 3592 87dd051c-c8c0-4c96-bec7-d342f5ba4797 28237 9952 8989 #> 3593 60798c13-45d8-4a6d-b04f-0afe219e3cbe 32269 14105 NA #> 3594 640710b9-72f2-47e1-9afa-f3070b23c119 8212 5861 3558 #> 3595 16340de5-372b-4c20-953f-07a0fe26be69 8272 5348 3634 #> 3596 ed34cf85-1e5f-4967-89b0-3ff70e5555fa 26666 8638 7824 #> 3597 2238219b-a0bc-464f-b83d-ff902e65bb87 31314 12758 50381 #> 3598 5e12087c-579d-4ab8-a5b8-4d6b89331337 27586 9381 8693 #> 3599 c881b179-070d-4289-909f-4d3594abbd79 8793 5749 4330 #> 3600 5f173aec-86fc-40b5-b0ae-805b46476022 27615 9710 8722 #> 3601 cb06f6d9-def7-497f-b81d-45dc84d095af 30683 12021 12138 #> 3602 12f4a38f-17b4-42b1-a1e6-9fd6ef08d150 28404 10449 9449 #> 3603 d3c47b87-1554-4afe-ab8f-d5e801706fc3 28450 10410 9495 #> 3604 f4c38645-25d8-4046-918a-9285328d02ba 31631 NA 51138 #> 3605 cc8a671b-bf32-4bd5-ac4e-d294feebe3d8 32112 14026 49482 #> 3606 e0b78e61-b0b9-4115-95f5-ad8d6013d685 28552 10425 9597 #> 3607 94b57778-d6dc-47d1-b7e6-6d844bccdbe8 29407 11224 10807 #> 3608 9be29984-4ae2-4ed7-9cf3-7ec32e7be408 31755 13362 49414 #> 3609 980aabf5-3127-4b80-83e7-ac91327e848e 30821 12107 49551 #> 3610 dde27047-788e-4b68-acfd-d0f241c6fba2 31499 12833 50418 #> 3611 fcd3369e-e1e1-40da-afb6-d8296a1b89a3 31409 13107 51231 #> 3612 c42dbe37-e779-489c-b5ad-c5749544a2bf 28136 10445 9198 #> 3613 972d6237-1b3b-4b6b-a789-b5ca8391ed90 28925 10396 9925 #> 3614 337a330a-331b-4901-b07f-c3582586c2be 29724 11575 11189 #> 3615 74b40266-cab7-4c5f-9f72-b560f7457a55 24508 7017 5943 #> 3616 0b36513e-6dfa-406b-9198-619d090e6e8d 30479 12535 NA #> 3617 74940b12-6b27-496a-9113-d9139e38056c 29706 11377 11110 #> 3618 44d917f8-d9e4-4b12-a107-0330156a92dd 29391 11175 10791 #> 3619 d29c218d-72f8-4351-895b-1a47554fe580 30443 12887 49554 #> 3620 9a2e65ef-64be-42f2-941c-863cee5e910b 30913 12534 51668 #> 3621 ff05fdc3-e3a4-4d18-861e-5b1f8553d773 27698 9611 8805 #> 3622 940cfc9c-4420-4ba9-8ae1-a7db9f04c80b 31630 13191 50446 #> 3623 06ed4b06-29d4-49a4-8bba-1bb63184255a 24079 6635 5628 #> 3624 48c9c22c-6903-455d-bcaa-9562b440b690 NA 13380 29427 #> 3625 b9d69750-a1b9-4b59-a679-4900c672cc97 32550 14266 34739 #> 3626 2b9494e4-953a-4aac-afe7-edd2d7be27da 25877 8335 7159 #> 3627 80cd039e-08e5-48ef-935d-ac46db36460d 24837 7527 6202 #> 3628 e005ee7b-3fb4-4219-8de3-a9b0302cb2dc 26917 9105 8117 #> 3629 3e75960b-f28a-4221-8800-fde346336b0f 32397 14193 49054 #> 3630 4ec41407-aa4d-4193-af06-b9795cb9aecc 31498 13066 50449 #> 3631 a494c7f4-3d8a-4a2c-ae0c-95dd6855f719 31055 12550 51241 #> 3632 95058b9a-e9a3-4021-a622-5bce275e3433 NA 14245 27015 #> 3633 4ca2f25d-7a0c-42e2-9b35-c9b9a025990b 27656 9303 8763 #> 3634 6bc584ed-82c0-486f-962d-377be6ae8469 24120 6732 5667 #> 3635 d45eb662-6dcf-4e6a-ad14-bc610ab65deb 32333 14100 NA #> 3636 e634c38b-d446-4111-a7e5-3c46345f55b0 32568 14250 94381 #> 3637 55473843-5bc3-4673-9175-3d7203aef040 29997 11516 11392 #> 3638 b0a7f6dc-0409-43fb-81c7-fbd8629445a3 31375 12960 49378 #> 3639 f8c2e532-8de2-4c8b-85bf-ed2e24c3b273 29367 11164 10767 #> 3640 83f36348-3a45-4839-984c-896ca5a551f2 32618 14322 33053 #> 3641 33db338e-fe3e-4d99-9abf-a5ae0fd778a0 31675 13047 12727 #> 3642 39ee3bee-1177-49cd-a78b-7a790ffd0b84 24759 7214 6118 #> 3643 5486420b-b40c-4e7c-ab47-9d70b1673c3b 26680 8690 7838 #> 3644 c7cc7627-6f90-414b-b60b-23869a4308cd 32594 14303 26748 #> 3645 22903cb0-f58b-4fde-997e-5764769770ea 32535 14019 94373 #> 3646 5c453cab-dfd6-4c8f-ad31-f872229c6e06 24828 7470 6193 #> 3647 10a361ab-933c-46b6-bd83-3e10896813b8 31710 13308 66964 #> 3648 d1d46ded-4585-4760-81b4-62b80d31a3b0 28396 9261 9441 #> 3649 399071d5-6918-40ad-9f1b-8ee787ee8cd2 30880 12761 25967 #> 3650 63ed4efa-6dcd-40f5-ae8a-d6221ac0ead5 31645 12554 48510 #> 3651 10f3023b-d446-4e46-991b-4d2cc9aa0f60 30076 11669 11487 #> 3652 f44b4942-1de1-41d7-a8f5-c44552e7c336 24790 7462 6155 #> 3653 87daa971-0ff3-4186-b225-81d4661c89b3 29415 11226 10815 #> 3654 2c9cbc74-9a26-4ccf-9552-c9fa99ef3663 8779 5608 4316 #> 3655 e6acf5b3-b599-4519-bff4-557a5a44430b 32110 14024 37171 #> 3656 8d276b8b-116f-4705-a6f4-a37b390f279e 31738 13345 28341 #> 3657 53f8b594-314d-4f34-9444-a2b3e7eb0185 8843 5726 4380 #> 3658 f1769155-163f-40e5-b0a8-61c3ce0fbeac 9334 6061 4993 #> 3659 61dd98e9-3edc-4892-b20e-b0d74a25da5e 31449 13155 43695 #> 3660 36648f14-5fe5-40f3-ade1-ef53c8f93bdf 7840 5030 3036 #> 3661 6904f89f-c6f3-42fe-add6-54ba80ee04dc 31776 13376 30458 #> 3662 7f4d9680-0577-4195-9168-2fb90bb18e9c 31353 13089 48833 #> 3663 6106a497-f2f9-4ee0-bef6-c6d9c8943d39 31307 12721 48941 #> 3664 e12c1ad8-ba0f-422f-849b-c9cabb1ebb97 28097 9359 9109 #> 3665 8d7729c6-3a84-4769-8c2c-2ed11557be20 25759 8159 7052 #> 3666 a2eccf1c-8a74-48c1-8c22-81083df05274 8880 5869 4417 #> 3667 9aeb2a34-dbc9-463f-9c94-7161336f37cf 29335 10954 10735 #> 3668 5f2a0be9-3420-4aa4-a723-8956a58a8a8a 9296 6067 4955 #> 3669 606d16ed-88df-488d-b506-111af8f966d0 28784 10699 9939 #> 3670 423d2e55-053b-40cd-b977-bef2f3891907 24665 7222 6112 #> 3671 e95dd915-4e7d-449e-ac8e-356ad784fa62 31668 13243 50589 #> 3672 128f79ed-c225-41f1-a10b-b9eb8c477c77 28551 10465 9596 #> 3673 63175907-f9fc-4a3a-a376-d8e3a76d7964 27726 9682 8833 #> 3674 b9d34a54-0475-417b-a2b5-6c0743b541ff 25761 8156 7054 #> 3675 58e567dc-6d54-4907-86e1-d21615afaeba 31371 13738 48946 #> 3676 d5e5340b-98be-4738-867d-791f36bf8e5e 29029 10745 10048 #> 3677 7840c637-976b-47e5-8831-09e1099c0484 30405 11935 48353 #> 3678 45736f04-47b0-44d7-aa61-ba9f0a94565d 32147 14157 48465 #> 3679 9061a751-bfd4-41f5-a585-9f3b20708b94 29096 10341 10063 #> 3680 37845827-23af-4cc2-8f27-4fd355e4c4a6 28587 10335 9632 #> 3681 f65b58b8-8d4a-4fb7-9fbc-a755464b0958 30507 12523 12304 #> 3682 d36267e0-f2ef-4dd0-8bda-2a9238a377b7 26663 8661 7821 #> 3683 46aa49f6-6720-49dd-a13b-3c055d304fd9 27554 9340 8661 #> 3684 fc909404-fec3-40af-b8e8-22ffcb48a456 28485 10338 9530 #> 3685 dfce3ced-01eb-4558-ab85-9c427cf1807d 27588 9407 8695 #> 3686 4b3ecabb-6adf-45c8-88ed-7decd72306f0 30386 12593 12059 #> 3687 0c0b9670-cbc6-43b7-8901-e99f2983cf3f 31489 13176 48818 #> 3688 164a4e28-ffd2-4606-933c-9870c2ac5d67 31765 13373 50300 #> 3689 2428023c-797d-49e3-a931-1163f003b490 31791 13392 28766 #> 3690 c058f888-ff75-4f13-a9e7-3f5be65288bf 5888 2528 1010 #> 3691 c9b212ad-7893-4b0d-9d65-38b283894a5a 30497 12537 12023 #> 3692 8dfbc354-6308-457c-95bc-74910878f2f2 30376 12765 12209 #> 3693 6c5ade3f-43c4-4153-b0ef-c9772bce8101 29856 11684 11232 #> 3694 97b3d907-e5b4-4ae2-a9ae-af4dad3dd169 28432 10357 9477 #> 3695 04ac7d14-68fc-4d70-b0f0-334dce9c1c45 29687 11541 11083 #> 3696 cb6653b6-39ae-4581-81fe-b275b20aec6e 32410 13617 49917 #> 3697 86a412bb-7db6-4c6a-86b0-499afd326fd9 26297 8470 7400 #> 3698 7c71541b-048b-43de-8b27-1c9cfd43f0c0 30917 12329 48586 #> 3699 e93e7aee-b38f-43d1-ab96-6eeb7c6f1392 29460 11241 10860 #> 3700 73cf139b-927e-43e0-9e4d-6f48cff0ab9d 30615 12595 12113 #> 3701 41cc3ce0-53fb-4a83-8612-00b527328e75 29596 10874 10926 #> 3702 7bca471d-9352-4fd7-ac8c-42efcdcf3c27 31824 13935 28584 #> 3703 25a958c9-4035-43ad-8c9c-1309ea592e66 27923 9378 9011 #> 3704 ec0183f6-bd9b-4a21-b8f5-ea4d8f3741b2 28242 9962 9063 #> 3705 436e0e45-f07a-4674-b21f-4fd8e1f24583 26628 8657 8094 #> 3706 4a34b8b5-3410-4754-9d6e-c0ee28428f47 31807 13955 49643 #> 3707 3add1dd8-32aa-44a5-b69a-b0ad2eace07b 26300 8151 7401 #> 3708 2d23b5d1-fbee-41df-bd6f-dd984d03a4d1 9691 5975 4907 #> 3709 a0ac50ad-b460-43fd-a932-50d19cda7c0b 30708 12607 48891 #> 3710 7bad73a1-c023-4b53-bd4c-dedf18480b8a 24824 7452 6189 #> 3711 9f5a9786-f72c-4d45-a858-71bccd5cb602 26085 8442 7365 #> 3712 596fa903-35a6-4650-b499-bc3ce33d5103 31188 12915 48606 #> 3713 3eb1e32e-3f96-4613-b142-78f748db3c7b 31266 12965 27010 #> 3714 60542ef3-f053-4347-8906-ce698f5c434b 32534 14229 50033 #> 3715 6b49d038-966e-40b9-bb1e-fb4e94543a95 27093 9079 8484 #> 3716 3be41614-5c70-4b0a-89c7-c7ae061d9223 25782 8146 7074 #> 3717 eab954d2-9dee-4a8f-ac28-d93855459fb6 31602 13225 26657 #> 3718 9e4ac12b-bd46-403a-baa6-a1cb4c7fa5a4 32484 14221 48531 #> 3719 c4ec03a8-efda-456f-8916-c161b568d783 32116 14007 50218 #> 3720 08bb1521-fd1c-4c1c-bcbe-114cadccc1c8 30823 12540 48816 #> 3721 6bc64594-cdc1-4252-b896-dd3b667eccc2 30546 13314 12104 #> 3722 59b606fd-cd76-4a01-bee5-ffac60073b3d 31784 NA 48525 #> 3723 bd046bf8-70f7-4480-878a-8894e5912102 32161 13591 48368 #> 3724 8725d38b-398b-4ca5-9e80-d43b0bf855bb 30934 11911 23592 #> 3725 f5181047-2dbb-4058-bed6-34464a138867 29767 11552 11273 #> 3726 3c593d8f-daf8-4902-89ab-d59699482809 31315 13215 48964 #> 3727 5d98bad5-1730-4095-825d-3ff8d10d1116 27575 9265 8682 #> 3728 94ee954f-baf6-489c-b50f-3b60b2506f33 26626 8658 7785 #> 3729 485369eb-3586-4aa2-9628-77d954f23da3 9568 6381 5273 #> 3730 bf4a641d-bdf6-4e62-bbe1-a74a956226ea 32592 14301 48952 #> 3731 5064d069-aa24-4828-81c9-c78e0e56fb78 27762 9784 8868 #> 3732 c3b6a5da-b9a5-415a-8239-1fd92dd34b80 9513 7202 5173 #> 3733 edb39e18-4683-4774-ac05-af4019fe2aba 30535 11940 12131 #> 3734 3877e0ba-222f-4bd2-887c-1db8f1a5e7d1 24817 7464 6182 #> 3735 50d58b23-cdf9-4e0c-a303-d74d9e4f9291 30504 12456 12299 #> 3736 5272b788-ce57-4197-92db-5a08ff48d932 32255 14136 49588 #> 3737 944528d8-7647-4f92-8053-0e6998c5fcc1 29799 11273 11165 #> 3738 ce64d3cf-516a-429a-b80f-18143eee2a49 29424 11035 10824 #> 3739 624218c7-a654-412f-9ebe-c574c4e74c0f 32285 14141 48427 #> 3740 87c4fed4-d126-4c71-96ec-54d5d8d717bb 31355 12963 48552 #> 3741 d867198a-36ec-4a99-9037-a093216f99d8 24451 7319 6031 #> 3742 6f02ddea-9d5d-442f-ac40-c252aec881b5 32385 14174 NA #> 3743 bed70009-eeb1-4806-b65e-3bfc54963cb7 26840 8951 7999 #> 3744 f024c29d-c4e6-4f23-b8e5-c7788bc87e47 28439 10317 9484 #> 3745 bd252716-1674-437f-8d91-fdd10cf4ebf1 31702 NA 49638 #> 3746 1b0801bc-9afc-458c-8235-b938d4b76d29 31678 13050 49584 #> 3747 48dede0f-2441-4549-8892-9d37c79321a1 30280 11929 11922 #> 3748 961507f5-29bc-4efe-bff1-bd1e4f063e8c 31507 13163 66951 #> 3749 a1e8bc26-2f4a-48f3-b2dc-549d8bc71067 26862 8968 8022 #> 3750 8fecfc12-c9be-400e-8b5a-4684c6884daa 31037 12749 48565 #> 3751 d694d99d-0dd2-443f-b02a-6cd377cdaf6e 28051 9691 8938 #> 3752 f60de8c5-b050-4386-8a67-3658f65350b9 25947 8143 7221 #> 3753 2fbd5ebf-c12a-4e92-b7b6-de649c37ccd3 30948 12384 51981 #> 3754 ee4e7684-071e-4aee-9d0e-b8da39c46322 32399 14194 56885 #> 3755 750c6332-6848-4303-9916-a6ed49833a56 24873 7450 6238 #> 3756 dc632746-2240-41d6-8141-695194706989 25791 8144 7083 #> 3757 5ec64dea-c6db-4416-ad24-8676acf7a7c6 31520 13289 66925 #> 3758 072ec285-1430-48d4-9342-5a1b9af527f3 24807 7417 6172 #> 3759 401fac38-aa48-4f45-b6c4-a4705b50f9bd 30626 11906 12246 #> 3760 ac568889-d10d-4ccc-89a1-8e4233848086 8356 5319 3718 #> 3761 1da8b818-601e-4d53-943b-c7cb767969a3 31539 13267 66923 #> 3762 13141af5-6bef-4f49-98ce-5305f0187bef 32248 13567 91464 #> 3763 34053914-0384-4551-a5e9-e3bd13c09b02 31277 13291 48436 #> 3764 0afaf743-1240-4598-91d4-13f003573789 32089 14039 49991 #> 3765 2be11ce3-61f2-42b4-ba82-f22c62e9363d 31541 13268 12893 #> 3766 6191922d-218f-4f86-a3c2-7216810bccb8 31357 13091 66932 #> 3767 89588ce4-70cf-4a50-968e-d48cf5c66053 32519 14290 56643 #> 3768 49c20233-70a2-4de5-b3cc-9bf7039f1cb7 31586 13260 49983 #> 3769 b27621a8-1629-45d2-838e-5e74a26f350b 32203 13705 48652 #> 3770 911991de-37c3-4fcd-9896-80d1fb0b6112 30608 12515 12106 #> 3771 457123e2-aeb5-41c7-b2a8-ddc42c04f977 32424 14203 48665 #> 3772 8fd4379f-242a-4388-ae91-5b99acbb1bd8 27602 9404 8709 #> 3773 50fd6da3-9fb3-45cf-83e8-5797f1f16308 27298 9193 8387 #> 3774 3245841a-b113-4e4f-a994-449d25d1db98 31774 12974 49906 #> 3775 ee305db3-cdaf-4eb3-b950-7146d51eac34 24778 9761 3378 #> 3776 3258dbca-9194-4fd7-bc2b-8440c73d0d9c 26649 8660 7807 #> 3777 9fdc477a-af02-4345-baca-cf026fbc645a 25721 8153 7017 #> 3778 035a2da8-8e69-48d3-9752-0fc042f545df 30730 12413 12230 #> 3779 61a5aa8b-1f47-4bfc-ac91-eae7f6679ad6 30787 12124 12323 #> 3780 3555b24f-ed5c-41a3-aead-34e7b64d5c4b 31633 13194 44610 #> 3781 e34d2f84-e5ec-4818-a54c-94176e515a90 31669 13244 50627 #> 3782 c9fe00a2-7620-49f3-a744-7d04c5b30560 24056 6683 5605 #> 3783 c280300e-a61d-4a19-aa95-ab100d5759e7 28826 10720 9772 #> 3784 d79d84b3-cef7-44b9-8202-ba92d4d32641 32619 14324 50085 #> 3785 690fbf24-aab0-40cf-aeb4-7e24d90108a1 25225 7805 6483 #> 3786 408aff57-2b32-41f7-9520-0064ad14af21 25915 8160 7190 #> 3787 4efb66e4-7038-4b3f-bbb7-521aa3200760 29581 11413 10937 #> 3788 c0e4ed02-82ec-4bde-a1b1-c035dde46402 9508 7141 5168 #> 3789 6de52f0c-2a65-42a3-81a0-9c772a588c08 7761 4743 2957 #> 3790 4ac2531e-8a86-4124-970d-0d6be201a4b4 31527 12665 48826 #> 3791 eb96d887-4380-491e-b22f-b0cdd0bd64f5 28568 10312 9613 #> 3792 ecacc01a-e71d-4028-9bb7-37fcee0f1708 27104 9107 8177 #> 3793 7d94e607-7908-4e25-ae36-b1f2707c06c4 28109 10101 9310 #> 3794 f79197fb-9ee2-4edb-bb68-e8cd059a5101 26823 8984 7981 #> 3795 7e1ee344-f878-4fc6-bc56-e47588bf1000 30605 13401 12157 #> 3796 3748e9cb-edd7-4559-832b-e6bc483677ce 29050 10808 10101 #> 3797 57c5c69c-844e-41f1-9985-6fc178cee514 7883 5152 3079 #> 3798 d15dacdb-17c6-4010-83d1-e332f9610422 26651 8675 7809 #> 3799 3a8befa1-04e8-4aa7-bc14-504e3d2de483 27983 10025 8940 #> 3800 1de5c7ea-54dd-4a1a-a319-4429ce604b3d 27576 9290 8683 #> 3801 efe0a829-1c7a-4460-b099-089bdb64b819 28233 10443 8993 #> 3802 563f4a41-967c-49f1-a217-28543727c7d0 30921 12633 51671 #> 3803 c63eb820-738c-4b32-83f4-65ed80d54ae4 26821 5250 7979 #> 3804 <NA> 32178 14053 49989 #> 3805 2beaf8a8-ccf1-4500-a941-33ffc8141d60 24095 6589 5643 #> 3806 0c042513-aba2-461c-ae16-db4bf83833fa 28694 10615 10010 #> 3807 563471e7-202e-494d-bab7-a2493a9a6e31 31392 NA 49990 #> 3808 e9cf609e-4d2a-497e-b7c5-677949820145 26054 8564 7459 #> 3809 dd20b476-52fe-48e1-a614-3854c6b3989c 31788 13387 49890 #> 3810 9ebd9a70-74d1-4df8-90e6-3de18368a4c5 31446 13153 66936 #> 3811 b4974d96-a831-4914-9de6-6758a4ae12dd 31027 12728 31211 #> 3812 19667595-1b93-48ff-878c-5f245636173c 30810 12485 48872 #> 3813 06a22cdc-f773-4424-a8e6-e49ca822ed1e 32370 14161 14834 #> 3814 456fb5aa-5ecd-4cf4-819a-a7708ed8f0e3 31542 12756 50036 #> 3815 a548290f-bfaf-48b0-aa8d-4f8c71a1ff80 31248 12573 36926 #> 3816 b88049ec-946f-4723-bc82-ce5803c652be 32146 14156 48633 #> 3817 af52bc9b-b734-43a8-af8d-daad398db79e 28928 10870 9928 #> 3818 e85680db-639d-49cd-ae29-28e5cd4ac9a8 26153 8486 7355 #> 3819 c497d10f-bb71-47b9-aabf-daaecb38b6dc 31312 13236 48695 #> 3820 ac540ab1-95e1-48a2-ac93-6c0037c5a026 24805 7463 6170 #> 3821 38717cb0-9a15-4a89-b86a-c57ff0cef0cc 27245 9113 8261 #> 3822 2fbafbc6-2236-44cf-8498-dc8b549161cf 31289 13253 44545 #> 3823 ff5d11ea-4713-4b63-88a8-50ed1a3623a7 28602 10489 9647 #> 3824 52191351-8e61-454b-b2a3-dc2e39043b11 29488 11543 10888 #> 3825 1ec9b4fd-414d-4dd6-96f7-45efa541ebeb 29683 11537 11079 #> 3826 6a3bcfd5-a855-4173-a2aa-94e2c77c8268 7872 5853 3068 #> 3827 f83bfd85-4007-4c7c-ba54-75bedfc3c3c1 8967 6900 4504 #> 3828 b6025ffc-496f-40e5-bd23-38469aa50cb7 28523 10319 9568 #> 3829 af24c36b-adfe-49e5-82a8-67f9ea7264ab 29314 10892 10714 #> 3830 7ecac271-87a9-43e6-afea-abc57552a0c1 31417 12864 50032 #> 3831 cae53a94-89ce-4eb5-aff9-b1b618283db3 31362 13088 48791 #> 3832 917e7a94-fef2-4293-b50e-94e52f777232 27565 9254 8672 #> 3833 1e110bd9-4eca-410f-82ed-e4d8af131574 25048 7874 6607 #> 3834 49c6000a-8ca5-472c-a166-b0a0911a00bb 30701 12634 39139 #> 3835 2bb28fc2-96ec-452c-9dbb-22130681c4eb 31474 12639 48732 #> 3836 3920baeb-570e-4b1a-bc44-c4bfd936e41f 28789 10668 9944 #> 3837 97d98203-7785-4286-b01c-2611c6f5a44e 24852 7474 6217 #> 3838 123f0733-0afb-4291-8e57-9970e229309b 26667 8674 7825 #> 3839 eddd3f47-fdd1-4d53-9e31-93b46624fd0f 29747 11566 11157 #> 3840 d0778d5a-f5af-47a4-9b06-adcbf5b3368f 28484 10327 9529 #> 3841 0606c9ab-8351-4a38-8ca4-ceb16e982f6a 26828 8964 7987 #> 3842 c07e2290-529d-4d55-bef2-1d8139816355 32544 14263 55373 #> 3843 de3f11e3-90ae-4ad2-880f-48e9b6f729f8 28178 9636 9022 #> 3844 af9992e2-6bda-4e3d-a95a-fc32c9f93391 28755 10347 10098 #> 3845 f154d374-d504-425c-a2ae-958f3adfed32 27610 9270 8717 #> 3846 f092bfdc-2385-4223-86e7-37b2654bc37c 26960 9523 8184 #> 3847 31b604a7-4f2e-4cfd-b040-5d749f7f5d5b 24864 7469 6229 #> 3848 94062255-0b93-43ca-9399-92bbc10901ff 31686 13058 48737 #> 3849 4023e7d3-2b70-450f-9afc-bf1a9dcee3f9 32524 14224 49971 #> 3850 6196fbdb-f9fb-4766-b611-c1875f8f6236 32445 14283 48982 #> 3851 0105886c-9f70-4600-b0c4-bb2a8efc5e9b 30021 11558 11490 #> 3852 f0b08802-f6f8-4dba-b53e-e26eb75a32e7 30517 12118 47053 #> 3853 7076d60f-8cba-41bf-a3ed-ee28af5e240a 30739 12414 12238 #> 3854 0cae9da5-bdbb-4d19-b360-578b0a1c37bf 29695 11266 11408 #> 3855 60aa9a85-1fc6-4b65-a350-34ec09456791 29550 11047 10966 #> 3856 e73a5644-c7a2-425b-898e-da72c16f9b87 30757 12335 12260 #> 3857 cdbe5207-fdbe-42f0-a536-bed784aa9cea 31467 13161 NA #> 3858 0719b89b-85f5-4be2-a335-596e81d93913 27739 9774 8845 #> 3859 aa87a5e5-f90b-408e-b8b4-39f28204f8bf 30318 11771 11961 #> 3860 0f062def-77f5-4362-86cb-4bdb63a59eba 28496 10203 9541 #> 3861 e0a63251-5428-43a1-88c1-c000215ac5ce 26299 8247 7377 #> 3862 9d04accc-a404-406f-b93c-0878410e55a6 24760 8588 6142 #> 3863 e046beb7-3d9f-4f30-9b33-2b61592461ff 32216 14079 30027 #> 3864 cc1df018-baa8-4344-b13c-cd5ef1a52d26 29571 11406 10931 #> 3865 91d9a3a9-241f-4f42-b0f0-2e7dd9b84c08 31513 13167 13455 #> 3866 8c5067dc-1617-42fa-82eb-0596392ab20a 27135 8846 8420 #> 3867 360f6480-729a-437c-9875-5a409f4ca03b 26601 9899 8438 #> 3868 b936b29c-59ab-42ba-996a-00131b4b8580 28594 10205 9639 #> 3869 a0c708a2-4620-4b5a-8453-967c2a9bd426 31443 12789 47265 #> 3870 f611f87a-1e49-4196-9088-8c760f26006d 28068 9857 10269 #> 3871 349f647e-bfc3-4d84-af89-b33f8a08e26e 25158 7970 6997 #> 3872 1987b2bb-042f-49c9-b183-bec358ba1b98 31407 13103 NA #> 3873 ee3d7a82-d3e0-4d12-b2f8-116aefdb7cb6 32065 13991 45629 #> 3874 96b38cbb-4709-4c5f-89c7-f9fd7fa77a95 28583 10480 9628 #> 3875 3eeb2be6-2bc9-4b6e-a35b-bb1d87f14dd9 31340 13038 27536 #> 3876 17f32692-ccfa-42c0-b238-483534dd0b7c 31341 13018 45660 #> 3877 f50fb156-fc3a-4930-aa51-8fe977ef6984 29939 11564 NA #> 3878 513caa63-d30d-4cde-b605-8cf825a4ef27 27744 9676 8850 #> 3879 e597cba3-fa90-4ce2-85e7-3e0bed1791d5 25884 8318 7166 #> 3880 369d8fc2-fce9-4e75-9419-3dfbe3ad3977 30663 12928 49298 #> 3881 dd6959e5-13cf-4c1f-a05a-03bb7648af96 30404 12876 51594 #> 3882 c10e08b6-33a7-4233-8628-29b40d1183ea 24880 7539 6245 #> 3883 991678cd-6d07-45d0-98b1-3d40e5725c29 32430 14207 13543 #> 3884 6ba5ea17-2790-448e-9fb8-2d0d05ca955c 29021 10750 9850 #> 3885 b91dbdd2-b7c4-4ad1-95a9-c675c30b4b57 31333 13394 26637 #> 3886 fcc9d16f-4591-4ba2-9720-9fa187b9d9d5 30358 12034 NA #> 3887 7e408bdc-df1a-44bf-878e-8cc790c40a3e 30825 12474 49127 #> 3888 5f06c995-7b1c-4da1-8bce-5ab5f63a901d 29027 NA 10044 #> 3889 444c9f9a-b6e1-4be1-ba68-bf18781f8c89 29952 11443 11343 #> 3890 aa80f701-cce8-4136-b0cb-965fb8c90519 27680 9313 8787 #> 3891 779bef9f-4c2c-409f-9079-784e03645eea 28801 10723 9698 #> 3892 07ab211c-4733-4336-b59a-2137f3efe5e8 24112 6653 5659 #> 3893 7428dd41-d736-4141-991d-b7a74b61aeda 31587 12912 49274 #> 3894 d37758ce-9e3c-4e3c-bb7b-b8eaf1c58541 29577 10708 10935 #> 3895 fc506583-7edf-4e40-8047-83f60bea67a2 24977 7542 6342 #> 3896 e055cf84-9602-468a-a960-5240cab53aff 30311 12241 NA #> 3897 dd074695-df70-49ab-ab37-504bac11d171 32572 14274 13581 #> 3898 0f1b8946-54b9-43c3-8c9e-1778c6314e9b 29086 10678 10117 #> 3899 f1cff356-8de9-4589-8522-40922fecfad7 24219 6822 5767 #> 3900 ebb13f2b-f29b-4f05-b88a-a522d1935fa3 27650 9300 8757 #> 3901 93ee67e5-08d1-4272-bc6b-d97feaab5d6b 8422 5874 3784 #> 3902 4094730d-a3ad-4c7e-a899-a3c8001748d9 23989 6645 5539 #> 3903 5bd91ec9-3d48-48c1-b36e-78462044acfc 7864 4991 3060 #> 3904 0f0ff562-af1c-4be8-8011-1f71e8441e00 7121 4677 1972 #> 3905 b2830633-1ef9-44e2-ba35-8bbd8a3a84fd 32106 13696 NA #> 3906 b0c19fa7-b58a-413e-812b-54fce2038239 31455 13143 49138 #> 3907 8e4979d6-aa7f-4b18-a0ff-74021728ca1d 32478 13853 33180 #> 3908 4a8190f6-039d-485b-8d51-7f98368b02e1 24590 7144 5820 #> 3909 3d6d3bab-67d8-4c08-ac5a-0cd80405e3c6 27269 9093 8471 #> 3910 822e1946-3df1-4a25-b967-291a0c435cf5 29363 11093 10763 #> 3911 36bbcd0f-c3a1-4656-850d-6f0c7497a483 30508 12478 12306 #> 3912 2592f1d6-3cc5-4e32-b6fb-18ad517be491 26989 9194 8102 #> 3913 be6c0952-4400-48bb-8a67-95c00f8aaab7 30560 11995 12308 #> 3914 f58c28b8-262c-44b3-ab15-992c362e3f43 31395 12816 49234 #> 3915 f4ce175a-0408-4215-8a64-2cac3679d151 26978 9192 8450 #> 3916 7a2612f3-ea18-444c-95ee-f1ca597d6fb0 7956 4972 3152 #> 3917 cb2a824c-bdaa-4848-9f56-b5b37bf419e3 26922 9228 8525 #> 3918 c0cb57ed-b7dc-470a-8769-c161dad25de6 9441 6903 5101 #> 3919 adc1b9ae-0b59-4399-bfba-959f694dde3d 9376 6217 5035 #> 3920 a45043f1-9e33-4564-bd69-df6528cbd03f 31237 12831 49136 #> 3921 fc73c0c1-b250-4feb-a5d6-f30145b28bad 28879 11411 9753 #> 3922 26138e8b-b776-492a-9684-b1c07e51b25c 8291 5370 3653 #> 3923 11c5317a-a0a7-4330-a1e5-532dbfe8f021 32531 14227 49084 #> 3924 9029830c-1394-494f-a92c-e192697913cf 8275 5368 3637 #> 3925 ca8815bc-c68f-4d18-80fc-f61e4a2053b8 9311 6102 4970 #> 3926 e8aca261-6e92-4e6d-bd21-3cfeb70ce9e4 30461 15501 51293 #> 3927 f18e87b1-2548-4bdd-8b30-25fc04c9788a 30687 12334 12142 #> 3928 e3a87257-7012-48c5-8ab2-8322f3a95f2d 31693 13329 24816 #> 3929 76f95387-3bc1-4756-a714-a4b1a93f23ff 24139 6650 5686 #> 3930 5e32839d-6ea9-4f92-8209-520a980ffcde NA 14154 51344 #> 3931 1824b9ce-a9af-4284-bc33-c36f100b13c3 32507 14259 27965 #> 3932 d4590268-6931-43a1-b794-d9a684c508db 31159 12959 50460 #> 3933 5db03086-c670-4adb-98ed-b6a59a4f9270 25849 8265 7136 #> 3934 1ad00b25-912a-4e92-b585-906594f3020e 31294 12837 35978 #> 3935 274c50e9-73a3-45f9-b9dd-c08270f1132c 32257 14138 94360 #> 3936 cdd83d70-ee27-42d0-a6f0-7db2c2ec6995 31530 12750 50545 #> 3937 e9a0297a-0b34-4c55-af1f-ca113d672195 25090 7817 6625 #> 3938 d452a634-8f68-4bae-808d-5ce4d9630970 28153 9299 9103 #> 3939 86697b45-157e-45ed-b63d-826cf5c7a0a1 30331 12214 11973 #> 3940 f7b0f6fc-217a-4df0-b5d1-a9555fabbba9 31545 13261 45093 #> 3941 30d66e1f-256c-4597-b31a-e54a17508c35 31731 12718 51365 #> 3942 7c218b81-76f2-45a1-b4a1-ac4e7a987c6c 32382 14169 NA #> 3943 b4565520-ee0d-4d4a-a3dd-7f8c17a9196c 32563 14241 60184 #> 3944 0cb97421-cccf-4cce-ac0f-92d47986defc 25851 8338 7138 #> 3945 5535abc8-e8c0-48bc-b233-3aacccde7eaf 31419 NA 32671 #> 3946 6fa770b7-6cf8-400f-a3ea-47696eef0074 27628 9440 8735 #> 3947 6c51cb10-bafe-40a2-9a1e-002dda2f88e1 30554 12457 12272 #> 3948 82d57e35-193d-4f1f-ae40-f73b4c4c15c0 30665 12927 46129 #> 3949 21b89b42-8e13-4450-a5ff-a080c80a5400 32167 14196 28936 #> 3950 fe2712f8-45df-49b7-a871-d68b7006a912 30414 11803 12223 #> 3951 675fff00-6821-499a-b30d-04fc54468eaa 25026 7615 6391 #> 3952 b997cb23-f1a0-43c8-a684-7941e38afa8e 32431 14278 46883 #> 3953 c242081f-f312-4e15-8de3-854dfdc2bccf 30789 11822 12325 #> 3954 4e31b011-050f-4024-8a7f-bbae9b01b216 29762 11549 11268 #> 3955 1e4470b2-2710-4c23-b1ee-5dccd31352a9 29594 11416 10944 #> 3956 a044125d-85ff-434e-ac2b-deeecf314d63 28603 10490 9648 #> 3957 e461d721-5ca5-4896-8fe5-12e452a003b3 25781 8337 7073 #> 3958 6b01960b-1a92-4aec-a262-db57ca85c22b 30235 11819 11877 #> 3959 9cdc17a0-1cd2-43b5-948a-579a993a30fc 30325 12212 11967 #> 3960 1d127c62-d7f3-4fe5-b30d-9b7a9cef6637 26070 8248 7338 #> 3961 b25967e0-9a90-4b59-bf85-168581e0da04 31309 12577 33068 #> 3962 46664226-53c3-4ef9-9aeb-f708e3e8269f 23992 6553 5542 #> 3963 7206bfcb-ae42-4220-b738-158d3e2bb0fe 28032 10011 9216 #> 3964 324274e2-f7d1-40b8-b5c8-4cf58fda42fd 30599 12148 12148 #> 3965 b31b2a6b-1464-4c78-a19c-1f6ae627d519 8379 6327 3741 #> 3966 dc99b6a9-4825-40c1-858d-252a4061c289 9557 7002 5229 #> 3967 21be8393-db2f-4ef0-98a3-5f1b8421dd54 30400 11795 38837 #> 3968 838e8308-5d0a-43dd-a6c4-27b0d7c879f9 32593 14302 45497 #> 3969 a9217999-fa6d-4474-a176-1cf9013224ea 24020 6559 5570 #> 3970 f1ea77e8-6e8c-454c-b508-f06e5676a0bc 32249 14149 46057 #> 3971 dbe09c33-0164-42fa-8eed-e5d3f11377b7 30501 12145 12300 #> 3972 e584c525-2f4e-4d29-95c5-1d16138834e5 26665 8735 7823 #> 3973 76c7bd95-fe1e-49e1-9a8d-b4d3a18e5df4 31640 13199 NA #> 3974 3a3a9ed8-e941-49cf-bc32-331424d0bd42 30657 12429 46317 #> 3975 4a52883d-cc37-4593-9ca3-cb9967e4db5f 29732 11448 11151 #> 3976 1c1a6937-9267-497e-9386-00562e5fb399 25415 8439 6848 #> 3977 a8a5db13-5676-4194-8e2c-c75778366a3b 30289 11789 11931 #> 3978 a25bf0a9-84a3-49c3-9969-50b046a0fa30 31311 13235 46194 #> 3979 2c80e71d-c173-4c07-aeda-69371e969591 9538 6354 5390 #> 3980 a877e5f6-37c5-4c7c-9f23-9e3a9f9d0d84 24888 7440 6253 #> 3981 a2e26ea7-db98-4611-8947-692b0cedb541 27836 9448 9221 #> 3982 22b17923-9927-42ad-9c57-d9e89c5dd61b 25750 8126 7044 #> 3983 53fac8d5-eea1-431e-8754-d71446e0dbd3 30817 12592 46707 #> 3984 7649ea09-692c-4012-b071-11422d383388 30684 11809 12139 #> 3985 53b0a001-2efe-4009-8ff1-572b687d4397 24812 7550 6177 #> 3986 284a3a87-2d1c-4e14-84a5-07d5c817a69c 28951 10714 9862 #> 3987 0220c312-f4d4-4646-9bbc-1d9f8c3020da 31536 12677 46073 #> 3988 6edf1c3e-bf89-4148-b827-cc4e50888c18 24036 6543 5586 #> 3989 53a783a3-183d-478a-a752-cb28054d208e 32637 14337 60159 #> 3990 18f9dc06-eaa6-4c7f-8995-78aea971fdd4 25889 8352 7169 #> 3991 d6aea7ed-2c24-4be5-b789-41e3ba0c2137 26630 8702 7788 #> 3992 c2a4c4a4-d0d7-4687-bd2b-7ea13118c3a7 32284 14108 NA #> 3993 3671d5fb-6f0b-4582-8007-0265a66cf2c1 30228 12200 11870 #> 3994 59a2ccc2-8f08-45b5-808f-a8938a95f1f5 32537 14260 46037 #> 3995 8cdf3bb1-29d1-4812-ae16-893f3c448df1 32217 14060 27225 #> 3996 0ecd0d32-5e18-40bb-b8bc-278b6206657a 9315 6052 4974 #> 3997 5fbfe48a-11ee-4141-8f8d-6bef67d3ea69 9457 7119 5117 #> 3998 4a9a26fa-6a05-4c67-a023-43773a5c67f8 27855 10010 9305 #> 3999 d5ce4494-a0d8-4c70-9759-48afe6b19a7f 29977 11096 11370 #> 4000 159f802d-8825-4bc9-aba4-e6631aa11e44 29964 11521 11360 #> 4001 b220ff58-7cb4-472d-93b5-da41058d9a79 28579 10478 9623 #> 4002 8834e7eb-3cf0-43ae-ac0f-5a1e28dc5107 28083 10124 9232 #> 4003 2dff7d82-426e-42d6-8c7c-170ad3a24ad6 26791 8739 7950 #> 4004 d34ef6d4-6a88-4207-9344-a867d120753f 28460 10277 9505 #> 4005 7c05af13-68e8-4aa4-b2ae-745bd0fd1e33 32460 14212 46782 #> 4006 258deb9a-9e98-48b8-bb86-3f2e339ecef1 29395 10895 10795 #> 4007 2b808ae0-ff65-43d5-9a07-b21d02e36c35 29402 11025 10802 #> 4008 3f22bb95-48f6-4ff0-a199-55257d0aaf91 27671 9445 8778 #> 4009 6499ef2a-c7a9-4f14-abeb-8cc165333249 24959 7444 6324 #> 4010 52bb89b1-5d19-43fb-bb16-e7ed48eaa17c NA 14349 NA #> 4011 60121cb4-ba9b-4f3d-9add-7d55890e4795 30277 11753 11919 #> 4012 adaa09ba-2a08-4910-ab31-e6641c3c4941 31752 13133 46268 #> 4013 a797919f-59d2-42d2-be96-d78312fa6b48 27677 9744 8784 #> 4014 992d1531-9091-486d-93d1-53e8b060e950 32156 14047 NA #> 4015 ba736850-97fe-48c4-a5c8-cdbe3bf6fbd1 27228 9086 8230 #> 4016 b84995d5-f1b5-4d6e-84ed-66babfadee90 30593 12452 12084 #> 4017 e710f662-a7ba-4a95-a5c8-982519ecb2ed 29863 10965 11237 #> 4018 4086e06c-747e-433d-85e1-5b38443c0c78 31639 13198 45239 #> 4019 7e93123a-caf3-4915-bb8a-e1199257f8de 29676 11046 11072 #> 4020 a54b3a65-476d-4913-8f64-9b85ef61e310 27888 10123 8960 #> 4021 19dd5977-ff82-4fa9-baa3-643a0c49e615 31458 13144 46092 #> 4022 a4bf7889-f726-4bb7-a390-c962d6cc04bf 29583 11298 10958 #> 4023 93d973b3-06c3-4d22-b7b2-5430f53622d3 31569 12668 46350 #> 4024 d54a562d-0571-4960-a903-6e98415ead6a 26688 8703 7846 #> 4025 a04c2eb7-52a1-42db-9960-f97486cfe417 28647 10765 9743 #> 4026 297bd882-4641-42c0-a612-d3db66d6093c 31656 12741 46225 #> 4027 8f738734-fb58-412f-a549-27295e3183b6 30260 11811 11902 #> 4028 9b1fd0a4-6a45-4388-bf1e-bf4162e84056 31677 13048 46885 #> 4029 e4c61c4e-a9ae-418d-9469-4add053e541b 30567 14176 12285 #> 4030 cb006e99-2754-4bd5-a521-6d0cf473b233 31691 13204 66955 #> 4031 e4a4febc-ebb2-492e-a3d5-ef5bdd2f9b1e 32335 13952 46832 #> 4032 952d6412-2351-48aa-8053-35a456d4e869 29385 10987 10785 #> 4033 fea687cd-12c8-4954-8431-31b1634bcd3f 32525 13676 46378 #> 4034 e51b8fd6-dc76-4810-a77e-2bc153a29d1e 30506 12444 12302 #> 4035 3887491b-d2f3-43e2-bd27-01ba860a65f7 28500 10298 9545 #> 4036 36bb2c46-33d3-4e86-bb12-63b658cf8f7f 27058 9119 8211 #> 4037 9e360674-eb05-4d1b-ba8c-03d6c12fb177 29840 10972 11223 #> 4038 5bd4b926-db76-436f-9390-5c96475245fc 29187 11450 10271 #> 4039 000bc6c6-c9a8-4631-92d6-1cea5aaa1644 26309 8604 7689 #> 4040 cc100593-db21-4a2f-a6d2-607bdcea88ad 32350 13957 46318 #> 4041 e9a3dcf7-e5ba-4f4b-85a4-7a46b901d8b4 31581 13259 48864 #> 4042 3ebbc479-fec5-4463-8eb1-b9b09b0d3bc2 9373 6337 5032 #> 4043 04b20ccd-7dfa-4269-ae9e-e4227b803fa1 32583 14275 46039 #> 4044 cb175050-09d6-4216-93ee-276fed373aa1 32620 14325 40799 #> 4045 fafd2927-7e17-4e85-afa2-aa2c019229ed 8340 5394 3702 #> 4046 c2648042-c616-4ee7-b9d5-f1b77c560c0e 31344 12694 38924 #> 4047 593e7567-a8a2-4032-876c-12ef72720dc6 31778 13377 32654 #> 4048 f5664cdc-9ce6-4533-b55c-89d3bafa7012 29850 11741 11244 #> 4049 a54b32de-57a0-4ebb-9eca-059d956fee22 8842 5717 4379 #> 4050 092b8c48-e863-474c-ac81-212d1265dedc 31378 13389 NA #> 4051 89398fe2-d54f-4672-9324-3012c06ce2a6 27917 10088 9046 #> 4052 9c2bf2fc-d6cb-479d-8ece-f2ab4d1cda91 8925 6323 4449 #> 4053 6a1b2504-153c-441d-ba17-f78457d58b9c 24067 6558 5616 #> 4054 4cf02857-f50c-4a6f-b94d-ff12d8f701b0 26411 8502 7703 #> 4055 9ad0b3b1-28e5-4c23-91fb-728beb7c63d4 30929 12185 47169 #> 4056 1540d25f-4758-44d8-a4eb-276845326620 24048 6556 5598 #> 4057 f1fdbd9f-484f-441d-9f50-35e972a50300 27266 9583 11481 #> 4058 84a504f4-417f-4af3-ac1c-6af958e10bdc 30903 12296 18066 #> 4059 bb6dc980-e124-4548-9344-cd67803b146a 31303 13211 66449 #> 4060 851670a6-111c-4678-b4b6-60c2f813cbe7 31304 12659 46666 #> 4061 78009cf5-8d12-42cc-9a99-34137cd0b420 27508 10087 8928 #> 4062 2db8a161-7b3a-4a3c-b915-c5be5b3cd39b 26709 8705 7867 #> 4063 83fac4ad-a729-4774-a44e-20713aa01319 25754 8206 7642 #> 4064 03863dcc-b11d-466e-a6f5-845d91b9ec3e 31512 13166 21885 #> 4065 a29582a0-fa94-4337-b6d1-aba67e8d3141 30585 12131 46857 #> 4066 6e150bf7-49da-4d65-9b8e-e39dc074c539 28950 10648 9861 #> 4067 91135683-4a52-48dc-9f1d-446502308e52 29262 11041 10662 #> 4068 ef133256-fb0b-4a2e-bef8-48b5245395a1 31232 13148 46682 #> 4069 <NA> 32197 14069 94377 #> 4070 d90adc80-8e8e-4484-92a3-00bf274e6a9d 24127 6735 5674 #> 4071 18750e3f-5625-4253-ac44-61c6b8fc07d4 32241 13487 49714 #> 4072 345a3f59-1eec-484b-93d0-6330bdb358e1 29484 10940 10884 #> 4073 a8912b9a-e400-4f2e-be47-59e17b4ddf2d 31272 13043 50904 #> 4074 5a7fd0e3-5b63-4ebd-b8f9-02f3dafe0d45 30514 12427 12083 #> 4075 3422e0da-2496-4e8c-b716-599b5782a567 31292 13254 49064 #> 4076 43b6dba8-0299-4f5d-9094-e061be3e8fe8 31811 13554 22613 #> 4077 8b91b834-6eae-4a18-8fc6-9c99caafa615 31744 13942 NA #> 4078 7b7bf4a7-4600-4540-b675-c3e4c7f163e9 30815 12448 49669 #> 4079 d6fffab3-1d96-416b-8f9f-fbdff691f33d 31434 13112 50234 #> 4080 7a41d4ff-5634-4b1d-843e-820e9b2a6049 31245 13125 51026 #> 4081 5286148b-f209-4a92-b3d7-83e4b05acba4 28720 10865 9792 #> 4082 155d6c0a-4ab8-4e58-92c4-5e955eb4ea13 31566 12742 51161 #> 4083 a7db348f-e49d-4ec4-8818-57a4820f2f14 31440 13118 66939 #> 4084 04a63d1d-683e-46ed-a929-458923150f5e 32113 13899 58208 #> 4085 befe4b46-f918-4faf-a9ad-c034e990c0cb 30760 12471 12264 #> 4086 0cea85ba-f49b-4f4b-b50e-b96042a6a680 30576 12133 50096 #> 4087 82a32245-a807-4018-be7e-a64e10abea6f 31487 13174 50742 #> 4088 0baf5ce4-ce92-425e-b5aa-ea0c388a9b6e 32512 13732 26073 #> 4089 56615da2-0091-4683-8596-5b13d933db93 30635 12558 49204 #> 4090 4bbe4348-4fe2-4787-a6c4-fd2a9ff76bac 27649 9354 8756 #> 4091 b82c2d22-1a6e-453f-ba11-9a048bf36f63 32360 13869 58181 #> 4092 c8b91c2a-3a98-42ea-a295-35344979fdb9 30099 11708 11750 #> 4093 7033ecd3-b11e-4123-8328-4413e1d7acc4 31563 13248 50845 #> 4094 935189f4-3934-4206-a64e-c5b92f3d9c43 30039 11613 11431 #> 4095 c5dfe8ed-dba1-46f5-821d-cb88ee7ab664 32520 13838 NA #> 4096 63de92e7-69a9-494f-b2a6-43aa67ad325c 30471 11964 12062 #> 4097 8044439b-4873-4d1a-ba45-0e3365d889cc 31661 13239 50920 #> 4098 48a49ac2-640c-4ef5-9192-4ba6ccc306ea 32453 13571 49864 #> 4099 4123860b-90a2-425e-ba0b-051aad7c327e 30220 11958 11862 #> 4100 0d732ceb-7d32-4469-99a0-386af0d951f1 31717 13316 51019 #> 4101 ece6cc68-6834-4c1a-ab97-03d327ea132d 27740 9775 8846 #> 4102 37aa17f7-890f-40ad-ad48-57d70f2708a9 32100 14034 44987 #> 4103 37e44075-a98b-4908-ae69-4963c5cc3c69 30857 12250 12348 #> 4104 8bcda483-4714-4caf-bd21-4e64884a1ab3 31504 13160 51015 #> 4105 8777f90a-8280-447b-9fb4-806989838e9f 32291 14140 50783 #> 4106 57b80476-cfca-4d31-a7c3-cf84ea3261b0 30424 12355 12038 #> 4107 889052f9-12d3-4540-af7f-2728c1ad91de 32181 13731 89295 #> 4108 0c3f8621-b32c-4887-890e-dbd6b76b2370 29473 11243 10873 #> 4109 5bf874ec-3fae-412f-855d-257870e1c72f 32446 13698 81293 #> 4110 c66e5f22-10ad-41fb-9fde-52598df5fba7 32190 NA 49816 #> 4111 335ba0c8-25e2-46a9-89b9-8d9eaafe11cf 31663 13240 66953 #> 4112 c4243a66-f376-4ad0-ac40-3e2b759ba64a 31468 13367 NA #> 4113 beeb2f7d-e318-478a-956e-7419aae66bd7 29359 11220 10759 #> 4114 9823700a-2d8e-4872-862d-382d69c67a46 29394 10920 10794 #> 4115 3b10d2d7-f361-4bc2-93ca-1bbe414b1862 31187 12917 50812 #> 4116 e7488114-9a87-41e3-bf4f-85923ddb106f 30387 11974 12060 #> 4117 480277d1-47c9-44df-969e-038a84cd0fea 5046 1299 595 #> 4118 7df7e968-8402-48a4-b0b7-97cb54a1702e 29659 11434 NA #> 4119 beb64618-614c-49f7-a3aa-c0c75b7839ea 25427 7546 6796 #> 4120 e5247e5f-c4af-4a9b-8c7c-da75ef7fbf8d 4269 994 422 #> 4121 efb15571-8b8c-4894-8c3f-f595cf7ccf87 27958 9816 NA #> 4122 e017e12b-07a7-4a35-b837-2faa9ffe3ce8 7223 4441 NA #> 4123 40cda44b-2ee3-4ad1-834e-995e30db84d4 9066 5935 4655 #> 4124 33c4aa3f-8f62-48c0-9ebf-d6ad73c6e4e3 31361 13093 NA #> 4125 1a59e864-5282-4d94-b678-8537d524e181 29915 11738 NA #> 4126 5e52491c-218a-4e32-b455-0d3aa05b8151 32369 14160 NA #> 4127 67da0db1-ed58-435d-b8bf-f7ffa02d8a24 31831 13943 NA #> 4128 596c4000-ede5-45b0-8336-33efeb686d2b 26789 8898 7948 #> 4129 2c0ebb74-96d8-4d13-9891-90bf9b15fd0e 29834 11097 NA #> 4130 5514afb6-bd43-49a8-9bf7-b8baaaecdabe 25648 7544 6860 #> 4131 9ecf8040-10f9-4a5c-92da-1b4d77bd6760 3727 395 226 #> 4132 0d1171d4-c955-4966-9257-640b569866d1 28103 9845 9140 #> 4133 4869b8db-2e38-4327-af11-cc1e17ef3490 9219 5849 NA #> 4134 a527b7db-0b52-4379-9e4c-2e08c1fe1bed 7867 4932 3063 #> 4135 218d1644-603e-4da3-9ce1-48ce3927494f 6243 2832 1223 #> 4136 47cfc2a1-2b81-430e-8b30-ff5129e5c601 7505 4661 NA #> 4137 30be69a5-f203-49dc-a354-19e4733a80da 25509 7479 6767 #> 4138 0555927e-18ad-40f9-b2d6-f63d533d91aa 26975 9068 8500 #> 4139 1817f16b-5ff3-4d64-8d7a-f64e02f5a033 30799 12410 24304 #> 4140 94d5430e-41b9-4b3f-af7e-4d25bd6da4be 27682 9388 8789 #> 4141 1aec5d74-58c8-4bf2-9508-f09e6384952c 30904 12295 51599 #> 4142 b882eddd-10fc-4cc0-9a8f-ca2d6db0c6fc 28999 10688 9911 #> 4143 9a4fd6b9-9ddc-4161-ab9a-3013a792c70d 31172 12528 50787 #> 4144 6f1bc007-d446-48f2-a6e5-58c5e53df94f 28624 10385 9669 #> 4145 70eae82c-30ea-491f-b71c-aa11f47af476 25848 8341 7135 #> 4146 b1f8c22c-e516-4fdc-9ecd-d2bd1e9a1f36 27801 9946 8929 #> 4147 6fbd5f30-db84-4c38-98ea-69631bdbc53f 24827 7477 6192 #> 4148 61033955-2852-4620-a5ea-cc596a8f4e12 27684 9385 8791 #> 4149 f9354bca-514d-4f8d-97b2-5c6ed471edff 24871 7478 6236 #> 4150 7853d82d-7c4b-4275-8ade-f8b96dd89bf5 24507 7021 5945 #> 4151 e9b4a5be-80ed-4e00-9db3-6ee69e32b529 9072 5740 4583 #> 4152 8488c04c-1972-415b-85b9-84829ee09f11 31305 13234 49695 #> 4153 5f727913-cfa9-44e5-89e4-e2a52dc11760 28506 10361 9551 #> 4154 aad60db9-4a23-44d5-a738-46443e99ea77 26855 8957 8015 #> 4155 a41304be-54fb-4448-bf94-9bf6334a880a 25940 8313 7214 #> 4156 a5111f5d-0b0c-4745-874c-672904200c32 29758 11311 11100 #> 4157 91fc931a-acff-46d1-8233-182ce9635740 28377 10153 10248 #> 4158 4cad5078-de06-4449-b629-a954b92c51e2 32413 14252 NA #> 4159 d1ac1143-9b14-41b7-be88-6b094592a3dd 28845 10677 9825 #> 4160 f41be233-94ee-4d66-bb7b-aabb9a9509e8 27179 9110 8138 #> 4161 3f6b7426-8fc2-44c8-9cba-9d6234e9d43d 26475 8578 7561 #> 4162 4916c90c-11e8-44d8-be62-67806f9efcdf 31264 13039 49716 #> 4163 8bc1b144-ce6d-4889-a1e1-e7cc394756e6 9543 6283 5310 #> 4164 171deb91-d41b-43d6-b531-9d4cf7fa2bb4 8944 5811 4481 #> 4165 e858a1af-ebbe-4413-9903-ecd96d36a09b 25762 8183 7055 #> 4166 98c7ad4f-8e63-4028-b3ca-84dd37a5ae64 25717 8197 7013 #> fantasy_data_id sleeper_id years_exp #> 1 NA 7759 0 #> 2 18274 3508 5 #> 3 13037 879 10 #> 4 20888 5864 2 #> 5 16035 1834 7 #> 6 21251 6344 2 #> 7 22171 7169 1 #> 8 18007 3246 5 #> 9 16107 1887 7 #> 10 NA 7708 0 #> 11 22289 7293 1 #> 12 15177 1540 8 #> 13 21210 6310 2 #> 14 NA 7780 0 #> 15 NA 7762 0 #> 16 21635 6711 2 #> 17 18521 3714 5 #> 18 14925 1395 8 #> 19 20729 5866 2 #> 20 15011 1442 8 #> 21 NA 7788 0 #> 22 19821 4957 1 #> 23 20738 5871 2 #> 24 16813 2357 6 #> 25 14922 1392 8 #> 26 12955 856 10 #> 27 21403 6400 2 #> 28 21141 6304 2 #> 29 16153 1920 7 #> 30 11437 608 11 #> 31 16911 2454 6 #> 32 22083 6948 1 #> 33 17136 2668 6 #> 34 21885 7004 1 #> 35 14096 1136 9 #> 36 16963 2504 6 #> 37 20210 5238 1 #> 38 18524 3716 4 #> 39 11054 535 10 #> 40 549 17 15 #> 41 20085 5158 3 #> 42 16397 2084 7 #> 43 16792 2336 5 #> 44 20088 5161 3 #> 45 19965 5069 3 #> 46 16845 2389 6 #> 47 22281 7285 1 #> 48 19071 4225 4 #> 49 16819 2363 6 #> 50 20765 6096 2 #> 51 12101 694 12 #> 52 13749 1038 9 #> 53 22383 7398 1 #> 54 NA 7637 0 #> 55 22186 7184 1 #> 56 18180 3417 5 #> 57 22002 7040 1 #> 58 22004 6781 1 #> 59 19777 4877 1 #> 60 14042 1122 9 #> 61 15094 1496 8 #> 62 16894 2437 6 #> 63 NA 8060 0 #> 64 22029 6808 1 #> 65 22221 7219 1 #> 66 21266 6570 2 #> 67 20212 5515 0 #> 68 19001 4155 4 #> 69 14896 1374 8 #> 70 13913 1088 9 #> 71 21140 6303 2 #> 72 18416 3629 5 #> 73 12897 842 10 #> 74 21160 6560 2 #> 75 16785 2329 6 #> 76 20607 5639 3 #> 77 16090 1873 6 #> 78 21191 6563 2 #> 79 3100 112 17 #> 80 11047 533 11 #> 81 21822 6954 1 #> 82 20889 5849 2 #> 83 21866 6778 1 #> 84 19919 5000 3 #> 85 19129 4283 4 #> 86 21773 6951 1 #> 87 18983 4137 4 #> 88 21850 7103 1 #> 89 21782 7087 1 #> 90 16881 2425 5 #> 91 18927 4081 4 #> 92 17750 3041 5 #> 93 19176 4323 4 #> 94 21208 6308 2 #> 95 21493 6493 1 #> 96 NA 8033 0 #> 97 21320 6375 1 #> 98 16816 2360 6 #> 99 NA 7734 0 #> 100 15305 1619 8 #> 101 12845 830 10 #> 102 21071 5970 2 #> 103 20979 6165 2 #> 104 20835 5962 2 #> 105 19314 4451 4 #> 106 22234 7233 1 #> 107 NA 7601 0 #> 108 15509 1684 7 #> 109 20820 5915 2 #> 110 14986 1426 8 #> 111 21318 6373 2 #> 112 22236 7235 1 #> 113 19815 4950 3 #> 114 19739 4836 NA #> 115 NA 7725 0 #> 116 15961 1789 7 #> 117 19146 4298 1 #> 118 21951 6881 1 #> 119 NA 7730 0 #> 120 18972 4126 4 #> 121 22153 7151 1 #> 122 19154 4306 0 #> 123 NA 7809 0 #> 124 20097 5150 0 #> 125 22075 6836 1 #> 126 19868 5044 3 #> 127 NA 7748 0 #> 128 NA 7749 0 #> 129 22191 7189 1 #> 130 17988 3227 5 #> 131 14887 1366 8 #> 132 20438 5498 0 #> 133 NA 7745 0 #> 134 20938 6140 2 #> 135 17899 3144 5 #> 136 NA 7662 0 #> 137 15203 1561 8 #> 138 18002 3241 5 #> 139 21009 6116 2 #> 140 21884 6838 1 #> 141 NA 7738 0 #> 142 NA 7810 0 #> 143 19899 5042 3 #> 144 21641 6716 2 #> 145 19493 4604 4 #> 146 20942 6174 2 #> 147 20330 5659 3 #> 148 NA 7981 0 #> 149 17059 2592 6 #> 150 16914 2457 6 #> 151 NA 7840 0 #> 152 NA 7980 0 #> 153 16378 2073 7 #> 154 19565 4666 4 #> 155 21989 7012 1 #> 156 NA 7982 0 #> 157 20129 5443 3 #> 158 16764 2308 6 #> 159 17983 3222 5 #> 160 20233 5505 3 #> 161 22099 6991 0 #> 162 20879 5900 2 #> 163 22247 7247 1 #> 164 21578 6679 2 #> 165 NA 7743 0 #> 166 20094 5147 3 #> 167 21457 6531 1 #> 168 20007 5332 3 #> 169 NA 7740 0 #> 170 15423 1657 8 #> 171 14567 1238 9 #> 172 18043 3282 5 #> 173 20857 5895 2 #> 174 NA 7739 0 #> 175 NA 7737 0 #> 176 17980 3219 5 #> 177 21079 6417 2 #> 178 NA 7747 0 #> 179 NA 7979 0 #> 180 19974 5093 3 #> 181 21475 6455 2 #> 182 NA 7742 0 #> 183 NA 7684 0 #> 184 20093 5146 3 #> 185 16531 2172 7 #> 186 20870 5874 2 #> 187 21660 6739 2 #> 188 22144 7141 1 #> 189 22204 7202 1 #> 190 732 24 13 #> 191 NA 7531 0 #> 192 16116 1895 7 #> 193 19763 4863 3 #> 194 NA 7741 0 #> 195 NA 7563 0 #> 196 18957 4111 4 #> 197 16887 2431 6 #> 198 15150 1535 8 #> 199 20900 6002 2 #> 200 15087 1489 7 #> 201 16738 2296 1 #> 202 21933 7058 1 #> 203 NA 7553 0 #> 204 21569 6662 2 #> 205 22163 7162 1 #> 206 20199 5235 3 #> 207 19843 4973 3 #> 208 20662 5754 3 #> 209 12777 812 10 #> 210 19802 4981 3 #> 211 21142 6271 2 #> 212 18058 3297 5 #> 213 22176 7174 1 #> 214 18895 4922 1 #> 215 22177 7175 1 #> 216 NA 7530 0 #> 217 19935 5006 3 #> 218 20224 5241 3 #> 219 20006 5110 3 #> 220 NA 7744 0 #> 221 20328 5275 3 #> 222 18080 3319 5 #> 223 NA 7746 0 #> 224 22010 6930 1 #> 225 16779 2323 6 #> 226 18027 3266 5 #> 227 12829 825 10 #> 228 22202 7200 1 #> 229 20867 6023 2 #> 230 18917 4071 4 #> 231 19927 5301 3 #> 232 21174 6243 2 #> 233 NA 7830 0 #> 234 22098 6986 1 #> 235 NA 7970 0 #> 236 NA 7685 0 #> 237 16825 2369 6 #> 238 14767 1298 11 #> 239 19960 5071 3 #> 240 19070 4224 4 #> 241 21931 6923 1 #> 242 20631 5708 1 #> 243 16265 1994 7 #> 244 3341 125 13 #> 245 NA 8067 0 #> 246 14059 1128 9 #> 247 21900 6818 1 #> 248 22196 7194 1 #> 249 21886 7122 1 #> 250 NA 7968 0 #> 251 21487 6488 1 #> 252 16315 2031 7 #> 253 14891 1369 7 #> 254 19209 4353 4 #> 255 19203 4347 0 #> 256 21170 6486 1 #> 257 NA 7971 0 #> 258 14688 1264 9 #> 259 NA 8056 0 #> 260 NA 7626 0 #> 261 NA 7820 0 #> 262 21482 6432 2 #> 263 22199 7197 1 #> 264 12822 823 10 #> 265 21982 6807 1 #> 266 13036 878 10 #> 267 20755 5879 2 #> 268 20246 5459 0 #> 269 18930 4084 4 #> 270 21996 6867 1 #> 271 20099 5141 2 #> 272 13892 1078 9 #> 273 20245 5753 3 #> 274 21421 6594 2 #> 275 14906 1383 8 #> 276 17491 2986 6 #> 277 20914 5910 2 #> 278 21990 6934 1 #> 279 13882 1074 9 #> 280 22027 7112 1 #> 281 NA 7690 0 #> 282 21206 6306 2 #> 283 20008 5298 3 #> 284 8459 358 12 #> 285 NA 7969 0 #> 286 17921 3162 5 #> 287 NA 7973 0 #> 288 15980 1805 7 #> 289 16284 2009 7 #> 290 16015 1822 7 #> 291 19995 5381 3 #> 292 430 13 15 #> 293 19211 4924 1 #> 294 21810 7083 1 #> 295 19781 4881 3 #> 296 NA 8057 0 #> 297 19584 4683 1 #> 298 20874 5974 2 #> 299 22126 7098 1 #> 300 20239 5248 3 #> 301 21674 6806 1 #> 302 20802 5995 2 #> 303 NA 8058 0 #> 304 21780 7015 1 #> 305 NA 7808 0 #> 306 19803 5012 3 #> 307 NA 7972 0 #> 308 22113 7065 1 #> 309 20899 5973 2 #> 310 17223 2755 6 #> 311 16931 2474 6 #> 312 16395 2082 6 #> 313 19662 4744 1 #> 314 21037 5965 2 #> 315 16003 1817 7 #> 316 21723 6957 1 #> 317 17269 2801 6 #> 318 NA 8052 0 #> 319 21045 5848 2 #> 320 19980 5101 3 #> 321 22435 7457 1 #> 322 8079 6686 0 #> 323 22193 7191 1 #> 324 16305 2023 7 #> 325 22301 7309 1 #> 326 NA 7595 0 #> 327 20227 5244 3 #> 328 21722 6939 1 #> 329 NA 7571 0 #> 330 21721 6847 1 #> 331 16810 2354 6 #> 332 18918 4072 4 #> 333 21137 6286 2 #> 334 18546 3735 4 #> 335 22060 6969 1 #> 336 22210 7207 0 #> 337 NA 7974 0 #> 338 21216 6314 2 #> 339 16620 2228 6 #> 340 NA 7786 0 #> 341 20102 5153 3 #> 342 19963 5098 3 #> 343 NA 7976 0 #> 344 19928 5341 3 #> 345 NA 7787 0 #> 346 20834 5930 2 #> 347 15136 1525 8 #> 348 14860 1343 8 #> 349 NA 7975 0 #> 350 22211 7208 1 #> 351 NA 7646 0 #> 352 20839 6051 2 #> 353 11132 550 11 #> 354 NA 7627 0 #> 355 21881 6802 1 #> 356 20253 5623 3 #> 357 13181 922 10 #> 358 19214 4357 4 #> 359 17264 2796 6 #> 360 15188 1548 8 #> 361 18988 4142 4 #> 362 19900 5049 3 #> 363 18598 3785 5 #> 364 21561 6587 1 #> 365 17944 3183 5 #> 366 18237 3473 5 #> 367 20898 5841 2 #> 368 19082 4236 4 #> 369 19110 4264 4 #> 370 19587 4686 0 #> 371 22108 7042 1 #> 372 19836 4968 3 #> 373 20010 5340 3 #> 374 20772 6105 2 #> 375 21029 5922 1 #> 376 17081 2613 6 #> 377 21361 6398 1 #> 378 21218 6315 2 #> 379 15186 1547 8 #> 380 18162 3401 5 #> 381 19058 4212 4 #> 382 19037 4191 4 #> 383 18355 3576 5 #> 384 16889 2433 6 #> 385 NA 7768 0 #> 386 NA 7977 0 #> 387 22102 7026 1 #> 388 20252 5678 3 #> 389 18940 4094 4 #> 390 20760 5856 2 #> 391 16863 2407 6 #> 392 21027 6000 2 #> 393 16875 2419 6 #> 394 15424 1658 8 #> 395 21992 6852 1 #> 396 18948 4102 4 #> 397 NA 7691 0 #> 398 16985 2525 6 #> 399 NA 7829 0 #> 400 21271 6456 2 #> 401 19249 4390 4 #> 402 21828 6822 1 #> 403 18811 3976 4 #> 404 18907 4061 4 #> 405 19801 4984 3 #> 406 21784 6845 1 #> 407 19319 4455 4 #> 408 20982 6175 2 #> 409 13063 886 10 #> 410 21097 6196 2 #> 411 22205 7203 1 #> 412 20941 6130 2 #> 413 19605 4701 3 #> 414 20850 5906 2 #> 415 21409 6535 2 #> 416 NA 7536 0 #> 417 22206 7204 1 #> 418 20957 6137 2 #> 419 19179 4326 4 #> 420 19281 4421 4 #> 421 18666 3846 5 #> 422 19043 4197 4 #> 423 NA 7978 0 #> 424 17289 2821 6 #> 425 16906 2449 6 #> 426 NA 7556 0 #> 427 19431 4551 4 #> 428 19668 4750 4 #> 429 14141 1144 9 #> 430 20194 5197 3 #> 431 11063 538 11 #> 432 20487 5695 3 #> 433 21735 6943 1 #> 434 21760 6920 1 #> 435 16281 2006 7 #> 436 22447 7472 1 #> 437 NA 7642 0 #> 438 19870 5051 3 #> 439 15359 1633 8 #> 440 NA 7824 0 #> 441 14414 1204 8 #> 442 22298 7305 1 #> 443 22055 6856 1 #> 444 22088 7137 1 #> 445 15478 1674 8 #> 446 22226 7224 1 #> 447 22133 7119 1 #> 448 18987 4141 4 #> 449 18040 3279 5 #> 450 21917 6929 1 #> 451 22228 7226 1 #> 452 20173 5178 3 #> 453 21583 6684 2 #> 454 18434 3643 5 #> 455 NA 7621 0 #> 456 20962 6184 1 #> 457 18555 3743 5 #> 458 21415 6518 1 #> 459 19929 5342 3 #> 460 20488 5495 3 #> 461 14330 1180 3 #> 462 21896 6812 1 #> 463 20331 5660 3 #> 464 21052 5862 2 #> 465 20060 5320 3 #> 466 20448 5402 3 #> 467 16171 1932 7 #> 468 NA 7772 0 #> 469 22085 6784 1 #> 470 16463 2126 7 #> 471 NA 7832 0 #> 472 22302 7310 1 #> 473 21242 6335 2 #> 474 22135 7124 1 #> 475 NA 7868 0 #> 476 22208 7205 1 #> 477 22223 7221 1 #> 478 22307 7314 1 #> 479 21519 6528 2 #> 480 21986 7059 1 #> 481 14338 1181 9 #> 482 20783 6027 2 #> 483 18909 4063 4 #> 484 12815 821 10 #> 485 20411 5580 3 #> 486 20877 5986 2 #> 487 14037 1120 9 #> 488 16786 2330 6 #> 489 16809 2353 6 #> 490 19964 5099 3 #> 491 21980 7144 1 #> 492 20687 5784 3 #> 493 NA 7870 0 #> 494 21916 7485 1 #> 495 21921 7016 1 #> 496 9162 439 13 #> 497 NA 7781 0 #> 498 NA 7800 0 #> 499 16842 2386 6 #> 500 21057 5964 2 #> 501 16780 2324 6 #> 502 18961 4115 4 #> 503 21268 6572 2 #> 504 20065 5423 3 #> 505 18950 4104 4 #> 506 21076 6112 2 #> 507 21407 6424 2 #> 508 NA 7697 0 #> 509 NA 7871 0 #> 510 22093 6936 1 #> 511 19191 4335 4 #> 512 20779 5903 2 #> 513 19812 4943 3 #> 514 NA 7594 0 #> 515 20103 5162 3 #> 516 NA 7867 0 #> 517 20040 5123 3 #> 518 21775 7101 1 #> 519 18877 4034 4 #> 520 17360 2892 6 #> 521 22174 7172 1 #> 522 NA 7614 0 #> 523 19910 4995 3 #> 524 19542 4647 4 #> 525 21865 6970 1 #> 526 21732 7216 1 #> 527 19622 4940 1 #> 528 19360 4490 1 #> 529 NA 7694 0 #> 530 19659 4741 4 #> 531 NA 8068 0 #> 532 19060 4214 3 #> 533 19403 4526 4 #> 534 NA 7565 0 #> 535 21963 7080 1 #> 536 19779 4878 3 #> 537 NA 7603 0 #> 538 21106 6209 2 #> 539 18187 3423 5 #> 540 21548 6628 2 #> 541 19120 4274 4 #> 542 19844 4983 3 #> 543 20071 5134 3 #> 544 NA 7618 0 #> 545 17987 3226 5 #> 546 21122 6289 2 #> 547 18629 3813 5 #> 548 22056 6839 1 #> 549 19411 4532 4 #> 550 15183 1545 8 #> 551 20262 5634 3 #> 552 22079 6928 1 #> 553 20620 5707 0 #> 554 19004 4158 4 #> 555 21127 6285 2 #> 556 13894 1079 9 #> 557 17953 3192 5 #> 558 18045 3284 5 #> 559 18121 3360 5 #> 560 NA 7843 0 #> 561 18084 3323 5 #> 562 18102 3341 5 #> 563 18933 4087 4 #> 564 NA 7775 0 #> 565 NA 7845 0 #> 566 16861 2405 6 #> 567 16796 2340 6 #> 568 NA 7849 0 #> 569 21428 6463 1 #> 570 19930 5302 3 #> 571 16800 2344 6 #> 572 16486 2143 7 #> 573 NA 7844 0 #> 574 21028 5925 1 #> 575 NA 7756 0 #> 576 NA 8054 0 #> 577 14358 1186 9 #> 578 22232 7231 1 #> 579 20619 5706 0 #> 580 16301 2020 7 #> 581 NA 8055 0 #> 582 22161 7160 1 #> 583 15220 1572 8 #> 584 19827 4960 3 #> 585 21890 7120 1 #> 586 19931 5303 3 #> 587 NA 7846 0 #> 588 17246 2778 6 #> 589 14057 1127 9 #> 590 20664 5757 3 #> 591 16323 2036 7 #> 592 16334 2042 7 #> 593 19293 4811 4 #> 594 15079 1482 8 #> 595 13393 967 10 #> 596 16434 2110 7 #> 597 15734 1745 10 #> 598 NA 8053 0 #> 599 19855 4991 3 #> 600 22230 7229 1 #> 601 NA 7838 0 #> 602 17954 3193 5 #> 603 22143 7140 1 #> 604 18370 3590 5 #> 605 22100 6998 0 #> 606 19479 4592 4 #> 607 NA 8073 0 #> 608 21024 6044 2 #> 609 20891 6094 2 #> 610 22142 7139 1 #> 611 NA 7663 0 #> 612 8920 412 17 #> 613 22231 7230 1 #> 614 16438 2113 7 #> 615 12841 829 10 #> 616 13723 1029 9 #> 617 NA 7591 0 #> 618 20106 5163 3 #> 619 NA 7608 0 #> 620 16031 1833 7 #> 621 NA 7549 0 #> 622 21848 7227 1 #> 623 19003 4157 4 #> 624 20882 5892 2 #> 625 15261 1601 8 #> 626 19432 4930 1 #> 627 21707 6762 1 #> 628 18498 3695 5 #> 629 16920 2463 6 #> 630 18997 4151 4 #> 631 NA 7848 0 #> 632 21772 6826 1 #> 633 20812 6075 2 #> 634 11488 616 11 #> 635 20511 5661 3 #> 636 20606 5638 1 #> 637 14865 1346 8 #> 638 20296 5261 3 #> 639 20925 5873 2 #> 640 17141 2673 6 #> 641 20011 5111 3 #> 642 19582 4681 3 #> 643 21967 7085 1 #> 644 19054 4208 4 #> 645 21961 7090 1 #> 646 21451 6420 2 #> 647 21464 6465 2 #> 648 NA 7586 0 #> 649 16263 1992 7 #> 650 16868 2412 6 #> 651 20618 5699 1 #> 652 16113 1893 7 #> 653 20763 6058 2 #> 654 19813 4947 3 #> 655 NA 7803 0 #> 656 16772 2316 6 #> 657 20856 6034 2 #> 658 18563 3751 5 #> 659 22063 7017 1 #> 660 18953 4107 4 #> 661 20066 5424 3 #> 662 19968 5079 3 #> 663 NA 7986 0 #> 664 20157 5222 3 #> 665 17950 3189 5 #> 666 18128 3367 5 #> 667 19076 4230 4 #> 668 18316 3546 5 #> 669 17991 3230 5 #> 670 16520 2167 7 #> 671 20116 5642 3 #> 672 19873 5017 3 #> 673 NA 7987 0 #> 674 NA 7678 0 #> 675 18981 4135 4 #> 676 19871 5015 3 #> 677 17956 3195 5 #> 678 NA 7769 0 #> 679 21876 6864 1 #> 680 NA 7727 0 #> 681 21033 6043 2 #> 682 19228 4371 4 #> 683 18083 3322 5 #> 684 14280 1174 9 #> 685 NA 7718 0 #> 686 20998 6157 2 #> 687 20027 5327 3 #> 688 18952 4106 4 #> 689 20058 5309 1 #> 690 21114 6219 2 #> 691 NA 7839 0 #> 692 21999 6860 1 #> 693 20915 5894 2 #> 694 21911 6891 1 #> 695 22449 7474 1 #> 696 19074 4228 4 #> 697 21913 7014 1 #> 698 22003 6880 1 #> 699 12330 738 14 #> 700 21396 6632 2 #> 701 17486 2982 6 #> 702 22015 6987 1 #> 703 NA 7656 0 #> 704 21222 6567 2 #> 705 20844 5869 2 #> 706 16212 1958 7 #> 707 20917 5956 2 #> 708 20987 6122 2 #> 709 14222 1159 9 #> 710 NA 7705 0 #> 711 20831 6024 2 #> 712 NA 7847 0 #> 713 NA 7984 0 #> 714 8433 353 12 #> 715 21143 6269 2 #> 716 21467 6443 2 #> 717 21693 6770 1 #> 718 18118 3357 5 #> 719 NA 7983 0 #> 720 NA 7560 0 #> 721 20990 6144 2 #> 722 20906 6108 1 #> 723 18993 4147 4 #> 724 18858 4018 4 #> 725 NA 7794 0 #> 726 22239 7238 0 #> 727 21151 6558 1 #> 728 19075 4229 4 #> 729 21955 6919 1 #> 730 16917 2460 6 #> 731 20931 6001 2 #> 732 21779 6982 0 #> 733 NA 7985 0 #> 734 21800 6894 1 #> 735 19064 4218 4 #> 736 NA 7988 0 #> 737 21527 6643 1 #> 738 20886 6069 2 #> 739 20057 5130 3 #> 740 22238 7237 1 #> 741 21690 6801 1 #> 742 NA 7564 0 #> 743 17986 3225 5 #> 744 18445 3652 5 #> 745 21263 6598 2 #> 746 18715 3893 5 #> 747 19224 4367 1 #> 748 15140 1529 8 #> 749 20908 6022 2 #> 750 18289 3523 5 #> 751 NA 7630 0 #> 752 20300 5448 3 #> 753 20985 6123 2 #> 754 17294 2826 6 #> 755 19061 4215 4 #> 756 19830 4964 3 #> 757 22046 6876 1 #> 758 NA 8031 0 #> 759 19893 5055 3 #> 760 NA 8030 0 #> 761 21918 6799 1 #> 762 22251 7251 1 #> 763 18979 4133 4 #> 764 22252 7252 1 #> 765 22391 7408 0 #> 766 19904 5025 3 #> 767 NA 7822 0 #> 768 20923 5983 2 #> 769 19252 4393 4 #> 770 20780 5996 2 #> 771 20821 5923 2 #> 772 16194 1947 7 #> 773 21874 6854 1 #> 774 21246 6339 1 #> 775 18807 3973 4 #> 776 19399 4886 1 #> 777 18915 4069 4 #> 778 NA 8028 0 #> 779 20270 5533 1 #> 780 18941 4095 4 #> 781 17968 3207 5 #> 782 22059 6841 1 #> 783 NA 8029 0 #> 784 14851 1334 8 #> 785 18026 3265 5 #> 786 14048 1124 9 #> 787 NA 7711 0 #> 788 20581 5569 3 #> 789 18093 3332 5 #> 790 21474 6454 1 #> 791 20466 5386 3 #> 792 21542 6650 2 #> 793 16236 1974 7 #> 794 NA 7836 0 #> 795 20994 6131 2 #> 796 13480 997 10 #> 797 19101 4255 4 #> 798 20059 5528 3 #> 799 21979 7006 1 #> 800 19049 4203 4 #> 801 21511 6498 2 #> 802 NA 7651 0 #> 803 20029 5305 3 #> 804 21108 6211 2 #> 805 16760 2305 9 #> 806 16125 1900 7 #> 807 21217 6566 2 #> 808 19962 5097 3 #> 809 20034 5335 3 #> 810 19672 4753 4 #> 811 21946 7273 1 #> 812 21113 6224 2 #> 813 21948 6907 1 #> 814 NA 7728 0 #> 815 20009 5299 3 #> 816 19795 4898 0 #> 817 22024 6787 1 #> 818 14959 1407 8 #> 819 22019 7028 1 #> 820 17936 3175 5 #> 821 21279 6452 2 #> 822 20567 5537 1 #> 823 19913 4996 3 #> 824 15694 1737 9 #> 825 19790 4892 3 #> 826 NA 7609 0 #> 827 19957 5076 3 #> 828 20937 6161 1 #> 829 NA 8027 0 #> 830 19798 4988 3 #> 831 21593 6694 2 #> 832 NA 8092 0 #> 833 18944 4098 4 #> 834 22348 7360 0 #> 835 22246 7246 1 #> 836 21783 6850 1 #> 837 17963 3202 5 #> 838 22473 7503 1 #> 839 21278 6451 2 #> 840 18876 4033 4 #> 841 20264 5253 3 #> 842 19184 4330 4 #> 843 20477 5539 3 #> 844 19008 4162 4 #> 845 16389 2078 7 #> 846 4291 166 11 #> 847 20679 5773 3 #> 848 16020 1825 7 #> 849 21754 6824 1 #> 850 22358 7370 1 #> 851 18089 3328 5 #> 852 21312 6381 2 #> 853 NA 7533 0 #> 854 21311 6380 2 #> 855 22244 7244 1 #> 856 21995 6835 1 #> 857 15083 1486 8 #> 858 18125 3364 5 #> 859 NA 7776 0 #> 860 21234 6328 2 #> 861 22051 6809 1 #> 862 18106 3345 5 #> 863 NA 7658 0 #> 864 19140 4294 4 #> 865 NA 7687 0 #> 866 17337 2869 7 #> 867 18975 4129 4 #> 868 10197 4915 1 #> 869 22087 7114 1 #> 870 19034 4188 4 #> 871 18160 3399 5 #> 872 20316 5741 3 #> 873 NA 7942 0 #> 874 18001 3240 5 #> 875 21123 6291 2 #> 876 18920 4074 4 #> 877 NA 7693 0 #> 878 18958 4112 4 #> 879 22253 7253 1 #> 880 16366 2064 7 #> 881 21870 6827 1 #> 882 19012 4166 4 #> 883 16821 2365 6 #> 884 16100 1881 7 #> 885 19932 5330 3 #> 886 NA 7801 0 #> 887 20803 5989 2 #> 888 NA 7866 0 #> 889 NA 7695 0 #> 890 17327 2859 6 #> 891 22078 6825 1 #> 892 NA 7941 0 #> 893 21971 7055 1 #> 894 14789 1308 9 #> 895 NA 7766 0 #> 896 22122 7094 1 #> 897 14697 1266 9 #> 898 19838 4980 3 #> 899 17926 3167 5 #> 900 21449 6612 2 #> 901 21915 7068 1 #> 902 22016 7254 1 #> 903 20202 5675 0 #> 904 NA 7640 0 #> 905 17942 3181 5 #> 906 NA 7857 0 #> 907 NA 7724 0 #> 908 13388 965 10 #> 909 16369 2066 7 #> 910 20871 5913 2 #> 911 19875 5039 3 #> 912 20200 5490 0 #> 913 20818 5988 2 #> 914 NA 7861 0 #> 915 22041 6899 1 #> 916 NA 7706 0 #> 917 20849 6050 2 #> 918 19258 4399 4 #> 919 22392 7409 1 #> 920 13129 905 10 #> 921 20124 5486 0 #> 922 17058 2591 6 #> 923 14705 1267 9 #> 924 NA 7516 1 #> 925 14017 1113 9 #> 926 19461 4574 4 #> 927 19452 4931 1 #> 928 22146 7143 1 #> 929 18055 3294 5 #> 930 16621 2229 7 #> 931 20912 5967 2 #> 932 NA 7863 0 #> 933 21952 7021 1 #> 934 17923 3164 5 #> 935 NA 7858 0 #> 936 NA 7864 0 #> 937 NA 7859 0 #> 938 19067 4221 4 #> 939 19457 4571 4 #> 940 19920 5001 3 #> 941 21781 6964 1 #> 942 20684 5781 3 #> 943 NA 7584 0 #> 944 20013 5113 3 #> 945 19080 4234 4 #> 946 16765 2309 6 #> 947 NA 7812 0 #> 948 19867 5038 3 #> 949 21070 6019 2 #> 950 NA 7865 0 #> 951 21679 6786 1 #> 952 NA 7860 0 #> 953 21954 7462 1 #> 954 15554 4910 1 #> 955 20123 5169 1 #> 956 NA 7862 0 #> 957 21969 7091 1 #> 958 21997 6903 1 #> 959 NA 7699 0 #> 960 17435 2956 6 #> 961 16811 2355 6 #> 962 17328 2860 6 #> 963 NA 7767 0 #> 964 22427 7449 1 #> 965 20947 6138 2 #> 966 16432 2108 7 #> 967 22086 6925 1 #> 968 NA 7895 0 #> 969 22080 6983 1 #> 970 19048 4202 4 #> 971 NA 7641 0 #> 972 19884 5028 3 #> 973 21373 6419 2 #> 974 22189 7187 1 #> 975 11105 544 11 #> 976 18023 3262 5 #> 977 NA 7837 0 #> 978 NA 7826 0 #> 979 20842 5865 2 #> 980 16319 2033 7 #> 981 NA 7754 0 #> 982 NA 7765 0 #> 983 21370 6397 1 #> 984 21559 6584 2 #> 985 17295 2827 6 #> 986 NA 8050 0 #> 987 21466 6467 2 #> 988 21535 6601 2 #> 989 16515 2163 7 #> 990 22082 7111 1 #> 991 NA 8025 0 #> 992 21227 6323 2 #> 993 22032 6924 1 #> 994 19183 4329 0 #> 995 20926 5867 2 #> 996 18020 3259 5 #> 997 14996 1433 8 #> 998 NA 7681 0 #> 999 20021 5325 3 #> 1000 21366 6436 2 #> 1001 13022 871 10 #> 1002 19125 4279 4 #> 1003 22000 6977 1 #> 1004 20907 6055 2 #> 1005 NA 8024 0 #> 1006 19933 5334 3 #> 1007 NA 8020 0 #> 1008 17362 2894 2 #> 1009 19832 4967 3 #> 1010 NA 8059 0 #> 1011 21873 7154 1 #> 1012 20715 5822 3 #> 1013 21364 7077 1 #> 1014 15375 1640 8 #> 1015 NA 8023 0 #> 1016 20482 5439 3 #> 1017 16044 1840 7 #> 1018 21205 6565 2 #> 1019 19466 4579 0 #> 1020 NA 8022 0 #> 1021 21406 6409 2 #> 1022 16039 1836 7 #> 1023 14483 1222 9 #> 1024 21228 6457 2 #> 1025 18899 4053 4 #> 1026 15125 1516 8 #> 1027 NA 8066 0 #> 1028 16497 2152 7 #> 1029 20859 5854 2 #> 1030 20929 6037 2 #> 1031 21240 6334 2 #> 1032 21846 6959 1 #> 1033 NA 7904 0 #> 1034 21842 7093 1 #> 1035 16776 2320 6 #> 1036 19823 5046 3 #> 1037 NA 7588 0 #> 1038 20159 5209 3 #> 1039 20418 5442 3 #> 1040 19035 4189 4 #> 1041 NA 8018 0 #> 1042 20753 5857 2 #> 1043 21794 6843 1 #> 1044 21369 6396 2 #> 1045 NA 8026 0 #> 1046 18999 4153 3 #> 1047 20388 5295 3 #> 1048 18985 4139 4 #> 1049 19800 5045 3 #> 1050 NA 8019 0 #> 1051 NA 8021 0 #> 1052 21692 6783 1 #> 1053 19916 4998 3 #> 1054 19207 4351 4 #> 1055 22213 7210 1 #> 1056 21368 6395 2 #> 1057 21737 7032 1 #> 1058 21759 6805 1 #> 1059 NA 7534 0 #> 1060 20722 5828 7 #> 1061 20554 5610 3 #> 1062 18049 3288 5 #> 1063 16104 1884 7 #> 1064 20903 5888 2 #> 1065 22044 6785 1 #> 1066 18529 3721 4 #> 1067 17113 2645 6 #> 1068 21594 6695 2 #> 1069 15469 1672 8 #> 1070 20281 5691 3 #> 1071 NA 7892 0 #> 1072 19038 4192 4 #> 1073 NA 7889 0 #> 1074 22258 7259 1 #> 1075 20133 5687 0 #> 1076 20807 6104 2 #> 1077 21930 6902 1 #> 1078 NA 7887 0 #> 1079 19876 5064 3 #> 1080 20791 5920 2 #> 1081 21647 6724 2 #> 1082 17147 2679 6 #> 1083 NA 7680 0 #> 1084 20191 5220 3 #> 1085 21887 6851 1 #> 1086 18210 3446 5 #> 1087 18921 4075 4 #> 1088 21048 5942 2 #> 1089 18268 3502 5 #> 1090 16862 2406 6 #> 1091 20592 5591 3 #> 1092 20541 5613 3 #> 1093 22147 7145 1 #> 1094 NA 7679 0 #> 1095 14397 1197 9 #> 1096 NA 7661 0 #> 1097 21883 7128 1 #> 1098 19484 4932 1 #> 1099 19934 5351 3 #> 1100 22476 7500 1 #> 1101 21536 6536 2 #> 1102 14974 1414 8 #> 1103 21124 6273 2 #> 1104 20074 5565 3 #> 1105 20018 5116 3 #> 1106 20280 5690 0 #> 1107 19079 4233 4 #> 1108 21203 6268 2 #> 1109 13961 1099 9 #> 1110 21543 6651 2 #> 1111 NA 7726 0 #> 1112 19009 4163 4 #> 1113 20959 6179 2 #> 1114 NA 7888 0 #> 1115 20003 5367 3 #> 1116 18528 3720 5 #> 1117 14885 1364 8 #> 1118 18964 4118 4 #> 1119 22436 7459 1 #> 1120 19826 4959 3 #> 1121 6300 252 17 #> 1122 21323 6378 2 #> 1123 NA 8017 0 #> 1124 19845 4987 3 #> 1125 21944 6952 1 #> 1126 22110 7054 0 #> 1127 22026 6884 1 #> 1128 19975 5106 3 #> 1129 19624 4716 4 #> 1130 NA 7643 0 #> 1131 20277 5698 0 #> 1132 18081 3320 5 #> 1133 21411 6633 2 #> 1134 17946 3185 5 #> 1135 22360 7372 1 #> 1136 21376 6523 2 #> 1137 20283 5257 3 #> 1138 21612 6730 2 #> 1139 21277 6450 2 #> 1140 17922 3163 5 #> 1141 21793 6992 1 #> 1142 21684 6790 1 #> 1143 NA 7532 0 #> 1144 21787 6966 1 #> 1145 18995 4149 4 #> 1146 20600 5619 2 #> 1147 21564 6659 2 #> 1148 NA 7893 0 #> 1149 NA 7599 0 #> 1150 17154 2686 5 #> 1151 NA 7891 0 #> 1152 20865 5975 2 #> 1153 21683 6846 1 #> 1154 NA 7522 1 #> 1155 21863 6932 1 #> 1156 20805 5844 2 #> 1157 15247 1592 8 #> 1158 NA 7890 0 #> 1159 21556 6588 2 #> 1160 NA 7547 0 #> 1161 19021 4175 4 #> 1162 19969 5080 3 #> 1163 17048 2583 6 #> 1164 21729 6895 1 #> 1165 19317 4453 4 #> 1166 18422 3634 5 #> 1167 NA 7576 0 #> 1168 16787 2331 6 #> 1169 NA 7613 0 #> 1170 18269 3503 5 #> 1171 17070 2602 6 #> 1172 21942 7132 1 #> 1173 20178 5181 3 #> 1174 NA 7628 0 #> 1175 NA 8097 0 #> 1176 18925 4079 4 #> 1177 NA 7813 0 #> 1178 19839 4979 3 #> 1179 22069 6916 1 #> 1180 21418 6619 2 #> 1181 NA 7520 1 #> 1182 21107 6210 2 #> 1183 16902 2445 6 #> 1184 19901 5048 3 #> 1185 22269 7271 1 #> 1186 22148 7146 1 #> 1187 17998 3237 5 #> 1188 NA 7882 0 #> 1189 18056 3295 5 #> 1190 22461 7487 1 #> 1191 21908 7019 1 #> 1192 17947 3186 5 #> 1193 20848 6103 2 #> 1194 19709 4913 1 #> 1195 NA 7818 0 #> 1196 NA 7880 0 #> 1197 22265 7267 1 #> 1198 20289 5484 1 #> 1199 20288 5483 3 #> 1200 22410 7430 1 #> 1201 19379 4507 4 #> 1202 22263 7265 1 #> 1203 22040 6980 1 #> 1204 1694 59 14 #> 1205 22115 7071 1 #> 1206 21991 7504 1 #> 1207 16799 2343 6 #> 1208 20767 5839 2 #> 1209 22187 7185 1 #> 1210 21906 6965 1 #> 1211 19902 5031 3 #> 1212 21125 6294 2 #> 1213 16883 2427 6 #> 1214 18037 3276 5 #> 1215 21891 6981 1 #> 1216 22266 7268 1 #> 1217 22007 6890 1 #> 1218 NA 7782 0 #> 1219 21417 6517 2 #> 1220 NA 7884 0 #> 1221 20061 5321 3 #> 1222 18887 4921 4 #> 1223 16029 1832 7 #> 1224 20828 5877 2 #> 1225 18710 3888 5 #> 1226 22042 7067 1 #> 1227 NA 7785 0 #> 1228 NA 7883 0 #> 1229 NA 7702 0 #> 1230 NA 7645 0 #> 1231 NA 7881 0 #> 1232 NA 8062 0 #> 1233 13730 1031 9 #> 1234 20895 6008 2 #> 1235 15131 1521 8 #> 1236 19977 5087 3 #> 1237 2593 96 16 #> 1238 16245 1979 7 #> 1239 21841 6804 1 #> 1240 20089 5142 3 #> 1241 21220 6317 2 #> 1242 20984 6153 2 #> 1243 21823 6963 1 #> 1244 19045 4199 4 #> 1245 21802 6828 1 #> 1246 NA 7572 0 #> 1247 3061 111 15 #> 1248 20952 6139 2 #> 1249 22477 7502 1 #> 1250 21798 7050 1 #> 1251 20893 5957 2 #> 1252 18000 3239 5 #> 1253 19491 4602 4 #> 1254 21420 6469 1 #> 1255 NA 8090 0 #> 1256 13227 928 10 #> 1257 16470 2133 7 #> 1258 21526 6540 2 #> 1259 21169 6239 2 #> 1260 21708 6763 1 #> 1261 NA 7521 0 #> 1262 20398 5323 3 #> 1263 NA 7885 0 #> 1264 NA 7540 0 #> 1265 20145 5185 3 #> 1266 19976 5086 3 #> 1267 21115 6223 2 #> 1268 16802 2346 6 #> 1269 NA 7573 0 #> 1270 NA 7886 0 #> 1271 17955 3194 5 #> 1272 22061 7052 1 #> 1273 20840 5883 2 #> 1274 16283 2008 7 #> 1275 21116 6222 2 #> 1276 18903 4057 4 #> 1277 18029 3268 5 #> 1278 19062 4216 4 #> 1279 20219 5520 3 #> 1280 20028 5328 3 #> 1281 21920 6940 1 #> 1282 16370 2067 7 #> 1283 19866 5036 3 #> 1284 16078 1864 7 #> 1285 20513 5662 3 #> 1286 20032 5344 3 #> 1287 20217 5519 3 #> 1288 18963 4117 4 #> 1289 17943 3182 5 #> 1290 20901 5934 2 #> 1291 18012 3251 5 #> 1292 18932 4086 4 #> 1293 19498 4608 1 #> 1294 22241 7240 0 #> 1295 NA 7799 0 #> 1296 22054 6795 1 #> 1297 19099 4253 4 #> 1298 22273 7276 1 #> 1299 19019 4173 4 #> 1300 17997 3236 5 #> 1301 18215 3451 5 #> 1302 NA 7821 0 #> 1303 19225 4368 4 #> 1304 19999 5378 3 #> 1305 17145 2677 6 #> 1306 18124 3363 5 #> 1307 18956 4110 4 #> 1308 13977 1103 9 #> 1309 16492 2147 7 #> 1310 21879 6900 1 #> 1311 19978 5088 3 #> 1312 16690 2277 7 #> 1313 20338 5646 3 #> 1314 16133 1905 7 #> 1315 NA 8071 0 #> 1316 19309 4448 4 #> 1317 11120 548 11 #> 1318 16429 2105 7 #> 1319 20761 6084 2 #> 1320 19055 4209 4 #> 1321 15583 1702 8 #> 1322 19894 5027 3 #> 1323 16681 2270 7 #> 1324 NA 8014 0 #> 1325 20936 6150 2 #> 1326 NA 8015 0 #> 1327 18087 3326 5 #> 1328 12764 808 10 #> 1329 16173 1934 7 #> 1330 22359 7371 1 #> 1331 20813 5901 2 #> 1332 19042 4196 4 #> 1333 17918 3159 5 #> 1334 21947 7115 1 #> 1335 19552 4654 4 #> 1336 NA 7585 0 #> 1337 18857 4017 4 #> 1338 12831 827 10 #> 1339 18123 3362 5 #> 1340 20566 5536 3 #> 1341 13337 956 10 #> 1342 14917 1387 8 #> 1343 20128 5170 3 #> 1344 20318 5271 3 #> 1345 16847 2391 6 #> 1346 21856 7005 1 #> 1347 18132 3371 5 #> 1348 20138 5203 2 #> 1349 19335 4468 4 #> 1350 19903 5032 3 #> 1351 NA 7568 0 #> 1352 20069 5094 3 #> 1353 19304 4443 4 #> 1354 22475 7499 1 #> 1355 18971 4125 4 #> 1356 18030 3269 5 #> 1357 19937 5007 3 #> 1358 20376 5293 3 #> 1359 NA 7569 0 #> 1360 18197 3433 5 #> 1361 16837 2381 6 #> 1362 19569 4670 4 #> 1363 16568 2197 7 #> 1364 16232 1971 7 #> 1365 19864 5013 3 #> 1366 11565 627 11 #> 1367 NA 7545 0 #> 1368 17948 3187 5 #> 1369 18131 3370 5 #> 1370 20604 5674 3 #> 1371 16312 2029 7 #> 1372 21001 6128 2 #> 1373 15151 1536 8 #> 1374 21530 6645 2 #> 1375 20164 5214 3 #> 1376 22139 7133 1 #> 1377 19287 4427 4 #> 1378 20961 6143 2 #> 1379 20991 6152 2 #> 1380 16876 2420 6 #> 1381 19948 5382 3 #> 1382 22109 7044 1 #> 1383 20492 5445 3 #> 1384 18623 3808 5 #> 1385 NA 7825 0 #> 1386 17989 3228 5 #> 1387 22371 7385 0 #> 1388 NA 7633 0 #> 1389 19879 5058 3 #> 1390 19117 4271 4 #> 1391 19105 4259 4 #> 1392 NA 7649 0 #> 1393 21022 5971 2 #> 1394 15092 1494 8 #> 1395 22279 7283 1 #> 1396 19878 5057 3 #> 1397 18244 3479 5 #> 1398 22278 7281 1 #> 1399 20169 5191 3 #> 1400 19014 4168 4 #> 1401 21871 6893 1 #> 1402 19966 5077 3 #> 1403 17933 3172 5 #> 1404 22030 7118 1 #> 1405 22112 7062 1 #> 1406 20149 5189 3 #> 1407 21478 6430 2 #> 1408 19872 5016 3 #> 1409 19852 4990 3 #> 1410 NA 8006 0 #> 1411 20023 5345 3 #> 1412 14377 1193 8 #> 1413 20428 5450 3 #> 1414 20897 5944 2 #> 1415 NA 8007 0 #> 1416 22140 7134 1 #> 1417 20015 5331 2 #> 1418 21117 6218 2 #> 1419 20024 5346 3 #> 1420 18381 3598 5 #> 1421 16895 2438 6 #> 1422 NA 7758 0 #> 1423 19857 5060 3 #> 1424 17743 3038 6 #> 1425 19164 4313 4 #> 1426 19831 4970 3 #> 1427 19118 4272 4 #> 1428 19011 4165 4 #> 1429 15046 1464 8 #> 1430 19031 4185 4 #> 1431 19419 4540 4 #> 1432 19187 4331 4 #> 1433 NA 7583 0 #> 1434 18897 4051 3 #> 1435 16907 2450 6 #> 1436 22261 7262 1 #> 1437 17920 3161 5 #> 1438 21820 6823 1 #> 1439 NA 7551 0 #> 1440 19912 5347 3 #> 1441 19979 5100 3 #> 1442 21792 7038 1 #> 1443 21682 6813 1 #> 1444 20740 6072 1 #> 1445 18998 4152 4 #> 1446 17972 3211 5 #> 1447 21789 7048 1 #> 1448 22277 7280 1 #> 1449 NA 7602 0 #> 1450 NA 8095 0 #> 1451 20020 5117 3 #> 1452 20083 5156 3 #> 1453 15602 1706 8 #> 1454 18900 4054 4 #> 1455 21796 7404 1 #> 1456 22458 7483 1 #> 1457 21959 6985 1 #> 1458 21005 5880 2 #> 1459 22276 7279 1 #> 1460 21761 6879 1 #> 1461 NA 7944 0 #> 1462 16919 2462 6 #> 1463 19595 4937 1 #> 1464 21349 6427 2 #> 1465 20829 6045 2 #> 1466 19172 4319 4 #> 1467 14005 1110 9 #> 1468 NA 8005 0 #> 1469 NA 7548 0 #> 1470 21744 6819 1 #> 1471 18986 4140 4 #> 1472 NA 7736 0 #> 1473 21175 6244 2 #> 1474 NA 8012 0 #> 1475 18929 4083 4 #> 1476 22052 6791 1 #> 1477 22250 7250 1 #> 1478 NA 8011 0 #> 1479 22141 7138 1 #> 1480 NA 7667 0 #> 1481 20460 5479 3 #> 1482 18321 3550 5 #> 1483 21928 7053 1 #> 1484 19069 4223 4 #> 1485 21281 6416 2 #> 1486 NA 7698 0 #> 1487 18955 4109 4 #> 1488 19026 4180 4 #> 1489 NA 7519 0 #> 1490 17978 3217 5 #> 1491 19846 4975 3 #> 1492 17993 3232 5 #> 1493 NA 7719 0 #> 1494 20737 5840 2 #> 1495 18292 3526 5 #> 1496 18959 4113 4 #> 1497 16877 2421 6 #> 1498 15029 1453 8 #> 1499 20269 5532 3 #> 1500 22285 7289 1 #> 1501 NA 8010 0 #> 1502 16793 2337 6 #> 1503 19508 4617 4 #> 1504 21869 6972 1 #> 1505 NA 7731 0 #> 1506 17139 2671 6 #> 1507 22006 7000 1 #> 1508 21974 6997 1 #> 1509 21109 6214 2 #> 1510 20736 5993 2 #> 1511 16888 2432 6 #> 1512 NA 8009 0 #> 1513 21888 6800 1 #> 1514 20026 5315 3 #> 1515 17925 3166 5 #> 1516 22291 7295 1 #> 1517 20928 5926 2 #> 1518 16828 2372 6 #> 1519 16560 2192 7 #> 1520 16264 1993 7 #> 1521 22012 7060 1 #> 1522 16259 1988 7 #> 1523 20457 5476 3 #> 1524 22454 7479 1 #> 1525 22444 7469 1 #> 1526 21573 6674 2 #> 1527 NA 7657 0 #> 1528 19938 5313 3 #> 1529 20777 6028 2 #> 1530 18910 4064 4 #> 1531 20960 6121 2 #> 1532 20063 5314 3 #> 1533 21814 7084 1 #> 1534 NA 7523 0 #> 1535 20880 6011 2 #> 1536 18973 4127 4 #> 1537 20904 6068 2 #> 1538 22441 7466 1 #> 1539 16668 2257 7 #> 1540 NA 7543 0 #> 1541 21970 6955 1 #> 1542 19626 4718 4 #> 1543 22374 7388 0 #> 1544 16933 2476 6 #> 1545 20196 5194 2 #> 1546 NA 7842 0 #> 1547 17762 3048 6 #> 1548 22284 7288 1 #> 1549 22138 7131 1 #> 1550 11196 559 11 #> 1551 19044 4198 4 #> 1552 20775 5977 2 #> 1553 18540 3730 5 #> 1554 13870 1067 9 #> 1555 22311 7319 1 #> 1556 18039 3278 5 #> 1557 19793 4895 1 #> 1558 NA 8008 0 #> 1559 22283 7287 1 #> 1560 16790 2334 6 #> 1561 17914 3155 5 #> 1562 15215 1567 8 #> 1563 21697 6814 1 #> 1564 19816 4951 3 #> 1565 NA 8013 0 #> 1566 NA 7789 0 #> 1567 21730 6857 1 #> 1568 21253 6362 1 #> 1569 18164 3403 5 #> 1570 20175 5234 0 #> 1571 22034 7298 1 #> 1572 22149 7147 1 #> 1573 20754 6014 2 #> 1574 20050 5508 3 #> 1575 20204 5493 3 #> 1576 21020 5852 2 #> 1577 NA 8004 0 #> 1578 NA 8048 0 #> 1579 18134 3373 5 #> 1580 20965 6145 2 #> 1581 19847 4982 3 #> 1582 NA 7513 0 #> 1583 19939 5329 3 #> 1584 16303 2022 7 #> 1585 21934 7117 1 #> 1586 NA 8000 0 #> 1587 NA 8003 0 #> 1588 21919 7304 1 #> 1589 NA 7999 0 #> 1590 15226 1576 8 #> 1591 15228 1578 8 #> 1592 21225 6321 2 #> 1593 NA 7700 0 #> 1594 18919 4073 4 #> 1595 16824 2368 6 #> 1596 20189 5218 3 #> 1597 22095 6958 1 #> 1598 NA 8001 0 #> 1599 22185 7183 1 #> 1600 20934 6177 2 #> 1601 22452 7477 1 #> 1602 22295 7301 1 #> 1603 17981 3220 5 #> 1604 19880 5035 3 #> 1605 18331 3558 5 #> 1606 16928 2471 6 #> 1607 16215 1961 7 #> 1608 19073 4227 4 #> 1609 19905 5033 3 #> 1610 NA 7998 0 #> 1611 21984 7023 1 #> 1612 16364 2062 7 #> 1613 20498 5576 3 #> 1614 20096 5149 3 #> 1615 21379 6551 2 #> 1616 NA 7648 0 #> 1617 22296 7302 1 #> 1618 15917 1785 8 #> 1619 20633 5737 3 #> 1620 19596 4693 4 #> 1621 15115 1509 8 #> 1622 16293 2014 7 #> 1623 18008 3247 5 #> 1624 21129 6292 2 #> 1625 NA 7644 0 #> 1626 NA 7777 0 #> 1627 15647 1722 9 #> 1628 22018 6883 1 #> 1629 19814 4948 3 #> 1630 20576 5575 0 #> 1631 21230 6568 2 #> 1632 22300 7307 1 #> 1633 21816 6898 1 #> 1634 18890 4046 4 #> 1635 2405 89 13 #> 1636 NA 8002 0 #> 1637 21372 6522 1 #> 1638 16510 2161 7 #> 1639 20964 6178 2 #> 1640 19109 4263 4 #> 1641 21634 6753 2 #> 1642 20500 5549 3 #> 1643 21769 6820 1 #> 1644 21998 7297 1 #> 1645 22020 6859 1 #> 1646 NA 7828 0 #> 1647 15048 1466 8 #> 1648 16878 2422 6 #> 1649 19494 4605 4 #> 1650 20563 5465 3 #> 1651 18047 3286 5 #> 1652 NA 7541 0 #> 1653 22235 7234 1 #> 1654 20496 5548 1 #> 1655 22312 7320 1 #> 1656 18974 4128 4 #> 1657 21383 6665 2 #> 1658 19917 5310 3 #> 1659 20788 5917 2 #> 1660 19981 5102 3 #> 1661 21576 6677 1 #> 1662 21513 6519 2 #> 1663 21966 7092 1 #> 1664 21381 6524 1 #> 1665 19358 4489 4 #> 1666 21382 6617 1 #> 1667 20150 5199 3 #> 1668 18082 3321 5 #> 1669 19359 4928 1 #> 1670 19361 4491 4 #> 1671 19941 5304 3 #> 1672 20861 5914 2 #> 1673 18577 3765 5 #> 1674 17919 3160 5 #> 1675 20570 5526 3 #> 1676 20203 5492 3 #> 1677 22335 7347 1 #> 1678 22336 7348 1 #> 1679 20510 5740 0 #> 1680 NA 8078 0 #> 1681 NA 8065 0 #> 1682 NA 7712 0 #> 1683 NA 7916 0 #> 1684 NA 7914 0 #> 1685 21131 6301 2 #> 1686 21937 6968 1 #> 1687 20919 5882 2 #> 1688 21588 6687 2 #> 1689 22190 7188 1 #> 1690 21935 7046 1 #> 1691 22337 7349 1 #> 1692 21922 7036 1 #> 1693 21581 6682 2 #> 1694 22197 7195 1 #> 1695 22332 7344 1 #> 1696 NA 7817 0 #> 1697 20154 5173 1 #> 1698 22329 7341 1 #> 1699 20764 5981 2 #> 1700 19985 5073 3 #> 1701 16618 2227 7 #> 1702 17979 3218 5 #> 1703 NA 7722 0 #> 1704 21299 6391 1 #> 1705 22330 7342 1 #> 1706 21298 6390 2 #> 1707 NA 8063 0 #> 1708 19851 4989 3 #> 1709 19530 4933 1 #> 1710 22123 7095 1 #> 1711 20769 6083 2 #> 1712 19926 5300 3 #> 1713 NA 8064 0 #> 1714 21709 6764 1 #> 1715 NA 7945 0 #> 1716 21332 6353 2 #> 1717 NA 7672 0 #> 1718 19987 5075 3 #> 1719 17935 3174 5 #> 1720 19986 5074 3 #> 1721 20068 5307 3 #> 1722 20808 6076 2 #> 1723 22334 7346 1 #> 1724 21903 6837 1 #> 1725 20030 5306 3 #> 1726 22013 7263 1 #> 1727 21484 6461 2 #> 1728 19984 5072 3 #> 1729 20527 5429 3 #> 1730 19895 5014 3 #> 1731 16818 2362 6 #> 1732 21330 6426 2 #> 1733 20747 5904 2 #> 1734 NA 8016 0 #> 1735 NA 7873 0 #> 1736 21983 6944 1 #> 1737 20533 5454 3 #> 1738 20752 5948 2 #> 1739 NA 7872 0 #> 1740 20913 6067 2 #> 1741 5099 202 15 #> 1742 20512 5721 3 #> 1743 22292 7296 1 #> 1744 14409 1202 9 #> 1745 20703 5806 3 #> 1746 21562 6595 2 #> 1747 9038 421 12 #> 1748 21819 7335 1 #> 1749 NA 8077 0 #> 1750 21688 6938 1 #> 1751 21855 6988 1 #> 1752 21839 7088 1 #> 1753 20798 5916 2 #> 1754 NA 7771 0 #> 1755 21678 6926 1 #> 1756 NA 7703 0 #> 1757 18032 3271 5 #> 1758 21770 7378 1 #> 1759 21032 6081 2 #> 1760 19165 4314 4 #> 1761 14871 1352 8 #> 1762 NA 7915 0 #> 1763 17596 6779 0 #> 1764 NA 7874 0 #> 1765 NA 7757 0 #> 1766 20525 5427 1 #> 1767 21739 6853 1 #> 1768 21725 7009 1 #> 1769 22327 7339 1 #> 1770 3943 147 13 #> 1771 18882 4039 4 #> 1772 21335 6384 1 #> 1773 20678 5772 1 #> 1774 NA 7562 0 #> 1775 16481 2141 7 #> 1776 19561 4662 1 #> 1777 20721 5827 2 #> 1778 20434 5416 3 #> 1779 NA 7655 0 #> 1780 18332 3559 5 #> 1781 19560 4661 4 #> 1782 22323 7331 1 #> 1783 22325 7333 1 #> 1784 13018 869 10 #> 1785 21187 6254 2 #> 1786 20733 5881 2 #> 1787 NA 7939 0 #> 1788 21939 7069 1 #> 1789 NA 7763 0 #> 1790 NA 8093 0 #> 1791 19837 4971 3 #> 1792 22316 7324 1 #> 1793 NA 7721 0 #> 1794 17915 3156 5 #> 1795 22317 7325 1 #> 1796 20153 5232 0 #> 1797 20967 6129 2 #> 1798 11302 579 11 #> 1799 16976 2517 6 #> 1800 20617 5696 3 #> 1801 NA 7931 0 #> 1802 22319 7327 1 #> 1803 19881 5063 3 #> 1804 21130 6300 2 #> 1805 NA 8072 0 #> 1806 NA 7934 0 #> 1807 22310 7318 1 #> 1808 20144 5230 3 #> 1809 20717 5823 2 #> 1810 NA 7933 0 #> 1811 20968 6141 2 #> 1812 NA 7936 0 #> 1813 19940 5348 3 #> 1814 21985 6811 1 #> 1815 20297 5673 3 #> 1816 NA 8075 0 #> 1817 19859 5061 3 #> 1818 22321 7329 1 #> 1819 20750 5978 2 #> 1820 NA 7807 0 #> 1821 18016 3255 5 #> 1822 21102 6204 2 #> 1823 NA 7940 0 #> 1824 14010 1112 11 #> 1825 22318 7326 1 #> 1826 22315 7323 1 #> 1827 14890 1368 8 #> 1828 16198 1949 7 #> 1829 19983 5104 3 #> 1830 NA 7937 0 #> 1831 NA 7932 0 #> 1832 20499 5577 3 #> 1833 NA 7639 0 #> 1834 NA 7831 0 #> 1835 21110 6213 2 #> 1836 19486 4598 4 #> 1837 11385 596 11 #> 1838 21162 6458 2 #> 1839 18151 3390 5 #> 1840 17118 2650 6 #> 1841 NA 8087 0 #> 1842 19564 4665 1 #> 1843 9902 490 12 #> 1844 20953 6185 2 #> 1845 21681 6797 1 #> 1846 21776 7045 1 #> 1847 19562 4663 4 #> 1848 21826 7316 1 #> 1849 NA 7574 0 #> 1850 20064 5131 3 #> 1851 NA 8074 0 #> 1852 NA 7938 0 #> 1853 NA 7554 0 #> 1854 20905 6074 1 #> 1855 21158 6233 2 #> 1856 8534 367 12 #> 1857 18262 3496 5 #> 1858 19704 4941 1 #> 1859 22433 7455 1 #> 1860 20838 6063 2 #> 1861 21178 6247 2 #> 1862 15076 1479 8 #> 1863 21758 6866 1 #> 1864 NA 7670 0 #> 1865 NA 8076 0 #> 1866 20052 5126 3 #> 1867 NA 7935 0 #> 1868 21718 6913 1 #> 1869 21448 6421 2 #> 1870 18914 4068 4 #> 1871 NA 7774 0 #> 1872 17982 3221 5 #> 1873 21239 6333 2 #> 1874 NA 7823 0 #> 1875 22089 6896 1 #> 1876 17651 3022 6 #> 1877 18095 3334 4 #> 1878 22045 6840 1 #> 1879 19284 4424 4 #> 1880 20887 5853 2 #> 1881 14285 1175 9 #> 1882 20833 5951 2 #> 1883 18982 4136 4 #> 1884 16457 2122 7 #> 1885 NA 8047 0 #> 1886 14983 1423 8 #> 1887 NA 7994 0 #> 1888 21190 6257 2 #> 1889 22413 7434 1 #> 1890 NA 7659 0 #> 1891 NA 7701 0 #> 1892 20642 5736 3 #> 1893 20731 5860 2 #> 1894 17952 3191 5 #> 1895 NA 7677 0 #> 1896 17995 3234 5 #> 1897 16952 2493 6 #> 1898 20757 5842 2 #> 1899 NA 7676 0 #> 1900 17999 3238 5 #> 1901 20346 5470 3 #> 1902 21015 5991 2 #> 1903 21128 6272 2 #> 1904 NA 7991 0 #> 1905 18065 3304 5 #> 1906 22448 7473 0 #> 1907 16637 2237 7 #> 1908 15090 1492 8 #> 1909 18904 4058 4 #> 1910 20380 5615 3 #> 1911 20469 5393 3 #> 1912 11514 619 11 #> 1913 20819 6109 2 #> 1914 20415 5355 1 #> 1915 19313 4925 1 #> 1916 22031 6875 1 #> 1917 19989 5095 3 #> 1918 22320 7328 1 #> 1919 19310 4449 4 #> 1920 22303 7311 1 #> 1921 18035 3274 5 #> 1922 NA 7995 0 #> 1923 21932 6990 1 #> 1924 17951 3190 5 #> 1925 18559 3747 5 #> 1926 21010 6020 2 #> 1927 19051 4205 4 #> 1928 19567 4668 4 #> 1929 22306 7313 1 #> 1930 20249 5461 3 #> 1931 19778 4876 1 #> 1932 11664 647 16 #> 1933 18028 3267 5 #> 1934 21012 6110 2 #> 1935 17014 2554 6 #> 1936 16827 2371 6 #> 1937 15374 1639 8 #> 1938 20137 5202 3 #> 1939 19888 5065 3 #> 1940 22471 7497 1 #> 1941 20825 6004 2 #> 1942 5274 207 15 #> 1943 NA 7636 0 #> 1944 19840 4986 3 #> 1945 11289 578 11 #> 1946 NA 7997 0 #> 1947 21516 6555 2 #> 1948 22218 7215 1 #> 1949 16311 2028 7 #> 1950 22364 7376 1 #> 1951 19475 4588 4 #> 1952 19029 4183 4 #> 1953 16763 2307 6 #> 1954 20012 5112 3 #> 1955 20824 5850 2 #> 1956 18003 3242 5 #> 1957 NA 7951 0 #> 1958 18690 3868 5 #> 1959 15126 1517 8 #> 1960 NA 7993 0 #> 1961 NA 7990 0 #> 1962 NA 7992 0 #> 1963 21719 7308 1 #> 1964 NA 7624 0 #> 1965 16954 2495 6 #> 1966 16964 2505 6 #> 1967 15640 1718 9 #> 1968 18642 3824 5 #> 1969 20884 5985 2 #> 1970 19131 4285 3 #> 1971 21694 6789 1 #> 1972 20182 5223 3 #> 1973 20079 5139 3 #> 1974 NA 7989 0 #> 1975 16640 2238 7 #> 1976 18926 4080 4 #> 1977 18257 3492 4 #> 1978 20924 5955 2 #> 1979 19811 4942 3 #> 1980 21736 6870 1 #> 1981 NA 7996 0 #> 1982 21072 6032 2 #> 1983 16141 1911 7 #> 1984 19377 4505 4 #> 1985 18205 3441 5 #> 1986 19557 4658 4 #> 1987 NA 7912 0 #> 1988 16788 2332 6 #> 1989 17008 2548 5 #> 1990 NA 7924 0 #> 1991 21517 6639 2 #> 1992 22064 6974 1 #> 1993 16808 2352 6 #> 1994 8550 368 12 #> 1995 21192 6258 2 #> 1996 18178 3416 5 #> 1997 17976 3215 5 #> 1998 17037 2572 6 #> 1999 22362 7374 1 #> 2000 NA 7666 0 #> 2001 21927 6911 1 #> 2002 22072 6817 1 #> 2003 20665 5759 3 #> 2004 21878 6861 1 #> 2005 22344 7356 1 #> 2006 17958 3197 5 #> 2007 21892 6830 1 #> 2008 20854 5945 2 #> 2009 21098 6197 2 #> 2010 20051 5297 3 #> 2011 21868 6999 1 #> 2012 15194 1553 8 #> 2013 20983 6120 2 #> 2014 21412 6534 2 #> 2015 19275 4415 4 #> 2016 NA 7925 0 #> 2017 22062 6831 1 #> 2018 NA 7926 0 #> 2019 18436 3645 5 #> 2020 NA 7923 0 #> 2021 20033 5119 3 #> 2022 16804 2348 6 #> 2023 20971 6183 2 #> 2024 19132 4286 4 #> 2025 18991 4145 4 #> 2026 18945 4099 4 #> 2027 19538 4643 4 #> 2028 19923 5003 3 #> 2029 20724 5830 2 #> 2030 22463 7489 1 #> 2031 19882 5056 3 #> 2032 18130 3369 5 #> 2033 NA 7635 0 #> 2034 18545 3734 5 #> 2035 22472 7498 1 #> 2036 21988 7043 1 #> 2037 17566 3017 6 #> 2038 15077 1480 8 #> 2039 21943 7041 1 #> 2040 19036 4190 4 #> 2041 22037 6971 1 #> 2042 21065 5898 2 #> 2043 20858 5868 2 #> 2044 19240 4383 4 #> 2045 NA 7773 0 #> 2046 21949 6821 1 #> 2047 NA 7660 0 #> 2048 20392 5430 3 #> 2049 17286 2818 7 #> 2050 18018 3257 5 #> 2051 21677 6768 1 #> 2052 22160 7159 1 #> 2053 21211 6311 2 #> 2054 21843 6918 1 #> 2055 20768 5980 2 #> 2056 NA 7539 0 #> 2057 20935 6167 2 #> 2058 17053 2588 6 #> 2059 18161 3400 5 #> 2060 19219 4362 4 #> 2061 NA 8088 0 #> 2062 NA 8089 0 #> 2063 19943 5008 3 #> 2064 18931 4085 4 #> 2065 NA 8039 0 #> 2066 21531 6529 2 #> 2067 21256 6365 2 #> 2068 19853 4993 3 #> 2069 NA 7535 0 #> 2070 16308 2025 7 #> 2071 22339 7351 1 #> 2072 NA 7526 0 #> 2073 NA 7580 0 #> 2074 21962 7109 1 #> 2075 19023 4177 4 #> 2076 18103 3342 5 #> 2077 16775 2319 6 #> 2078 16253 1984 7 #> 2079 21743 6909 1 #> 2080 20250 5250 3 #> 2081 17916 3157 5 #> 2082 NA 7616 0 #> 2083 19098 4252 4 #> 2084 20988 6148 2 #> 2085 22001 7338 1 #> 2086 21038 5855 2 #> 2087 22048 6871 1 #> 2088 NA 7715 0 #> 2089 19994 5091 3 #> 2090 22290 7294 1 #> 2091 22053 6961 1 #> 2092 22058 6842 1 #> 2093 16407 2091 7 #> 2094 17985 3224 5 #> 2095 21238 6332 2 #> 2096 16930 2473 6 #> 2097 19422 4543 3 #> 2098 13415 972 10 #> 2099 21036 5921 2 #> 2100 19084 4238 4 #> 2101 22353 7366 1 #> 2102 21929 6901 1 #> 2103 14461 1213 9 #> 2104 22453 7478 1 #> 2105 16849 2393 6 #> 2106 20162 5212 3 #> 2107 NA 7710 0 #> 2108 18143 3382 5 #> 2109 NA 7674 0 #> 2110 19911 5333 3 #> 2111 21893 6874 1 #> 2112 21040 5954 2 #> 2113 21909 6868 1 #> 2114 11414 605 11 #> 2115 21894 6858 1 #> 2116 NA 7797 0 #> 2117 NA 8036 0 #> 2118 18938 4092 4 #> 2119 14894 1372 8 #> 2120 18481 3681 5 #> 2121 NA 7919 0 #> 2122 20975 6186 2 #> 2123 22346 7358 1 #> 2124 18652 3832 5 #> 2125 22155 7153 1 #> 2126 NA 7922 0 #> 2127 18231 3467 5 #> 2128 20325 5272 3 #> 2129 NA 7673 0 #> 2130 20944 6176 2 #> 2131 16806 2350 6 #> 2132 NA 7921 0 #> 2133 NA 7920 0 #> 2134 22352 7364 1 #> 2135 19018 4172 3 #> 2136 18015 3254 5 #> 2137 21011 5979 2 #> 2138 16496 2151 7 #> 2139 21994 6941 1 #> 2140 19820 4956 1 #> 2141 NA 7917 0 #> 2142 15646 1721 9 #> 2143 20930 5887 2 #> 2144 NA 7675 0 #> 2145 16061 1852 7 #> 2146 19898 5062 3 #> 2147 21018 6114 2 #> 2148 21993 6922 1 #> 2149 18315 3545 5 #> 2150 19883 5047 3 #> 2151 NA 7631 0 #> 2152 20969 6158 2 #> 2153 22179 7177 1 #> 2154 8679 385 12 #> 2155 NA 8035 0 #> 2156 21046 6111 2 #> 2157 14252 1166 9 #> 2158 19266 4406 1 #> 2159 20037 5120 3 #> 2160 21812 6892 1 #> 2161 NA 7581 0 #> 2162 20326 5273 1 #> 2163 16815 2359 6 #> 2164 19924 5004 3 #> 2165 NA 7918 0 #> 2166 18872 4029 4 #> 2167 20868 5987 2 #> 2168 NA 7720 0 #> 2169 22136 7129 1 #> 2170 21161 6279 2 #> 2171 20949 6126 2 #> 2172 NA 8041 0 #> 2173 19988 5133 3 #> 2174 NA 7943 0 #> 2175 NA 7559 0 #> 2176 20582 5570 3 #> 2177 NA 7558 0 #> 2178 20447 5401 1 #> 2179 NA 7550 0 #> 2180 21714 7066 1 #> 2181 15534 1689 8 #> 2182 NA 7578 0 #> 2183 20836 6088 2 #> 2184 NA 7552 0 #> 2185 18992 4146 4 #> 2186 22345 7357 1 #> 2187 21685 6794 1 #> 2188 17443 2961 6 #> 2189 16671 2260 7 #> 2190 13761 1043 9 #> 2191 20822 6025 2 #> 2192 20986 6127 2 #> 2193 18149 3388 5 #> 2194 14469 1216 9 #> 2195 21926 6872 1 #> 2196 22047 6946 1 #> 2197 19123 4277 4 #> 2198 21463 6476 2 #> 2199 15208 1565 8 #> 2200 21229 6324 2 #> 2201 18177 3415 5 #> 2202 10978 518 11 #> 2203 16724 2287 7 #> 2204 NA 7805 0 #> 2205 20167 5193 3 #> 2206 19511 4619 4 #> 2207 19020 4174 4 #> 2208 20995 6133 2 #> 2209 16854 2398 6 #> 2210 19261 4402 4 #> 2211 20637 5727 3 #> 2212 NA 7664 0 #> 2213 16851 2395 6 #> 2214 18978 4132 4 #> 2215 22356 7369 1 #> 2216 14743 1288 10 #> 2217 15204 1562 8 #> 2218 19053 4207 4 #> 2219 21013 6006 2 #> 2220 18114 3353 5 #> 2221 21100 6202 2 #> 2222 11694 650 14 #> 2223 22134 7121 1 #> 2224 17962 3201 5 #> 2225 NA 8040 0 #> 2226 20784 5990 2 #> 2227 21898 6848 1 #> 2228 NA 7514 0 #> 2229 17192 2724 6 #> 2230 22137 7130 1 #> 2231 21889 6921 1 #> 2232 16467 2130 7 #> 2233 NA 7814 0 #> 2234 18936 4090 4 #> 2235 19286 4426 4 #> 2236 19944 5318 3 #> 2237 13748 1037 9 #> 2238 NA 7688 0 #> 2239 18064 3303 5 #> 2240 16926 2469 6 #> 2241 NA 7615 1 #> 2242 21262 6597 2 #> 2243 15960 1788 7 #> 2244 20643 5715 3 #> 2245 18494 3692 5 #> 2246 22145 7142 1 #> 2247 21950 7126 1 #> 2248 16199 1950 7 #> 2249 16892 2435 6 #> 2250 21004 5891 2 #> 2251 20047 5349 3 #> 2252 22038 7123 1 #> 2253 18137 3376 5 #> 2254 19848 4977 3 #> 2255 18044 3283 5 #> 2256 17003 2543 6 #> 2257 NA 7798 0 #> 2258 21017 6093 2 #> 2259 13320 954 10 #> 2260 8358 345 12 #> 2261 NA 7527 0 #> 2262 20954 6136 2 #> 2263 16056 1848 7 #> 2264 19828 4962 3 #> 2265 16557 2189 7 #> 2266 20790 5890 2 #> 2267 NA 7611 0 #> 2268 13741 1034 9 #> 2269 21837 6973 1 #> 2270 8353 343 12 #> 2271 17975 3214 5 #> 2272 19973 5092 3 #> 2273 21808 7082 1 #> 2274 18990 4144 4 #> 2275 17415 2944 6 #> 2276 21771 6956 1 #> 2277 20974 6164 2 #> 2278 22437 7460 1 #> 2279 19198 4342 4 #> 2280 19318 4454 4 #> 2281 NA 7546 0 #> 2282 20876 5947 2 #> 2283 21749 7458 1 #> 2284 18717 3895 5 #> 2285 16798 2342 6 #> 2286 20375 5292 3 #> 2287 21601 6699 2 #> 2288 22417 7438 1 #> 2289 16781 2325 6 #> 2290 7651 312 13 #> 2291 20792 5878 2 #> 2292 20072 5316 3 #> 2293 11493 617 11 #> 2294 NA 7669 0 #> 2295 NA 7953 0 #> 2296 NA 7910 0 #> 2297 20339 5647 3 #> 2298 18469 3669 5 #> 2299 NA 7907 0 #> 2300 18905 4059 4 #> 2301 18190 3426 5 #> 2302 13886 1076 9 #> 2303 16839 2383 6 #> 2304 20559 5452 3 #> 2305 NA 7908 0 #> 2306 15576 1700 8 #> 2307 13135 908 10 #> 2308 NA 8049 0 #> 2309 18937 4091 4 #> 2310 22363 7375 1 #> 2311 18004 3243 5 #> 2312 20766 5893 2 #> 2313 20674 5767 3 #> 2314 19992 5084 3 #> 2315 18453 3659 4 #> 2316 16105 1885 6 #> 2317 NA 7629 0 #> 2318 13338 957 10 #> 2319 18796 4916 1 #> 2320 16970 2511 6 #> 2321 19835 4965 3 #> 2322 20776 5912 2 #> 2323 18960 4114 4 #> 2324 21899 7018 1 #> 2325 21422 6627 2 #> 2326 21507 6510 2 #> 2327 19005 4159 4 #> 2328 19946 5311 3 #> 2329 20815 6026 2 #> 2330 NA 8037 0 #> 2331 18042 3281 5 #> 2332 20948 6188 2 #> 2333 19072 4226 4 #> 2334 22216 7213 1 #> 2335 18645 3827 5 #> 2336 14463 1214 9 #> 2337 18478 3678 5 #> 2338 15854 4958 8 #> 2339 18670 3849 5 #> 2340 NA 7913 0 #> 2341 20787 5952 2 #> 2342 13810 1052 9 #> 2343 21907 6815 1 #> 2344 22198 7196 1 #> 2345 NA 7647 0 #> 2346 21134 6302 2 #> 2347 16885 2429 6 #> 2348 21445 6611 2 #> 2349 20031 5343 3 #> 2350 5377 212 16 #> 2351 18704 3882 5 #> 2352 19370 4499 1 #> 2353 14585 1243 9 #> 2354 20518 5598 0 #> 2355 21164 6564 2 #> 2356 22043 7010 1 #> 2357 NA 7906 0 #> 2358 16774 2318 6 #> 2359 21424 6635 2 #> 2360 22036 6816 1 #> 2361 20869 5875 2 #> 2362 18066 3305 5 #> 2363 NA 7911 0 #> 2364 15116 1510 8 #> 2365 NA 7792 0 #> 2366 20333 5571 0 #> 2367 18117 3356 5 #> 2368 16086 1870 7 #> 2369 18922 4076 4 #> 2370 15193 1552 8 #> 2371 22442 7467 1 #> 2372 NA 7909 0 #> 2373 16762 2306 6 #> 2374 NA 7589 0 #> 2375 19238 4381 4 #> 2376 17009 2549 6 #> 2377 16855 2399 6 #> 2378 21774 6984 1 #> 2379 16524 2168 7 #> 2380 18878 4035 4 #> 2381 21194 6259 1 #> 2382 15071 1476 8 #> 2383 18152 3391 5 #> 2384 9196 444 12 #> 2385 NA 7733 0 #> 2386 21786 6869 1 #> 2387 18019 3258 5 #> 2388 NA 7905 0 #> 2389 20193 5196 3 #> 2390 18522 3715 5 #> 2391 18716 3894 5 #> 2392 18587 3774 5 #> 2393 17960 3199 5 #> 2394 21724 7337 1 #> 2395 21387 6663 1 #> 2396 20670 5762 1 #> 2397 19897 5026 3 #> 2398 22175 7173 1 #> 2399 21163 6234 2 #> 2400 20653 5744 1 #> 2401 21355 6552 1 #> 2402 16768 2312 6 #> 2403 20816 5938 2 #> 2404 14828 1329 10 #> 2405 18401 3614 5 #> 2406 21738 7002 1 #> 2407 21750 6989 1 #> 2408 NA 7752 0 #> 2409 18686 3864 5 #> 2410 19371 4929 1 #> 2411 21671 6752 0 #> 2412 20337 5645 3 #> 2413 18330 3557 4 #> 2414 NA 7795 0 #> 2415 22172 7170 1 #> 2416 20673 5766 3 #> 2417 18934 4088 4 #> 2418 NA 7668 0 #> 2419 22050 6882 1 #> 2420 19856 5029 3 #> 2421 17992 3231 5 #> 2422 20384 5671 3 #> 2423 20503 5644 0 #> 2424 NA 8043 0 #> 2425 18902 4056 4 #> 2426 22370 7384 0 #> 2427 20864 5876 2 #> 2428 21002 6087 2 #> 2429 18369 3589 5 #> 2430 22305 7312 1 #> 2431 20794 6090 2 #> 2432 14888 1367 8 #> 2433 20070 5317 3 #> 2434 18924 4078 4 #> 2435 21936 6788 1 #> 2436 19858 5037 3 #> 2437 16767 2311 6 #> 2438 19102 4256 4 #> 2439 NA 7930 0 #> 2440 22367 7381 1 #> 2441 21197 6262 1 #> 2442 NA 7653 0 #> 2443 19885 5020 3 #> 2444 18333 3560 5 #> 2445 22350 7362 1 #> 2446 20852 5847 2 #> 2447 16773 2317 6 #> 2448 19114 4268 4 #> 2449 18053 3292 5 #> 2450 21126 6293 2 #> 2451 19535 4640 0 #> 2452 10333 503 12 #> 2453 18943 4097 4 #> 2454 NA 7723 0 #> 2455 21978 7020 1 #> 2456 19886 5021 3 #> 2457 20516 5664 3 #> 2458 22156 7155 1 #> 2459 17937 3176 5 #> 2460 21902 7011 1 #> 2461 21000 6132 2 #> 2462 20036 5337 3 #> 2463 21976 7447 1 #> 2464 18052 3291 5 #> 2465 19160 4311 3 #> 2466 17157 2689 7 #> 2467 22150 7148 1 #> 2468 15454 1668 8 #> 2469 16365 2063 7 #> 2470 17156 2688 6 #> 2471 14505 1227 9 #> 2472 19860 5018 3 #> 2473 15672 1730 10 #> 2474 12298 731 11 #> 2475 NA 7929 0 #> 2476 22039 7022 1 #> 2477 22091 7377 1 #> 2478 NA 7928 0 #> 2479 16295 2016 7 #> 2480 16221 1963 7 #> 2481 22035 6905 1 #> 2482 20610 5648 0 #> 2483 21026 6029 2 #> 2484 22025 6810 1 #> 2485 12778 813 10 #> 2486 20282 5692 3 #> 2487 18144 3383 5 #> 2488 20841 5870 2 #> 2489 21811 7008 1 #> 2490 15201 1559 8 #> 2491 20966 6147 2 #> 2492 14657 1262 9 #> 2493 17970 3209 5 #> 2494 20743 6007 2 #> 2495 20976 6159 2 #> 2496 18617 3803 5 #> 2497 22395 7412 1 #> 2498 19205 4349 4 #> 2499 20122 5168 3 #> 2500 NA 7529 0 #> 2501 19766 4866 3 #> 2502 14269 1170 9 #> 2503 18835 4917 1 #> 2504 19548 4651 4 #> 2505 20440 5475 3 #> 2506 22366 7380 0 #> 2507 13275 943 10 #> 2508 18912 4066 4 #> 2509 22347 7359 1 #> 2510 NA 8061 0 #> 2511 20946 6146 2 #> 2512 22245 7245 1 #> 2513 22365 7379 1 #> 2514 15378 1642 8 #> 2515 22151 7149 1 #> 2516 19326 4460 4 #> 2517 22128 7100 1 #> 2518 22340 7352 1 #> 2519 20117 5166 3 #> 2520 NA 7606 0 #> 2521 21528 6549 2 #> 2522 19200 4344 4 #> 2523 21862 6873 1 #> 2524 18508 3702 5 #> 2525 20943 6149 2 #> 2526 21294 6386 2 #> 2527 20939 6154 2 #> 2528 19854 4992 3 #> 2529 18116 3355 5 #> 2530 19546 4934 1 #> 2531 17961 3200 5 #> 2532 18881 4038 4 #> 2533 18977 4131 4 #> 2534 17938 3177 4 #> 2535 16550 2182 7 #> 2536 20406 5552 0 #> 2537 22170 7168 1 #> 2538 22076 6833 1 #> 2539 20413 5554 0 #> 2540 NA 7816 0 #> 2541 NA 7835 0 #> 2542 NA 7796 0 #> 2543 22081 7392 1 #> 2544 22049 6994 1 #> 2545 21021 6283 2 #> 2546 19501 4611 4 #> 2547 20744 5933 2 #> 2548 16625 2230 7 #> 2549 21476 6429 2 #> 2550 18467 3667 5 #> 2551 18939 4093 4 #> 2552 16396 2083 7 #> 2553 21925 6855 1 #> 2554 20785 6013 2 #> 2555 20271 5534 3 #> 2556 NA 8044 0 #> 2557 18994 4148 4 #> 2558 21910 6897 1 #> 2559 22377 7391 1 #> 2560 19492 4603 4 #> 2561 NA 7877 0 #> 2562 18414 3627 1 #> 2563 13722 1028 9 #> 2564 18060 3299 5 #> 2565 19993 5090 3 #> 2566 21165 6235 2 #> 2567 NA 7876 0 #> 2568 19942 5466 3 #> 2569 19097 4251 4 #> 2570 20989 6118 2 #> 2571 NA 7791 0 #> 2572 17949 3188 5 #> 2573 19887 5043 3 #> 2574 NA 7617 0 #> 2575 NA 8042 0 #> 2576 15176 1539 7 #> 2577 NA 7806 0 #> 2578 16093 1875 7 #> 2579 21306 6348 2 #> 2580 21118 6217 2 #> 2581 21341 6666 2 #> 2582 18913 4067 4 #> 2583 21515 6544 2 #> 2584 NA 7878 0 #> 2585 NA 8046 0 #> 2586 NA 7841 0 #> 2587 16991 2531 6 #> 2588 19178 4325 4 #> 2589 18863 4919 1 #> 2590 NA 7638 0 #> 2591 19690 4771 9 #> 2592 19128 4282 4 #> 2593 NA 8045 0 #> 2594 NA 7927 0 #> 2595 18968 4122 4 #> 2596 18062 3301 5 #> 2597 18051 3290 5 #> 2598 19104 4258 4 #> 2599 19485 4597 4 #> 2600 NA 7875 0 #> 2601 20502 5551 3 #> 2602 16419 2098 7 #> 2603 NA 7869 0 #> 2604 18761 3931 5 #> 2605 NA 7879 0 #> 2606 22011 7061 1 #> 2607 18599 3786 5 #> 2608 22009 6796 1 #> 2609 20746 5969 2 #> 2610 19788 4890 1 #> 2611 22094 6950 1 #> 2612 20542 6205 1 #> 2613 16430 2106 6 #> 2614 6489 260 13 #> 2615 19972 5089 3 #> 2616 21965 7081 1 #> 2617 NA 7538 0 #> 2618 20837 6039 2 #> 2619 NA 7607 0 #> 2620 21797 6908 1 #> 2621 20883 5961 2 #> 2622 21514 6553 2 #> 2623 16834 2378 6 #> 2624 20075 5136 3 #> 2625 19947 5009 3 #> 2626 16846 2390 6 #> 2627 20977 6181 2 #> 2628 17219 2751 6 #> 2629 14985 1425 8 #> 2630 NA 7597 0 #> 2631 18879 4036 4 #> 2632 16866 2410 6 #> 2633 19514 4622 4 #> 2634 20038 5121 3 #> 2635 19006 4160 4 #> 2636 21473 6453 2 #> 2637 17939 3178 5 #> 2638 21078 6557 2 #> 2639 21741 6849 1 #> 2640 NA 7596 0 #> 2641 22385 7400 1 #> 2642 21728 7106 1 #> 2643 20295 5260 3 #> 2644 17765 3050 3 #> 2645 NA 7665 0 #> 2646 22388 7403 1 #> 2647 12707 787 10 #> 2648 NA 7950 0 #> 2649 22389 7405 1 #> 2650 22066 6863 1 #> 2651 20402 5653 0 #> 2652 15127 1518 8 #> 2653 21346 6579 2 #> 2654 22057 6935 1 #> 2655 NA 7717 0 #> 2656 18135 3374 5 #> 2657 16859 2403 6 #> 2658 20584 5583 3 #> 2659 19949 5361 3 #> 2660 21133 6284 2 #> 2661 17187 2719 6 #> 2662 14419 1205 9 #> 2663 21333 6354 2 #> 2664 18966 4120 4 #> 2665 22390 7406 1 #> 2666 21938 6947 1 #> 2667 22065 7051 1 #> 2668 NA 7779 0 #> 2669 18576 3764 5 #> 2670 18113 3352 5 #> 2671 19970 5081 3 #> 2672 19918 4999 3 #> 2673 11315 583 11 #> 2674 NA 7802 0 #> 2675 NA 7948 0 #> 2676 22394 7411 1 #> 2677 13166 917 10 #> 2678 NA 7770 0 #> 2679 20176 5179 3 #> 2680 18911 4065 4 #> 2681 21895 6933 1 #> 2682 13721 1027 9 #> 2683 18017 3256 5 #> 2684 19555 4935 1 #> 2685 NA 7804 0 #> 2686 18038 3277 5 #> 2687 17082 2614 6 #> 2688 NA 7696 0 #> 2689 19041 4195 4 #> 2690 20749 5960 2 #> 2691 21914 7127 1 #> 2692 18092 3331 5 #> 2693 22014 7047 0 #> 2694 22233 7232 1 #> 2695 17085 2617 6 #> 2696 21987 6912 1 #> 2697 19273 4413 4 #> 2698 17527 2999 6 #> 2699 13959 1098 9 #> 2700 20799 5963 2 #> 2701 NA 7947 0 #> 2702 20902 6102 2 #> 2703 18009 3248 5 #> 2704 20043 5363 3 #> 2705 20910 5943 2 #> 2706 14857 1340 8 #> 2707 18011 3250 5 #> 2708 20042 5362 3 #> 2709 21600 6698 2 #> 2710 21661 6740 2 #> 2711 21981 6942 1 #> 2712 21067 5858 2 #> 2713 22260 7261 1 #> 2714 NA 7555 0 #> 2715 611 19 13 #> 2716 19330 4464 4 #> 2717 21831 6904 1 #> 2718 21439 6637 1 #> 2719 19822 5068 3 #> 2720 18067 3306 5 #> 2721 20809 5919 2 #> 2722 NA 7567 0 #> 2723 20933 6151 2 #> 2724 20039 5122 3 #> 2725 21764 7107 1 #> 2726 14856 1339 8 #> 2727 NA 7735 0 #> 2728 NA 7946 0 #> 2729 20823 6040 2 #> 2730 19415 4536 4 #> 2731 19863 5022 3 #> 2732 21056 5886 2 #> 2733 16491 2146 7 #> 2734 21254 6363 2 #> 2735 19705 6744 4 #> 2736 22386 7401 1 #> 2737 20762 6059 2 #> 2738 21686 6798 1 #> 2739 21139 6288 1 #> 2740 21957 6927 1 #> 2741 NA 7582 0 #> 2742 20742 5863 2 #> 2743 21731 7086 1 #> 2744 19568 4669 4 #> 2745 NA 7525 0 #> 2746 NA 7949 0 #> 2747 18343 3568 5 #> 2748 NA 7692 0 #> 2749 20231 5503 3 #> 2750 22403 7423 1 #> 2751 20853 5905 2 #> 2752 18984 4138 4 #> 2753 11043 531 11 #> 2754 NA 7898 0 #> 2755 NA 8084 0 #> 2756 17282 2814 1 #> 2757 NA 7761 0 #> 2758 19849 4974 3 #> 2759 18573 3761 5 #> 2760 NA 7894 0 #> 2761 NA 7896 0 #> 2762 21235 6329 2 #> 2763 21924 6917 1 #> 2764 19829 4963 3 #> 2765 19375 4503 4 #> 2766 22068 7419 1 #> 2767 21121 6299 2 #> 2768 16688 2275 7 #> 2769 22168 7166 1 #> 2770 20520 5572 3 #> 2771 21199 6264 0 #> 2772 21049 6033 2 #> 2773 NA 8091 4 #> 2774 NA 7833 0 #> 2775 11151 554 11 #> 2776 20450 5636 3 #> 2777 16159 1925 7 #> 2778 22217 7214 1 #> 2779 12902 843 10 #> 2780 22067 6995 1 #> 2781 21007 5953 2 #> 2782 18115 3354 5 #> 2783 16191 1945 7 #> 2784 22154 7152 1 #> 2785 NA 7902 0 #> 2786 18033 3272 5 #> 2787 17967 3206 5 #> 2788 14128 1141 9 #> 2789 NA 7704 0 #> 2790 20646 5726 3 #> 2791 NA 7900 0 #> 2792 NA 7783 0 #> 2793 NA 7620 0 #> 2794 20155 5174 3 #> 2795 21054 5843 2 #> 2796 18916 4070 4 #> 2797 22274 7277 1 #> 2798 21897 7113 1 #> 2799 19997 5360 3 #> 2800 20771 6057 2 #> 2801 19749 4848 4 #> 2802 18388 3603 5 #> 2803 18947 4101 4 #> 2804 16563 2194 7 #> 2805 21241 6569 2 #> 2806 22132 7116 1 #> 2807 17782 3057 6 #> 2808 20343 5593 0 #> 2809 19537 4642 4 #> 2810 19906 5023 3 #> 2811 19263 4404 4 #> 2812 19429 4549 4 #> 2813 19013 4167 4 #> 2814 20139 5204 3 #> 2815 NA 7714 0 #> 2816 16852 2396 6 #> 2817 21362 6437 2 #> 2818 18871 4912 1 #> 2819 NA 7753 0 #> 2820 17470 2975 6 #> 2821 19025 4179 4 #> 2822 3807 138 17 #> 2823 NA 7897 0 #> 2824 19850 4972 3 #> 2825 20795 5845 2 #> 2826 19316 4926 1 #> 2827 19996 5107 3 #> 2828 19161 4923 1 #> 2829 22121 7079 1 #> 2830 21549 6585 2 #> 2831 21854 6878 1 #> 2832 20950 6156 2 #> 2833 19599 4696 4 #> 2834 19824 4994 3 #> 2835 NA 7528 0 #> 2836 18072 3311 5 #> 2837 16451 2118 7 #> 2838 20174 5233 3 #> 2839 NA 7600 0 #> 2840 20134 5171 3 #> 2841 20770 6018 2 #> 2842 20922 6016 2 #> 2843 21551 6591 2 #> 2844 NA 7619 0 #> 2845 21752 6886 1 #> 2846 21077 5937 2 #> 2847 20830 5929 2 #> 2848 NA 7901 0 #> 2849 NA 7899 0 #> 2850 19865 5024 3 #> 2851 21964 7039 1 #> 2852 22271 7274 1 #> 2853 19961 5096 3 #> 2854 18883 4040 4 #> 2855 20353 5561 3 #> 2856 20538 5655 3 #> 2857 18970 4124 4 #> 2858 16128 1902 7 #> 2859 22268 7270 1 #> 2860 22412 7433 1 #> 2861 19953 5372 3 #> 2862 16791 2335 6 #> 2863 19951 5379 3 #> 2864 NA 7707 0 #> 2865 21031 5982 2 #> 2866 20878 6009 2 #> 2867 21111 6216 2 #> 2868 NA 8080 0 #> 2869 13453 986 10 #> 2870 22409 7429 1 #> 2871 21882 6910 1 #> 2872 21901 6915 1 #> 2873 18689 3867 5 #> 2874 22411 7431 0 #> 2875 19890 5059 3 #> 2876 11023 529 11 #> 2877 21008 5861 2 #> 2878 15814 1764 8 #> 2879 16067 1857 7 #> 2880 12450 754 11 #> 2881 22224 7222 1 #> 2882 21494 6494 2 #> 2883 22465 7491 1 #> 2884 NA 8083 0 #> 2885 17941 3180 5 #> 2886 20185 5226 3 #> 2887 12787 815 10 #> 2888 22028 7003 1 #> 2889 14981 1421 8 #> 2890 NA 8082 0 #> 2891 19091 4245 4 #> 2892 17215 2747 6 #> 2893 21053 6098 2 #> 2894 22005 6949 1 #> 2895 21025 6065 2 #> 2896 NA 8096 0 #> 2897 NA 8032 0 #> 2898 14534 1233 9 #> 2899 NA 7957 0 #> 2900 22120 7089 0 #> 2901 18946 4100 3 #> 2902 NA 8098 0 #> 2903 22287 7291 1 #> 2904 21092 6190 0 #> 2905 16051 1844 7 #> 2906 16320 2034 7 #> 2907 20796 6077 2 #> 2908 18969 4123 4 #> 2909 19311 4450 4 #> 2910 NA 7955 0 #> 2911 19998 5377 3 #> 2912 NA 7790 0 #> 2913 NA 7958 0 #> 2914 16782 2326 6 #> 2915 3617 131 13 #> 2916 18075 3314 5 #> 2917 21504 6613 2 #> 2918 NA 8081 0 #> 2919 19956 5011 3 #> 2920 20044 5124 3 #> 2921 19574 4936 1 #> 2922 14895 1373 8 #> 2923 16850 2394 6 #> 2924 14536 1234 9 #> 2925 21614 6700 1 #> 2926 19799 4985 3 #> 2927 18088 3327 5 #> 2928 22405 7425 1 #> 2929 22414 7435 1 #> 2930 21804 6931 1 #> 2931 NA 8051 0 #> 2932 20810 6012 2 #> 2933 19119 4273 4 #> 2934 18923 4077 4 #> 2935 21554 6583 2 #> 2936 16960 2501 6 #> 2937 22408 7428 1 #> 2938 18935 4089 4 #> 2939 22407 7427 1 #> 2940 21958 6993 1 #> 2941 21807 6865 1 #> 2942 NA 8094 0 #> 2943 22220 7218 1 #> 2944 19950 5010 3 #> 2945 NA 8070 0 #> 2946 NA 7954 0 #> 2947 NA 7604 0 #> 2948 NA 7623 0 #> 2949 16830 2374 6 #> 2950 20970 6168 2 #> 2951 21751 6967 1 #> 2952 21960 7135 1 #> 2953 20920 5984 2 #> 2954 20793 5902 2 #> 2955 20478 5722 3 #> 2956 20875 5846 2 #> 2957 20963 6171 2 #> 2958 19606 4938 1 #> 2959 NA 7612 0 #> 2960 14587 1244 9 #> 2961 NA 7956 0 #> 2962 16400 2086 7 #> 2963 8485 359 12 #> 2964 18203 3439 5 #> 2965 16417 2096 7 #> 2966 19322 4458 0 #> 2967 21201 6266 2 #> 2968 20366 5436 3 #> 2969 21145 6405 2 #> 2970 15086 1488 8 #> 2971 16143 1913 7 #> 2972 16353 2055 7 #> 2973 20758 5968 2 #> 2974 19967 5078 3 #> 2975 NA 7686 0 #> 2976 16669 2258 7 #> 2977 15516 1686 8 #> 2978 16473 2135 7 #> 2979 13753 1039 9 #> 2980 22103 7027 1 #> 2981 20000 5370 3 #> 2982 19907 5040 3 #> 2983 16807 2351 6 #> 2984 NA 7819 0 #> 2985 NA 7811 0 #> 2986 16678 2267 7 #> 2987 19448 4564 4 #> 2988 18005 3244 5 #> 2989 18951 4105 4 #> 2990 16226 1965 7 #> 2991 16778 2322 6 #> 2992 18119 3358 5 #> 2993 19481 4594 4 #> 2994 19896 5067 3 #> 2995 20713 5816 2 #> 2996 19016 4170 4 #> 2997 18426 3637 5 #> 2998 22169 7167 0 #> 2999 16294 2015 7 #> 3000 18949 4103 4 #> 3001 21867 6792 1 #> 3002 19952 5371 3 #> 3003 19921 5002 3 #> 3004 22074 6975 1 #> 3005 19124 4278 4 #> 3006 18967 4121 4 #> 3007 20773 6005 2 #> 3008 22400 7420 1 #> 3009 14901 1379 8 #> 3010 1410 49 16 #> 3011 14864 1345 7 #> 3012 21354 6610 2 #> 3013 19891 5041 3 #> 3014 NA 7732 0 #> 3015 22401 7421 1 #> 3016 21490 6485 2 #> 3017 13731 1032 9 #> 3018 NA 7952 0 #> 3019 18208 3444 5 #> 3020 20778 6056 2 #> 3021 19208 4352 4 #> 3022 18851 4846 4 #> 3023 16789 2333 6 #> 3024 NA 7654 0 #> 3025 20556 5555 3 #> 3026 20847 6082 2 #> 3027 NA 7834 0 #> 3028 14481 1220 9 #> 3029 14791 1310 9 #> 3030 22023 6889 1 #> 3031 NA 8034 0 #> 3032 19139 4293 4 #> 3033 12308 734 11 #> 3034 21119 6221 2 #> 3035 19833 4966 3 #> 3036 18006 3245 5 #> 3037 20996 6173 2 #> 3038 18104 3343 5 #> 3039 16041 1837 7 #> 3040 NA 7610 0 #> 3041 9329 4914 1 #> 3042 NA 7561 0 #> 3043 20360 5284 3 #> 3044 18996 4150 4 #> 3045 17217 2749 6 #> 3046 NA 7593 0 #> 3047 21765 6996 1 #> 3048 20367 5437 0 #> 3049 16903 2446 6 #> 3050 20361 5285 3 #> 3051 22456 7481 1 #> 3052 18468 3668 5 #> 3053 15974 1800 7 #> 3054 22119 7075 1 #> 3055 19063 4217 4 #> 3056 20817 5911 2 #> 3057 16276 2003 7 #> 3058 21496 6554 2 #> 3059 13878 1071 9 #> 3060 20932 5872 2 #> 3061 21717 7049 1 #> 3062 13887 1077 9 #> 3063 20077 5137 3 #> 3064 NA 7579 0 #> 3065 19755 4854 4 #> 3066 21747 6803 1 #> 3067 21295 6387 2 #> 3068 16258 1987 7 #> 3069 19627 4719 4 #> 3070 20081 5154 3 #> 3071 22096 6976 0 #> 3072 22342 7354 1 #> 3073 14900 1378 8 #> 3074 18658 3838 5 #> 3075 21414 6634 2 #> 3076 21050 6060 2 #> 3077 20429 5658 3 #> 3078 NA 7755 0 #> 3079 21521 6640 2 #> 3080 NA 7965 0 #> 3081 21064 5946 2 #> 3082 19892 5054 3 #> 3083 15988 1809 7 #> 3084 NA 7967 0 #> 3085 19954 5375 3 #> 3086 NA 7959 0 #> 3087 22431 7453 1 #> 3088 17488 2983 6 #> 3089 20302 5449 3 #> 3090 20293 5545 3 #> 3091 20748 5959 2 #> 3092 21940 6888 1 #> 3093 19336 4927 1 #> 3094 19087 4241 4 #> 3095 NA 7625 0 #> 3096 15200 1558 8 #> 3097 19086 4240 4 #> 3098 22331 7343 1 #> 3099 NA 7963 0 #> 3100 22434 7456 1 #> 3101 11767 667 12 #> 3102 11382 594 11 #> 3103 22423 7444 1 #> 3104 19834 4969 3 #> 3105 22070 7125 1 #> 3106 17512 2993 6 #> 3107 19341 4473 0 #> 3108 21069 5999 1 #> 3109 22021 7413 1 #> 3110 22426 7448 1 #> 3111 NA 7961 0 #> 3112 8750 391 12 #> 3113 NA 7750 0 #> 3114 NA 7815 0 #> 3115 15227 1577 8 #> 3116 16642 2240 7 #> 3117 20894 6003 2 #> 3118 16271 1999 7 #> 3119 22429 7451 1 #> 3120 20981 6119 2 #> 3121 14375 1192 9 #> 3122 NA 7964 0 #> 3123 19458 4572 4 #> 3124 12247 720 11 #> 3125 21136 6296 2 #> 3126 21904 6962 1 #> 3127 9700 471 12 #> 3128 18825 4865 4 #> 3129 18864 4920 1 #> 3130 NA 7962 0 #> 3131 20379 5668 3 #> 3132 16822 2366 6 #> 3133 19908 5053 3 #> 3134 19741 4838 0 #> 3135 15231 1580 8 #> 3136 22164 7163 1 #> 3137 16795 2339 6 #> 3138 22462 7488 1 #> 3139 16268 1997 7 #> 3140 19130 4284 4 #> 3141 22033 6793 1 #> 3142 20896 6010 2 #> 3143 22209 7206 1 #> 3144 NA 7966 0 #> 3145 NA 7689 0 #> 3146 16925 2468 6 #> 3147 20718 5824 1 #> 3148 17550 3008 6 #> 3149 15190 1550 8 #> 3150 4737 181 14 #> 3151 12982 862 10 #> 3152 4314 167 21 #> 3153 NA 7605 0 #> 3154 19861 5052 3 #> 3155 21788 6885 1 #> 3156 20973 6187 1 #> 3157 14916 1386 8 #> 3158 18764 3934 5 #> 3159 18803 3969 4 #> 3160 17965 3204 5 #> 3161 19032 4186 4 #> 3162 20172 5177 0 #> 3163 18942 4096 3 #> 3164 19724 4814 4 #> 3165 18101 3340 5 #> 3166 18901 4055 4 #> 3167 20506 5409 3 #> 3168 16593 2214 7 #> 3169 10974 515 11 #> 3170 20314 5269 3 #> 3171 18673 3852 5 #> 3172 18896 4050 4 #> 3173 18880 4037 4 #> 3174 22430 7452 1 #> 3175 11056 536 11 #> 3176 NA 7960 0 #> 3177 19347 4479 1 #> 3178 20550 5705 3 #> 3179 22432 7454 1 #> 3180 21675 6960 1 #> 3181 16597 2216 7 #> 3182 NA 7713 0 #> 3183 21138 6290 2 #> 3184 19922 5374 3 #> 3185 20565 5514 1 #> 3186 18312 3543 5 #> 3187 20179 5182 3 #> 3188 13969 1101 9 #> 3189 17511 2992 6 #> 3190 22419 7440 1 #> 3191 19300 4439 4 #> 3192 19344 4476 4 #> 3193 22084 6829 1 #> 3194 18293 3527 5 #> 3195 14412 1203 9 #> 3196 20385 5672 0 #> 3197 20148 5188 3 #> 3198 20711 5815 3 #> 3199 NA 7632 0 #> 3200 NA 7682 0 #> 3201 18392 3605 5 #> 3202 20811 5908 2 #> 3203 19591 4689 4 #> 3204 22152 7150 1 #> 3205 19027 4181 4 #> 3206 18239 3474 5 #> 3207 19259 4400 4 #> 3208 22173 7171 1 #> 3209 20001 5369 3 #> 3210 NA 7784 0 #> 3211 16870 2414 6 #> 3212 17994 3233 5 #> 3213 15302 1617 8 #> 3214 21584 6657 2 #> 3215 16310 2027 7 #> 3216 20921 5966 2 #> 3217 18575 3763 5 #> 3218 21435 6542 2 #> 3219 18476 3676 5 #> 3220 19612 4939 1 #> 3221 NA 7853 0 #> 3222 20940 6125 2 #> 3223 22422 7443 1 #> 3224 20866 6048 2 #> 3225 20045 5373 3 #> 3226 18421 3633 5 #> 3227 21880 6887 1 #> 3228 NA 7852 0 #> 3229 20601 5620 1 #> 3230 NA 8069 0 #> 3231 NA 7856 0 #> 3232 19619 4712 0 #> 3233 15758 1750 8 #> 3234 22425 7446 1 #> 3235 NA 7855 0 #> 3236 18735 3909 5 #> 3237 21360 6581 2 #> 3238 17123 2655 6 #> 3239 20180 5183 3 #> 3240 17307 2839 6 #> 3241 NA 7709 0 #> 3242 NA 7683 0 #> 3243 14904 1381 8 #> 3244 16783 2327 6 #> 3245 19862 5030 3 #> 3246 22275 7278 1 #> 3247 19842 4978 3 #> 3248 19066 4220 4 #> 3249 20862 5928 2 #> 3250 19441 4558 4 #> 3251 11008 525 11 #> 3252 11545 623 11 #> 3253 21353 6609 2 #> 3254 19578 4677 4 #> 3255 NA 7851 0 #> 3256 14988 1428 8 #> 3257 21060 5936 2 #> 3258 16071 1860 7 #> 3259 16172 1933 7 #> 3260 NA 7650 0 #> 3261 20268 5531 3 #> 3262 20732 5949 2 #> 3263 16820 2364 6 #> 3264 17490 2985 6 #> 3265 20378 5667 3 #> 3266 22421 7442 1 #> 3267 NA 8086 0 #> 3268 10067 497 13 #> 3269 14855 1338 8 #> 3270 13799 1049 9 #> 3271 18868 4026 4 #> 3272 20055 5128 3 #> 3273 21845 7064 1 #> 3274 19065 4219 4 #> 3275 21310 6379 2 #> 3276 17959 3198 5 #> 3277 19033 4187 4 #> 3278 NA 8085 0 #> 3279 22420 7441 1 #> 3280 20332 5277 3 #> 3281 13370 963 10 #> 3282 17005 2545 6 #> 3283 NA 7903 0 #> 3284 19296 4435 4 #> 3285 17182 2714 6 #> 3286 21676 6834 1 #> 3287 20370 5288 3 #> 3288 22418 7439 1 #> 3289 NA 7854 0 #> 3290 20372 5289 3 #> 3291 19671 4752 4 #> 3292 19732 4828 4 #> 3293 13291 947 10 #> 3294 18361 3582 5 #> 3295 21042 5859 2 #> 3296 21716 6832 1 #> 3297 18209 3445 5 #> 3298 21734 7496 1 #> 3299 NA 7793 0 #> 3300 19017 4171 4 #> 3301 19280 4420 4 #> 3302 NA 7729 0 #> 3303 22415 7436 1 #> 3304 19760 4860 4 #> 3305 19134 4288 4 #> 3306 21945 6877 1 #> 3307 18326 4911 1 #> 3308 16021 1826 7 #> 3309 16905 2448 6 #> 3310 16249 1982 6 #> 3311 17006 2546 6 #> 3312 20080 5368 3 #> 3313 19971 5082 2 #> 3314 19254 4395 4 #> 3315 17945 3184 5 #> 3316 20395 5388 3 #> 3317 20335 5474 3 #> 3318 19216 4359 4 #> 3319 20885 6070 2 #> 3320 18013 3252 5 #> 3321 21941 7432 1 #> 3322 16794 2338 6 #> 3323 NA 7827 0 #> 3324 17111 2643 6 #> 3325 21923 7136 1 #> 3326 NA 7671 0 #> 3327 21044 6030 2 #> 3328 16072 5792 3 #> 3329 19955 5365 3 #> 3330 20108 5626 3 #> 3331 21875 7024 1 #> 3332 20956 6124 2 #> 3333 22104 7030 1 #> 3334 NA 7764 0 #> 3335 NA 7850 0 #> 3336 22092 6782 1 #> 3337 19077 4231 4 #> 3338 20827 5935 2 #> 3339 NA 7760 0 #> 3340 18069 3308 5 #> 3341 22393 7410 1 #> 3342 19841 4976 3 #> 3343 21444 6423 2 #> 3344 20002 5366 3 #> 3345 19373 4501 4 #> 3346 16874 2418 6 #> 3347 18875 4032 4 #> 3348 17451 2964 5 #> 3349 20390 5481 1 #> 3350 20523 5438 3 #> 3351 14867 1348 8 #> 3352 20248 5460 2 #> 3353 15113 1507 8 #> 3354 16929 2472 6 #> 3355 NA 7634 0 #> 3356 18279 3513 5 #> 3357 18873 4030 4 #> 3358 21207 6307 2 #> 3359 22017 6937 1 #> 3360 21450 6472 2 #> 3361 18167 3406 5 #> 3362 21120 6220 2 #> 3363 NA 7778 0 #> 3364 18112 3351 5 #> 3365 21112 6215 2 #> 3366 21030 5932 2 #> 3367 16766 2310 6 #> 3368 NA 7652 0 #> 3369 19945 5312 3 #> 3370 20474 5405 3 #> 3371 16436 2112 7 #> 3372 22008 6862 1 #> 3373 16770 2314 6 #> 3374 20320 5683 3 #> 3375 19022 4176 4 #> 3376 16458 2123 7 #> 3377 15112 1506 8 #> 3378 17179 2711 6 #> 3379 20053 5127 3 #> 3380 21809 7013 1 #> 3381 8283 333 16 #> 3382 13791 1048 9 #> 3383 18464 3664 5 #> 3384 18073 3312 5 #> 3385 18375 3594 5 #> 3386 21861 6945 1 #> 3387 NA 7537 0 #> 3388 NA 7622 0 #> 3389 NA 8038 0 #> 3390 19410 4531 4 #> 3391 21405 6399 1 #> 3392 16656 2251 7 #> 3393 19982 5103 3 #> 3394 20993 6142 2 #> 3395 NA 7716 0 #> 3396 18094 3333 5 #> 3397 19579 4678 4 #> 3398 21742 6906 1 #> 3399 17218 2750 6 #> 3400 NA 7751 0 #> 3401 20387 5294 1 #> 3402 18928 4082 4 #> 3403 20873 5927 2 #> 3404 20529 5432 3 #> 3405 22090 7078 1 #> 3406 20789 5884 2 #> 3407 17290 2822 6 #> 3408 20782 5924 2 #> 3409 21755 7407 1 #> 3410 21400 6402 2 #> 3411 NA 7587 0 #> 3412 13698 1023 10 #> 3413 16629 2232 6 #> 3414 19328 4462 4 #> 3415 18418 3631 5 #> 3416 18186 3422 4 #> 3417 423 12 13 #> 3418 17821 3074 5 #> 3419 14088 1134 9 #> 3420 13610 1011 12 #> 3421 20636 5723 2 #> 3422 21274 6576 1 #> 3423 21154 6414 1 #> 3424 11062 537 11 #> 3425 20546 5805 2 #> 3426 20814 6080 1 #> 3427 13838 1055 8 #> 3428 21146 6607 1 #> 3429 16545 2181 6 #> 3430 20377 5614 2 #> 3431 14923 1393 7 #> 3432 19936 5319 2 #> 3433 17087 2619 5 #> 3434 13444 981 10 #> 3435 21292 6360 1 #> 3436 7509 303 12 #> 3437 16150 1918 6 #> 3438 20319 5600 2 #> 3439 16465 2128 6 #> 3440 20303 5472 2 #> 3441 21555 6589 1 #> 3442 17506 2991 5 #> 3443 20354 5562 2 #> 3444 19174 4321 3 #> 3445 21193 6281 1 #> 3446 21438 6541 1 #> 3447 16832 2376 6 #> 3448 19193 4337 3 #> 3449 21159 6559 1 #> 3450 14979 1419 7 #> 3451 20299 5770 2 #> 3452 19515 4773 3 #> 3453 20551 5592 2 #> 3454 18314 3544 4 #> 3455 16246 1980 6 #> 3456 16981 2521 6 #> 3457 21455 6445 1 #> 3458 20285 5482 2 #> 3459 9392 460 11 #> 3460 19083 4237 3 #> 3461 13236 929 9 #> 3462 19628 4720 3 #> 3463 15234 1583 7 #> 3464 18165 3404 4 #> 3465 17973 3212 4 #> 3466 12881 837 10 #> 3467 21307 6349 2 #> 3468 14631 1254 8 #> 3469 15096 1498 7 #> 3470 19108 4262 3 #> 3471 12681 784 10 #> 3472 16542 2178 6 #> 3473 20594 5596 2 #> 3474 13949 1095 8 #> 3475 14948 1404 7 #> 3476 9664 466 11 #> 3477 14020 1115 8 #> 3478 21073 5998 1 #> 3479 13479 996 10 #> 3480 15067 1472 8 #> 3481 16841 2385 5 #> 3482 21188 6255 1 #> 3483 17001 2541 5 #> 3484 14340 1182 9 #> 3485 18400 3613 4 #> 3486 14721 1277 8 #> 3487 19231 4374 3 #> 3488 20349 5471 2 #> 3489 20614 5730 2 #> 3490 14793 1311 8 #> 3491 20692 5795 2 #> 3492 19294 4433 3 #> 3493 20671 5764 2 #> 3494 6078 242 14 #> 3495 17010 2550 5 #> 3496 17860 3108 5 #> 3497 16916 2459 5 #> 3498 19625 4717 3 #> 3499 6687 266 12 #> 3500 2760 105 13 #> 3501 21509 6497 1 #> 3502 15105 1504 7 #> 3503 18202 3438 5 #> 3504 19451 4567 3 #> 3505 18526 3718 4 #> 3506 21479 6431 1 #> 3507 20918 6073 1 #> 3508 18515 3709 3 #> 3509 20397 5350 2 #> 3510 16660 2253 6 #> 3511 16214 1960 6 #> 3512 19585 4684 3 #> 3513 14144 1145 8 #> 3514 19743 4840 3 #> 3515 11579 633 11 #> 3516 21500 6624 1 #> 3517 20216 5518 2 #> 3518 13472 993 9 #> 3519 18511 3705 4 #> 3520 19133 4287 3 #> 3521 17495 2988 5 #> 3522 20365 5435 2 #> 3523 19532 4637 3 #> 3524 5916 235 17 #> 3525 18594 3781 4 #> 3526 21374 6630 1 #> 3527 14878 1359 8 #> 3528 19047 4201 3 #> 3529 21058 6042 1 #> 3530 19696 4820 3 #> 3531 13070 888 9 #> 3532 20446 5400 2 #> 3533 18294 3528 4 #> 3534 18340 3565 3 #> 3535 20324 5604 2 #> 3536 18657 3837 4 #> 3537 19092 4246 3 #> 3538 20593 5595 2 #> 3539 19007 4161 3 #> 3540 19243 4386 3 #> 3541 19607 4702 3 #> 3542 18708 3886 4 #> 3543 20531 5447 2 #> 3544 19305 4444 3 #> 3545 21639 6714 2 #> 3546 16098 1879 6 #> 3547 20725 5832 1 #> 3548 14730 1283 9 #> 3549 21512 6499 1 #> 3550 16477 2138 6 #> 3551 20111 5629 3 #> 3552 13718 1025 8 #> 3553 21582 6683 1 #> 3554 15041 1459 7 #> 3555 4122 156 13 #> 3556 20625 5713 2 #> 3557 16882 2426 5 #> 3558 16068 1858 6 #> 3559 20461 5480 2 #> 3560 14381 1194 8 #> 3561 18578 3766 4 #> 3562 4490 172 15 #> 3563 19407 4529 4 #> 3564 20530 5433 2 #> 3565 13104 897 9 #> 3566 17229 2761 5 #> 3567 18391 3604 4 #> 3568 18661 3841 5 #> 3569 19490 4601 3 #> 3570 4701 180 12 #> 3571 17353 2885 5 #> 3572 11731 657 15 #> 3573 16803 2347 5 #> 3574 20022 5326 2 #> 3575 15437 1662 7 #> 3576 16372 2068 6 #> 3577 18980 4134 4 #> 3578 16844 2388 5 #> 3579 21284 6614 1 #> 3580 9169 441 11 #> 3581 20427 5635 2 #> 3582 20313 5421 2 #> 3583 17281 2813 5 #> 3584 18188 3424 4 #> 3585 18821 3986 3 #> 3586 21019 6054 1 #> 3587 20254 5679 2 #> 3588 18122 3361 4 #> 3589 13871 1068 9 #> 3590 17990 3229 4 #> 3591 16551 2183 6 #> 3592 16137 1909 6 #> 3593 21416 6620 1 #> 3594 3942 146 15 #> 3595 1650 56 13 #> 3596 15199 1557 7 #> 3597 20086 5159 2 #> 3598 16577 2204 6 #> 3599 2556 95 12 #> 3600 16297 2017 7 #> 3601 19362 4492 3 #> 3602 16777 2321 6 #> 3603 16823 2367 5 #> 3604 20486 5694 2 #> 3605 21148 6226 1 #> 3606 16924 2467 5 #> 3607 18090 3329 4 #> 3608 20666 5758 2 #> 3609 19474 4587 3 #> 3610 20307 5579 2 #> 3611 20558 5451 2 #> 3612 16374 2070 6 #> 3613 17247 2779 5 #> 3614 18252 3487 4 #> 3615 11402 602 10 #> 3616 19346 4478 3 #> 3617 18491 3691 4 #> 3618 18074 3313 5 #> 3619 19270 4410 3 #> 3620 19697 4789 3 #> 3621 16675 2264 6 #> 3622 20132 5686 2 #> 3623 11096 540 10 #> 3624 20685 5783 2 #> 3625 21189 6256 1 #> 3626 13868 1066 9 #> 3627 13085 893 10 #> 3628 15306 1620 8 #> 3629 21522 6641 1 #> 3630 20431 5578 2 #> 3631 19869 5050 3 #> 3632 21553 6582 1 #> 3633 16552 2184 7 #> 3634 11107 545 11 #> 3635 21505 6521 1 #> 3636 21557 6668 1 #> 3637 18687 3865 5 #> 3638 20143 5229 2 #> 3639 18054 3293 5 #> 3640 21625 6707 1 #> 3641 20435 5417 2 #> 3642 12554 770 11 #> 3643 14989 1429 8 #> 3644 21567 6672 1 #> 3645 21437 6636 1 #> 3646 13165 916 9 #> 3647 20628 5701 2 #> 3648 16769 2313 6 #> 3649 19650 4735 3 #> 3650 20130 5684 2 #> 3651 18779 3946 4 #> 3652 12725 795 9 #> 3653 18098 3337 4 #> 3654 7802 318 12 #> 3655 21304 6346 1 #> 3656 20651 5742 2 #> 3657 2158 75 12 #> 3658 8435 354 11 #> 3659 20410 5502 2 #> 3660 1214 42 14 #> 3661 20683 5780 2 #> 3662 20232 5504 2 #> 3663 20084 5157 2 #> 3664 16017 1823 6 #> 3665 14135 1143 8 #> 3666 3808 139 12 #> 3667 18024 3263 4 #> 3668 8507 361 11 #> 3669 17054 2589 5 #> 3670 12626 779 10 #> 3671 20109 5627 2 #> 3672 16923 2466 5 #> 3673 16050 1843 6 #> 3674 14299 1179 8 #> 3675 20495 5446 2 #> 3676 17204 2736 5 #> 3677 19526 4632 3 #> 3678 21314 6383 1 #> 3679 17747 3040 6 #> 3680 16959 2500 5 #> 3681 19196 4340 3 #> 3682 15233 1582 7 #> 3683 15978 1803 6 #> 3684 16858 2402 5 #> 3685 16555 2187 6 #> 3686 19384 4512 3 #> 3687 20151 5200 2 #> 3688 20676 5771 2 #> 3689 20693 5794 2 #> 3690 11977 684 18 #> 3691 19413 4534 3 #> 3692 19167 4315 3 #> 3693 18403 3616 4 #> 3694 16805 2349 5 #> 3695 18597 3784 4 #> 3696 21441 6543 1 #> 3697 14645 1258 8 #> 3698 19703 4793 3 #> 3699 18142 3381 4 #> 3700 19239 4382 3 #> 3701 18185 3421 4 #> 3702 21099 6198 1 #> 3703 16570 2199 6 #> 3704 16023 1828 6 #> 3705 15122 1513 8 #> 3706 20716 5825 2 #> 3707 15843 1773 8 #> 3708 8343 342 15 #> 3709 19549 4652 3 #> 3710 12880 836 10 #> 3711 14729 1282 8 #> 3712 20035 5336 2 #> 3713 20146 5186 2 #> 3714 21212 6312 1 #> 3715 4175 161 7 #> 3716 14646 1259 9 #> 3717 20101 5152 2 #> 3718 21540 6649 1 #> 3719 21303 6345 1 #> 3720 19476 4589 3 #> 3721 19450 4566 3 #> 3722 20497 5788 2 #> 3723 21322 6377 1 #> 3724 19727 4819 3 #> 3725 18607 3793 4 #> 3726 20455 5522 2 #> 3727 16420 2099 7 #> 3728 14875 1356 8 #> 3729 9994 495 11 #> 3730 21570 6660 1 #> 3731 16010 1820 6 #> 3732 12460 757 11 #> 3733 19188 4332 3 #> 3734 12806 819 9 #> 3735 19170 4317 3 #> 3736 21432 6545 1 #> 3737 18541 3731 4 #> 3738 18107 3346 4 #> 3739 21285 6447 1 #> 3740 20235 5506 2 #> 3741 13576 1006 10 #> 3742 21458 6556 1 #> 3743 14946 1402 7 #> 3744 16812 2356 6 #> 3745 20627 5702 2 #> 3746 20356 5422 2 #> 3747 19056 4210 3 #> 3748 20586 5568 2 #> 3749 15562 1697 7 #> 3750 19874 5019 2 #> 3751 16403 2089 6 #> 3752 14827 1328 8 #> 3753 19744 4841 3 #> 3754 21525 6608 1 #> 3755 13029 875 10 #> 3756 14146 1146 9 #> 3757 20371 5410 2 #> 3758 13355 961 10 #> 3759 19303 4442 3 #> 3760 7202 285 13 #> 3761 20322 5602 2 #> 3762 21431 6604 1 #> 3763 20190 5219 2 #> 3764 21250 6369 1 #> 3765 20323 5603 2 #> 3766 20442 5500 0 #> 3767 21273 6575 1 #> 3768 20140 5205 2 #> 3769 21446 6422 1 #> 3770 19232 4375 3 #> 3771 21358 6602 2 #> 3772 16391 2080 6 #> 3773 2232 79 7 #> 3774 20119 5778 2 #> 3775 13664 1017 14 #> 3776 15137 1526 8 #> 3777 14081 1131 9 #> 3778 19533 4638 3 #> 3779 19460 4573 3 #> 3780 20278 5689 2 #> 3781 20110 5628 2 #> 3782 11108 546 10 #> 3783 17095 2627 5 #> 3784 21626 6708 1 #> 3785 13451 985 9 #> 3786 13911 1086 9 #> 3787 18380 3597 4 #> 3788 9828 487 11 #> 3789 7680 314 14 #> 3790 20345 5589 2 #> 3791 16940 2482 5 #> 3792 15441 1663 8 #> 3793 16026 1830 6 #> 3794 14902 1380 7 #> 3795 19427 4547 3 #> 3796 17284 2816 5 #> 3797 2550 94 14 #> 3798 15042 1460 8 #> 3799 16091 1874 6 #> 3800 16088 1872 7 #> 3801 16213 1959 6 #> 3802 19713 4799 3 #> 3803 14991 1430 7 #> 3804 21398 6404 1 #> 3805 11021 528 11 #> 3806 17529 3000 5 #> 3807 20315 5426 2 #> 3808 14369 1190 8 #> 3809 20691 5789 2 #> 3810 20408 5501 2 #> 3811 19889 5066 3 #> 3812 19502 4612 3 #> 3813 21350 6500 1 #> 3814 20321 5601 2 #> 3815 20244 5458 2 #> 3816 21313 6382 1 #> 3817 17538 3005 5 #> 3818 13816 1053 9 #> 3819 20105 5513 2 #> 3820 13091 894 10 #> 3821 15389 1646 7 #> 3822 20201 5491 2 #> 3823 16974 2515 5 #> 3824 18325 3553 4 #> 3825 18277 3511 4 #> 3826 5929 236 15 #> 3827 4096 153 12 #> 3828 16896 2439 5 #> 3829 18010 3249 4 #> 3830 20181 5184 2 #> 3831 20522 5497 2 #> 3832 16526 2170 6 #> 3833 12716 791 9 #> 3834 19389 4517 3 #> 3835 20358 5563 2 #> 3836 17298 2830 5 #> 3837 13319 953 9 #> 3838 15189 1549 8 #> 3839 18537 3728 5 #> 3840 16857 2401 5 #> 3841 15069 1474 8 #> 3842 21184 6251 1 #> 3843 16425 2102 6 #> 3844 17319 2851 5 #> 3845 16444 2115 6 #> 3846 15435 1661 7 #> 3847 12912 846 10 #> 3848 20312 5420 2 #> 3849 21231 6325 1 #> 3850 21532 6599 1 #> 3851 18713 3891 4 #> 3852 19206 4350 3 #> 3853 19541 4646 3 #> 3854 18452 3658 4 #> 3855 18275 3509 3 #> 3856 19573 4673 3 #> 3857 20568 5560 2 #> 3858 16210 1956 6 #> 3859 19096 4250 3 #> 3860 16869 2413 5 #> 3861 15631 1716 8 #> 3862 14783 1303 10 #> 3863 21365 6435 1 #> 3864 18376 3595 4 #> 3865 20587 5586 2 #> 3866 15555 1693 7 #> 3867 15191 1551 7 #> 3868 16966 2507 5 #> 3869 20405 5353 2 #> 3870 16534 2174 6 #> 3871 14786 1305 9 #> 3872 20389 5296 2 #> 3873 21132 6298 2 #> 3874 16955 2496 5 #> 3875 20223 5240 2 #> 3876 20092 5145 2 #> 3877 18636 3819 4 #> 3878 16203 1952 6 #> 3879 14391 1196 8 #> 3880 19283 4423 3 #> 3881 19525 4631 3 #> 3882 13188 923 9 #> 3883 21546 6654 1 #> 3884 17260 2792 5 #> 3885 20470 5394 2 #> 3886 19103 4257 3 #> 3887 19478 4591 3 #> 3888 17093 2625 5 #> 3889 18647 3828 4 #> 3890 16390 2079 6 #> 3891 17565 3016 5 #> 3892 12212 713 10 #> 3893 20612 5650 2 #> 3894 18372 3592 4 #> 3895 13442 979 9 #> 3896 19107 4261 3 #> 3897 21574 6675 1 #> 3898 17165 2697 5 #> 3899 11311 581 10 #> 3900 16168 1930 6 #> 3901 6853 273 13 #> 3902 11612 643 10 #> 3903 12453 755 14 #> 3904 2104 74 16 #> 3905 21091 6189 1 #> 3906 20272 5535 2 #> 3907 21066 5897 1 #> 3908 11548 625 10 #> 3909 15433 1660 7 #> 3910 18050 3289 4 #> 3911 19197 4341 3 #> 3912 15280 1608 7 #> 3913 19327 4461 3 #> 3914 20532 5434 2 #> 3915 15453 1667 7 #> 3916 2379 88 14 #> 3917 15311 1623 7 #> 3918 11154 555 11 #> 3919 8593 375 11 #> 3920 20165 5215 2 #> 3921 17108 2640 5 #> 3922 7243 290 13 #> 3923 21236 6330 1 #> 3924 12167 704 13 #> 3925 8776 395 11 #> 3926 19151 4303 3 #> 3927 19366 4496 3 #> 3928 20638 5712 2 #> 3929 12215 714 10 #> 3930 21334 6355 1 #> 3931 21209 6309 1 #> 3932 19991 5083 2 #> 3933 14440 1209 8 #> 3934 20127 5489 2 #> 3935 21499 6512 1 #> 3936 20348 5594 2 #> 3937 13476 995 9 #> 3938 16000 1815 6 #> 3939 19094 4248 3 #> 3940 20608 5681 2 #> 3941 20509 5739 2 #> 3942 21518 6527 1 #> 3943 21552 6667 1 #> 3944 14256 1168 8 #> 3945 20344 5469 2 #> 3946 16677 2266 6 #> 3947 19321 4457 3 #> 3948 19285 4425 3 #> 3949 21047 6113 1 #> 3950 19374 4502 3 #> 3951 13448 983 9 #> 3952 21265 6537 1 #> 3953 19462 4575 3 #> 3954 18287 3521 4 #> 3955 18386 3601 4 #> 3956 16975 2516 5 #> 3957 14605 1248 8 #> 3958 19002 4156 3 #> 3959 19088 4242 3 #> 3960 14826 1327 8 #> 3961 20257 5510 2 #> 3962 11585 635 11 #> 3963 16590 2212 6 #> 3964 19418 4539 3 #> 3965 7098 280 13 #> 3966 8504 360 11 #> 3967 19521 4627 3 #> 3968 21565 6671 1 #> 3969 11178 556 10 #> 3970 21433 6516 1 #> 3971 19171 4318 3 #> 3972 15073 1478 7 #> 3973 20485 5693 2 #> 3974 19277 4417 3 #> 3975 18531 3723 4 #> 3976 13310 951 9 #> 3977 19040 4194 3 #> 3978 20104 5512 2 #> 3979 9042 422 11 #> 3980 12838 828 9 #> 3981 16433 2109 7 #> 3982 14345 1184 8 #> 3983 19470 4583 3 #> 3984 19363 4493 3 #> 3985 13462 989 10 #> 3986 17458 2967 5 #> 3987 20208 5599 2 #> 3988 10994 522 10 #> 3989 21648 6725 1 #> 3990 14367 1188 8 #> 3991 15223 1574 7 #> 3992 21477 6520 1 #> 3993 19000 4154 3 #> 3994 21180 6561 1 #> 3995 21461 6478 1 #> 3996 8296 334 11 #> 3997 8419 351 11 #> 3998 16349 2053 6 #> 3999 18672 3851 4 #> 4000 18169 3408 4 #> 4001 16950 2491 5 #> 4002 16483 6718 6 #> 4003 14905 1382 8 #> 4004 16833 2377 6 #> 4005 21544 6652 1 #> 4006 18078 3317 4 #> 4007 18085 3324 4 #> 4008 16596 2215 6 #> 4009 13261 939 9 #> 4010 21664 6747 1 #> 4011 19052 4206 3 #> 4012 20407 5553 2 #> 4013 16604 2220 6 #> 4014 21321 6418 1 #> 4015 15410 1653 7 #> 4016 19210 4354 3 #> 4017 18273 3507 4 #> 4018 20276 5688 2 #> 4019 18591 3778 4 #> 4020 16507 2160 6 #> 4021 20571 5538 2 #> 4022 18397 3610 4 #> 4023 20543 5656 2 #> 4024 15128 1519 7 #> 4025 17756 3044 5 #> 4026 20259 5631 2 #> 4027 19039 4193 3 #> 4028 20425 5412 2 #> 4029 19334 4467 3 #> 4030 20615 5731 2 #> 4031 21339 6525 1 #> 4032 18068 3307 5 #> 4033 20843 6062 1 #> 4034 19195 4339 3 #> 4035 16873 2417 5 #> 4036 14852 1335 7 #> 4037 18196 3432 4 #> 4038 17496 2989 5 #> 4039 14813 1318 8 #> 4040 21430 6513 1 #> 4041 20062 5621 2 #> 4042 9050 424 11 #> 4043 21572 6673 1 #> 4044 21628 6709 1 #> 4045 7459 301 13 #> 4046 20439 5499 2 #> 4047 20267 5782 2 #> 4048 18579 3767 4 #> 4049 7815 319 12 #> 4050 20483 5440 2 #> 4051 16241 1977 6 #> 4052 3339 124 12 #> 4053 11046 532 10 #> 4054 14273 1172 8 #> 4055 19722 4809 3 #> 4056 10956 509 10 #> 4057 15430 1659 7 #> 4058 19678 4760 3 #> 4059 20465 5523 2 #> 4060 20256 5509 2 #> 4061 16494 2149 6 #> 4062 15008 1439 7 #> 4063 14061 1129 8 #> 4064 20590 5584 2 #> 4065 19227 4370 3 #> 4066 17457 2966 6 #> 4067 17940 3179 5 #> 4068 20454 5404 2 #> 4069 21471 6471 1 #> 4070 12490 759 10 #> 4071 20958 6160 1 #> 4072 18166 3405 4 #> 4073 20459 5478 2 #> 4074 19201 4345 3 #> 4075 20205 5676 2 #> 4076 20720 5826 1 #> 4077 20657 5748 2 #> 4078 19468 4581 3 #> 4079 20287 5542 2 #> 4080 20197 5172 2 #> 4081 17158 2690 5 #> 4082 20115 5641 2 #> 4083 20291 5544 2 #> 4084 21305 6347 1 #> 4085 19576 4675 3 #> 4086 19218 4361 3 #> 4087 20575 5574 2 #> 4088 20855 6061 1 #> 4089 19312 4859 3 #> 4090 16471 2134 5 #> 4091 20832 6079 1 #> 4092 18827 3990 2 #> 4093 20114 5640 2 #> 4094 18738 3912 4 #> 4095 20739 6085 1 #> 4096 19338 4470 3 #> 4097 20261 5633 2 #> 4098 20851 5896 1 #> 4099 18989 4143 3 #> 4100 20630 5735 2 #> 4101 16109 1889 6 #> 4102 20955 6656 1 #> 4103 19634 4724 3 #> 4104 20579 5581 2 #> 4105 21288 6533 1 #> 4106 19563 4664 3 #> 4107 21034 6099 1 #> 4108 18155 3394 4 #> 4109 21267 6571 1 #> 4110 21068 6046 1 #> 4111 20260 5632 2 #> 4112 20548 5557 2 #> 4113 18046 3285 4 #> 4114 18077 3316 4 #> 4115 20017 5338 2 #> 4116 19385 4513 3 #> 4117 3253 118 20 #> 4118 18473 3673 4 #> 4119 13109 899 10 #> 4120 5714 229 22 #> 4121 16164 1929 6 #> 4122 11735 658 16 #> 4123 12594 775 13 #> 4124 20238 5247 2 #> 4125 18619 3805 5 #> 4126 21508 6496 1 #> 4127 21105 6208 2 #> 4128 14877 1358 7 #> 4129 18255 3490 4 #> 4130 14740 1287 10 #> 4131 3258 120 24 #> 4132 16644 2242 6 #> 4133 10092 499 12 #> 4134 2982 110 15 #> 4135 3388 127 18 #> 4136 4354 168 15 #> 4137 13140 909 9 #> 4138 15450 1666 8 #> 4139 19496 4606 4 #> 4140 16065 1856 6 #> 4141 19679 4761 4 #> 4142 17274 2806 5 #> 4143 20046 5376 3 #> 4144 16995 2535 6 #> 4145 14225 1160 9 #> 4146 16682 2271 6 #> 4147 13112 901 9 #> 4148 16272 2000 6 #> 4149 13358 962 9 #> 4150 12195 708 10 #> 4151 5334 210 12 #> 4152 20258 5511 2 #> 4153 16879 2423 5 #> 4154 15132 1522 7 #> 4155 15669 1729 8 #> 4156 18480 3680 5 #> 4157 17188 2720 5 #> 4158 21219 6316 1 #> 4159 17203 2735 5 #> 4160 15301 1616 7 #> 4161 14750 1291 8 #> 4162 20458 5477 2 #> 4163 12562 772 11 #> 4164 12424 750 12 #> 4165 13941 1093 8 #> 4166 14635 1255 9 #> headshot_url #> 1 <NA> #> 2 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2573307.png #> 3 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14013.png #> 4 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038999.png #> 5 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17435.png #> 6 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123966.png #> 7 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3821572.png #> 8 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042436.png #> 9 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16718.png #> 10 <NA> #> 11 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4361499.png #> 12 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15817.png #> 13 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917147.png #> 14 <NA> #> 15 <NA> #> 16 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4043089.png #> 17 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2579163.png #> 18 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15877.png #> 19 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3859100.png #> 20 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15782.png #> 21 <NA> #> 22 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4325329.png #> 23 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915282.png #> 24 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577466.png #> 25 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15844.png #> 26 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13979.png #> 27 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139448.png #> 28 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3138765.png #> 29 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17017.png #> 30 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13292.png #> 31 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2517779.png #> 32 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035666.png #> 33 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2508191.png #> 34 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035452.png #> 35 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15090.png #> 36 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512544.png #> 37 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053124.png #> 38 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971881.png #> 39 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13304.png #> 40 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11122.png #> 41 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4334300.png #> 42 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16820.png #> 43 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576482.png #> 44 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3894901.png #> 45 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047582.png #> 46 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2514270.png #> 47 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3928847.png #> 48 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042895.png #> 49 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971432.png #> 50 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4239787.png #> 51 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12905.png #> 52 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14927.png #> 53 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046605.png #> 54 <NA> #> 55 <NA> #> 56 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576809.png #> 57 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035875.png #> 58 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035462.png #> 59 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048925.png #> 60 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15241.png #> 61 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15808.png #> 62 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512538.png #> 63 <NA> #> 64 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914630.png #> 65 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915509.png #> 66 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115482.png #> 67 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049219.png #> 68 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045286.png #> 69 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15879.png #> 70 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15035.png #> 71 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120434.png #> 72 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576585.png #> 73 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13998.png #> 74 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122145.png #> 75 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971048.png #> 76 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045166.png #> 77 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17197.png #> 78 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129309.png #> 79 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/5713.png #> 80 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13199.png #> 81 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038220.png #> 82 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917315.png #> 83 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040206.png #> 84 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3119195.png #> 85 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052143.png #> 86 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242873.png #> 87 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045147.png #> 88 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035470.png #> 89 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039274.png #> 90 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971605.png #> 91 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127287.png #> 92 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3936647.png #> 93 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052166.png #> 94 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115981.png #> 95 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917292.png #> 96 <NA> #> 97 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3672867.png #> 98 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970726.png #> 99 <NA> #> 100 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16318.png #> 101 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13983.png #> 102 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037235.png #> 103 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4043161.png #> 104 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124537.png #> 105 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3894883.png #> 106 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886809.png #> 107 <NA> #> 108 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16172.png #> 109 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914328.png #> 110 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15795.png #> 111 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124369.png #> 112 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046668.png #> 113 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895856.png #> 114 <NA> #> 115 <NA> #> 116 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16963.png #> 117 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2967888.png #> 118 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4044138.png #> 119 <NA> #> 120 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971586.png #> 121 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915122.png #> 122 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2975377.png #> 123 <NA> #> 124 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052477.png #> 125 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4239995.png #> 126 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915437.png #> 127 <NA> #> 128 <NA> #> 129 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4360643.png #> 130 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045128.png #> 131 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15842.png #> 132 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4043891.png #> 133 <NA> #> 134 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3925358.png #> 135 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4010714.png #> 136 <NA> #> 137 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15936.png #> 138 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980097.png #> 139 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4411771.png #> 140 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035494.png #> 141 <NA> #> 142 <NA> #> 143 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051376.png #> 144 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917679.png #> 145 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3008150.png #> 146 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124015.png #> 147 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043127.png #> 148 <NA> #> 149 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576492.png #> 150 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2517230.png #> 151 <NA> #> 152 <NA> #> 153 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17315.png #> 154 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049899.png #> 155 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4243009.png #> 156 <NA> #> 157 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916928.png #> 158 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980100.png #> 159 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976545.png #> 160 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134315.png #> 161 <NA> #> 162 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929648.png #> 163 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120964.png #> 164 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039521.png #> 165 <NA> #> 166 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123863.png #> 167 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120810.png #> 168 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050073.png #> 169 <NA> #> 170 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16393.png #> 171 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15151.png #> 172 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2587711.png #> 173 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3672833.png #> 174 <NA> #> 175 <NA> #> 176 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979499.png #> 177 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895830.png #> 178 <NA> #> 179 <NA> #> 180 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128790.png #> 181 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126302.png #> 182 <NA> #> 183 <NA> #> 184 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3157727.png #> 185 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16713.png #> 186 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127304.png #> 187 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3072765.png #> 188 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916449.png #> 189 <NA> #> 190 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11237.png #> 191 <NA> #> 192 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16810.png #> 193 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886377.png #> 194 <NA> #> 195 <NA> #> 196 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125116.png #> 197 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3025433.png #> 198 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15807.png #> 199 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123944.png #> 200 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15874.png #> 201 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15544.png #> 202 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3858276.png #> 203 <NA> #> 204 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3144991.png #> 205 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039553.png #> 206 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047536.png #> 207 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3924365.png #> 208 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3118954.png #> 209 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14215.png #> 210 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3925357.png #> 211 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917914.png #> 212 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982828.png #> 213 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4366710.png #> 214 <NA> #> 215 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4052137.png #> 216 <NA> #> 217 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051857.png #> 218 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126002.png #> 219 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115378.png #> 220 <NA> #> 221 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053760.png #> 222 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2573343.png #> 223 <NA> #> 224 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035112.png #> 225 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578378.png #> 226 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976244.png #> 227 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13963.png #> 228 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4027919.png #> 229 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912545.png #> 230 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126356.png #> 231 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054841.png #> 232 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915255.png #> 233 <NA> #> 234 <NA> #> 235 <NA> #> 236 <NA> #> 237 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577139.png #> 238 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13845.png #> 239 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929846.png #> 240 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045463.png #> 241 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240575.png #> 242 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125931.png #> 243 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16917.png #> 244 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11284.png #> 245 <NA> #> 246 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14964.png #> 247 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035245.png #> 248 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895837.png #> 249 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915837.png #> 250 <NA> #> 251 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125872.png #> 252 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16857.png #> 253 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15973.png #> 254 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2975417.png #> 255 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2986883.png #> 256 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912157.png #> 257 <NA> #> 258 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15683.png #> 259 <NA> #> 260 <NA> #> 261 <NA> #> 262 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122141.png #> 263 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036153.png #> 264 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14202.png #> 265 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242207.png #> 266 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14048.png #> 267 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122766.png #> 268 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4334407.png #> 269 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040037.png #> 270 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040615.png #> 271 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042445.png #> 272 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15264.png #> 273 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3060403.png #> 274 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915184.png #> 275 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15875.png #> 276 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516865.png #> 277 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037650.png #> 278 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046551.png #> 279 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14931.png #> 280 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242247.png #> 281 <NA> #> 282 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3863820.png #> 283 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054842.png #> 284 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12622.png #> 285 <NA> #> 286 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980153.png #> 287 <NA> #> 288 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16706.png #> 289 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16741.png #> 290 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16722.png #> 291 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054971.png #> 292 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9789.png #> 293 <NA> #> 294 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035671.png #> 295 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916387.png #> 296 <NA> #> 297 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042451.png #> 298 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116172.png #> 299 <NA> #> 300 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051926.png #> 301 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241985.png #> 302 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038441.png #> 303 <NA> #> 304 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915136.png #> 305 <NA> #> 306 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116365.png #> 307 <NA> #> 308 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915400.png #> 309 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3921690.png #> 310 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2511973.png #> 311 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574591.png #> 312 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17348.png #> 313 <NA> #> 314 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932423.png #> 315 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16725.png #> 316 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916204.png #> 317 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515962.png #> 318 <NA> #> 319 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241372.png #> 320 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728254.png #> 321 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4043814.png #> 322 <NA> #> 323 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3909416.png #> 324 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16945.png #> 325 <NA> #> 326 <NA> #> 327 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037481.png #> 328 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040628.png #> 329 <NA> #> 330 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039050.png #> 331 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2514122.png #> 332 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042717.png #> 333 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048681.png #> 334 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971734.png #> 335 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895791.png #> 336 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046350.png #> 337 <NA> #> 338 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916577.png #> 339 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16898.png #> 340 <NA> #> 341 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3133440.png #> 342 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057524.png #> 343 <NA> #> 344 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121003.png #> 345 <NA> #> 346 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3672862.png #> 347 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15960.png #> 348 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15979.png #> 349 <NA> #> 350 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917159.png #> 351 <NA> #> 352 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3957672.png #> 353 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13245.png #> 354 <NA> #> 355 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240585.png #> 356 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051371.png #> 357 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14320.png #> 358 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980098.png #> 359 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3734467.png #> 360 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15802.png #> 361 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039721.png #> 362 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117255.png #> 363 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982857.png #> 364 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4262273.png #> 365 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971883.png #> 366 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057899.png #> 367 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039303.png #> 368 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043112.png #> 369 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2973027.png #> 370 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576910.png #> 371 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917232.png #> 372 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929950.png #> 373 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895831.png #> 374 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917797.png #> 375 <NA> #> 376 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895228.png #> 377 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127075.png #> 378 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035232.png #> 379 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15964.png #> 380 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976249.png #> 381 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039776.png #> 382 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046287.png #> 383 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976549.png #> 384 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512577.png #> 385 <NA> #> 386 <NA> #> 387 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929642.png #> 388 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040166.png #> 389 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2981439.png #> 390 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3707061.png #> 391 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2514244.png #> 392 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929631.png #> 393 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516927.png #> 394 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16385.png #> 395 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886808.png #> 396 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051324.png #> 397 <NA> #> 398 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576789.png #> 399 <NA> #> 400 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917868.png #> 401 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043237.png #> 402 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240689.png #> 403 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039707.png #> 404 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052600.png #> 405 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3918298.png #> 406 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035676.png #> 407 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049916.png #> 408 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919104.png #> 409 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14167.png #> 410 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4420894.png #> 411 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040629.png #> 412 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040761.png #> 413 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977954.png #> 414 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930086.png #> 415 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125999.png #> 416 <NA> #> 417 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039505.png #> 418 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122818.png #> 419 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039720.png #> 420 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125404.png #> 421 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115315.png #> 422 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128724.png #> 423 <NA> #> 424 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3085107.png #> 425 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976212.png #> 426 <NA> #> 427 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043841.png #> 428 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049249.png #> 429 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15349.png #> 430 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4048717.png #> 431 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13295.png #> 432 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115255.png #> 433 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4243537.png #> 434 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242540.png #> 435 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16847.png #> 436 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3928936.png #> 437 <NA> #> 438 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3843769.png #> 439 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16270.png #> 440 <NA> #> 441 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14989.png #> 442 <NA> #> 443 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046679.png #> 444 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046353.png #> 445 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16562.png #> 446 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4044133.png #> 447 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241889.png #> 448 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045214.png #> 449 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577740.png #> 450 <NA> #> 451 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035290.png #> 452 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3138733.png #> 453 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122173.png #> 454 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2567725.png #> 455 <NA> #> 456 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126238.png #> 457 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059620.png #> 458 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139108.png #> 459 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115456.png #> 460 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035726.png #> 461 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15010.png #> 462 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259594.png #> 463 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042746.png #> 464 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035631.png #> 465 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3112083.png #> 466 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051766.png #> 467 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16910.png #> 468 <NA> #> 469 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035495.png #> 470 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16853.png #> 471 <NA> #> 472 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046721.png #> 473 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241221.png #> 474 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035407.png #> 475 <NA> #> 476 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916944.png #> 477 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916943.png #> 478 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932960.png #> 479 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124084.png #> 480 <NA> #> 481 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14938.png #> 482 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116134.png #> 483 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980504.png #> 484 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14519.png #> 485 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127273.png #> 486 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126362.png #> 487 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15373.png #> 488 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978313.png #> 489 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2579621.png #> 490 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053047.png #> 491 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3928928.png #> 492 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116052.png #> 493 <NA> #> 494 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035177.png #> 495 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4043169.png #> 496 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11759.png #> 497 <NA> #> 498 <NA> #> 499 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576639.png #> 500 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259480.png #> 501 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512504.png #> 502 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976295.png #> 503 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915304.png #> 504 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123303.png #> 505 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2973051.png #> 506 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915102.png #> 507 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912487.png #> 508 <NA> #> 509 <NA> #> 510 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3924357.png #> 511 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051308.png #> 512 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115252.png #> 513 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912547.png #> 514 <NA> #> 515 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116642.png #> 516 <NA> #> 517 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4261020.png #> 518 <NA> #> 519 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117251.png #> 520 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512197.png #> 521 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4031003.png #> 522 <NA> #> 523 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4045305.png #> 524 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980120.png #> 525 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035426.png #> 526 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916749.png #> 527 <NA> #> 528 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053039.png #> 529 <NA> #> 530 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4212989.png #> 531 <NA> #> 532 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042417.png #> 533 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4198679.png #> 534 <NA> #> 535 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917166.png #> 536 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4294520.png #> 537 <NA> #> 538 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039968.png #> 539 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574808.png #> 540 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3138760.png #> 541 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4212909.png #> 542 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915416.png #> 543 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046401.png #> 544 <NA> #> 545 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577346.png #> 546 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916126.png #> 547 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578317.png #> 548 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4243253.png #> 549 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045278.png #> 550 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15812.png #> 551 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4294837.png #> 552 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036651.png #> 553 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046663.png #> 554 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054847.png #> 555 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3860287.png #> 556 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15235.png #> 557 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051921.png #> 558 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969944.png #> 559 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979595.png #> 560 <NA> #> 561 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3960454.png #> 562 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2566034.png #> 563 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115257.png #> 564 <NA> #> 565 <NA> #> 566 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574582.png #> 567 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969921.png #> 568 <NA> #> 569 <NA> #> 570 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117922.png #> 571 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969924.png #> 572 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17230.png #> 573 <NA> #> 574 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3924310.png #> 575 <NA> #> 576 <NA> #> 577 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14984.png #> 578 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4376288.png #> 579 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051367.png #> 580 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17427.png #> 581 <NA> #> 582 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4257195.png #> 583 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15806.png #> 584 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915189.png #> 585 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917016.png #> 586 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124779.png #> 587 <NA> #> 588 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577145.png #> 589 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15074.png #> 590 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128303.png #> 591 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16710.png #> 592 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16761.png #> 593 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982304.png #> 594 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15867.png #> 595 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13984.png #> 596 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17070.png #> 597 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14572.png #> 598 <NA> #> 599 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3894849.png #> 600 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4032052.png #> 601 <NA> #> 602 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972304.png #> 603 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912245.png #> 604 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2566609.png #> 605 <NA> #> 606 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059839.png #> 607 <NA> #> 608 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129290.png #> 609 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129307.png #> 610 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241422.png #> 611 <NA> #> 612 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/6012.png #> 613 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4362648.png #> 614 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16863.png #> 615 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14012.png #> 616 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14877.png #> 617 <NA> #> 618 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127335.png #> 619 <NA> #> 620 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17359.png #> 621 <NA> #> 622 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4042808.png #> 623 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3066158.png #> 624 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035538.png #> 625 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16020.png #> 626 <NA> #> 627 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982484.png #> 628 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970262.png #> 629 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979590.png #> 630 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045225.png #> 631 <NA> #> 632 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4258595.png #> 633 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3940587.png #> 634 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13232.png #> 635 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122430.png #> 636 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978744.png #> 637 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15839.png #> 638 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045164.png #> 639 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035015.png #> 640 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577667.png #> 641 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035019.png #> 642 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043134.png #> 643 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4248504.png #> 644 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059918.png #> 645 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040655.png #> 646 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126095.png #> 647 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3909300.png #> 648 <NA> #> 649 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16799.png #> 650 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2518678.png #> 651 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4327535.png #> 652 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17172.png #> 653 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128707.png #> 654 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051407.png #> 655 <NA> #> 656 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576283.png #> 657 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126245.png #> 658 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042619.png #> 659 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240624.png #> 660 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052101.png #> 661 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115308.png #> 662 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042785.png #> 663 <NA> #> 664 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125356.png #> 665 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040506.png #> 666 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972505.png #> 667 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982632.png #> 668 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980383.png #> 669 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051388.png #> 670 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16882.png #> 671 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046382.png #> 672 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919512.png #> 673 <NA> #> 674 <NA> #> 675 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052743.png #> 676 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121416.png #> 677 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976313.png #> 678 <NA> #> 679 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039029.png #> 680 <NA> #> 681 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037633.png #> 682 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979632.png #> 683 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977670.png #> 684 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14994.png #> 685 <NA> #> 686 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128815.png #> 687 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915388.png #> 688 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050122.png #> 689 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128752.png #> 690 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3821683.png #> 691 <NA> #> 692 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917142.png #> 693 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116724.png #> 694 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917992.png #> 695 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040621.png #> 696 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052660.png #> 697 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036507.png #> 698 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3918330.png #> 699 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10686.png #> 700 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929801.png #> 701 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515319.png #> 702 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046557.png #> 703 <NA> #> 704 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895869.png #> 705 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040622.png #> 706 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16801.png #> 707 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915532.png #> 708 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040726.png #> 709 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14930.png #> 710 <NA> #> 711 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915106.png #> 712 <NA> #> 713 <NA> #> 714 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12669.png #> 715 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915776.png #> 716 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916447.png #> 717 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915511.png #> 718 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574511.png #> 719 <NA> #> 720 <NA> #> 721 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035222.png #> 722 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3693033.png #> 723 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116389.png #> 724 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116385.png #> 725 <NA> #> 726 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241256.png #> 727 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914371.png #> 728 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972331.png #> 729 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036189.png #> 730 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574576.png #> 731 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127310.png #> 732 <NA> #> 733 <NA> #> 734 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3923392.png #> 735 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040569.png #> 736 <NA> #> 737 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4069839.png #> 738 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3699902.png #> 739 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3921564.png #> 740 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919557.png #> 741 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4239993.png #> 742 <NA> #> 743 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045144.png #> 744 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123986.png #> 745 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3931391.png #> 746 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2989641.png #> 747 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979548.png #> 748 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16001.png #> 749 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3691031.png #> 750 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2566591.png #> 751 <NA> #> 752 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036898.png #> 753 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035437.png #> 754 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2525933.png #> 755 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971632.png #> 756 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915535.png #> 757 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038437.png #> 758 <NA> #> 759 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116679.png #> 760 <NA> #> 761 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242208.png #> 762 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914450.png #> 763 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046292.png #> 764 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3910402.png #> 765 <NA> #> 766 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3859006.png #> 767 <NA> #> 768 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917852.png #> 769 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2981511.png #> 770 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912553.png #> 771 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037459.png #> 772 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16734.png #> 773 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4048257.png #> 774 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046907.png #> 775 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122132.png #> 776 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971505.png #> 777 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3152371.png #> 778 <NA> #> 779 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915192.png #> 780 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134681.png #> 781 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051775.png #> 782 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039052.png #> 783 <NA> #> 784 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16231.png #> 785 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976194.png #> 786 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15047.png #> 787 <NA> #> 788 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040499.png #> 789 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974317.png #> 790 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126225.png #> 791 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052413.png #> 792 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3150744.png #> 793 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17082.png #> 794 <NA> #> 795 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040983.png #> 796 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14214.png #> 797 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125073.png #> 798 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046700.png #> 799 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242206.png #> 800 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045251.png #> 801 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128396.png #> 802 <NA> #> 803 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116667.png #> 804 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3138834.png #> 805 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15379.png #> 806 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16740.png #> 807 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116135.png #> 808 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045474.png #> 809 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049575.png #> 810 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976213.png #> 811 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3676763.png #> 812 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3910156.png #> 813 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039016.png #> 814 <NA> #> 815 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034522.png #> 816 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050009.png #> 817 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241482.png #> 818 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16076.png #> 819 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4384564.png #> 820 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979534.png #> 821 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3936185.png #> 822 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125286.png #> 823 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049872.png #> 824 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15168.png #> 825 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052587.png #> 826 <NA> #> 827 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915381.png #> 828 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929828.png #> 829 <NA> #> 830 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128720.png #> 831 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139602.png #> 832 <NA> #> 833 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059915.png #> 834 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915134.png #> 835 <NA> #> 836 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040774.png #> 837 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043275.png #> 838 <NA> #> 839 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3948283.png #> 840 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123076.png #> 841 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128439.png #> 842 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971830.png #> 843 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040137.png #> 844 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039725.png #> 845 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16733.png #> 846 <NA> #> 847 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047876.png #> 848 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16790.png #> 849 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4258195.png #> 850 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4373937.png #> 851 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042910.png #> 852 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4249496.png #> 853 <NA> #> 854 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3933568.png #> 855 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917569.png #> 856 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035788.png #> 857 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15793.png #> 858 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979655.png #> 859 <NA> #> 860 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125705.png #> 861 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040966.png #> 862 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977756.png #> 863 <NA> #> 864 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977689.png #> 865 <NA> #> 866 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17474.png #> 867 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045207.png #> 868 <NA> #> 869 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917006.png #> 870 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976099.png #> 871 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045130.png #> 872 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116387.png #> 873 <NA> #> 874 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2573317.png #> 875 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122135.png #> 876 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121415.png #> 877 <NA> #> 878 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052977.png #> 879 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930024.png #> 880 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16802.png #> 881 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035660.png #> 882 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977681.png #> 883 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040479.png #> 884 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16831.png #> 885 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3928979.png #> 886 <NA> #> 887 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4042141.png #> 888 <NA> #> 889 <NA> #> 890 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574009.png #> 891 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3892883.png #> 892 <NA> #> 893 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038539.png #> 894 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15653.png #> 895 <NA> #> 896 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4682912.png #> 897 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14993.png #> 898 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3138677.png #> 899 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052896.png #> 900 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116097.png #> 901 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932336.png #> 902 <NA> #> 903 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120866.png #> 904 <NA> #> 905 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054962.png #> 906 <NA> #> 907 <NA> #> 908 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14676.png #> 909 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16709.png #> 910 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4033748.png #> 911 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3821577.png #> 912 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115356.png #> 913 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728250.png #> 914 <NA> #> 915 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915834.png #> 916 <NA> #> 917 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929795.png #> 918 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048698.png #> 919 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4686629.png #> 920 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13978.png #> 921 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4331784.png #> 922 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577302.png #> 923 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15724.png #> 924 <NA> #> 925 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14950.png #> 926 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972515.png #> 927 <NA> #> 928 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895785.png #> 929 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577417.png #> 930 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16809.png #> 931 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916148.png #> 932 <NA> #> 933 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038815.png #> 934 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051392.png #> 935 <NA> #> 936 <NA> #> 937 <NA> #> 938 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980073.png #> 939 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2991767.png #> 940 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117256.png #> 941 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036275.png #> 942 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115928.png #> 943 <NA> #> 944 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036335.png #> 945 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121409.png #> 946 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976499.png #> 947 <NA> #> 948 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036348.png #> 949 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121413.png #> 950 <NA> #> 951 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241389.png #> 952 <NA> #> 953 <NA> #> 954 <NA> #> 955 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139223.png #> 956 <NA> #> 957 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4032749.png #> 958 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035448.png #> 959 <NA> #> 960 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3173563.png #> 961 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969920.png #> 962 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515641.png #> 963 <NA> #> 964 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037647.png #> 965 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035425.png #> 966 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16715.png #> 967 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037216.png #> 968 <NA> #> 969 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3894830.png #> 970 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976259.png #> 971 <NA> #> 972 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115250.png #> 973 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929850.png #> 974 <NA> #> 975 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13254.png #> 976 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969860.png #> 977 <NA> #> 978 <NA> #> 979 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915525.png #> 980 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16837.png #> 981 <NA> #> 982 <NA> #> 983 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127298.png #> 984 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3145343.png #> 985 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576508.png #> 986 <NA> #> 987 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4422407.png #> 988 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3131784.png #> 989 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16866.png #> 990 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035566.png #> 991 <NA> #> 992 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125107.png #> 993 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040910.png #> 994 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982821.png #> 995 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125082.png #> 996 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576245.png #> 997 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16339.png #> 998 <NA> #> 999 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043276.png #> 1000 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124634.png #> 1001 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13976.png #> 1002 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3055105.png #> 1003 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919548.png #> 1004 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728310.png #> 1005 <NA> #> 1006 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040150.png #> 1007 <NA> #> 1008 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512419.png #> 1009 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116733.png #> 1010 <NA> #> 1011 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930915.png #> 1012 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577712.png #> 1013 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3925443.png #> 1014 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16377.png #> 1015 <NA> #> 1016 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038544.png #> 1017 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16842.png #> 1018 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916465.png #> 1019 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040468.png #> 1020 <NA> #> 1021 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128773.png #> 1022 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16932.png #> 1023 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15096.png #> 1024 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123867.png #> 1025 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035662.png #> 1026 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15928.png #> 1027 <NA> #> 1028 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16728.png #> 1029 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3924327.png #> 1030 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3722362.png #> 1031 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035102.png #> 1032 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916721.png #> 1033 <NA> #> 1034 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4042112.png #> 1035 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576434.png #> 1036 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122672.png #> 1037 <NA> #> 1038 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139033.png #> 1039 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116602.png #> 1040 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2975863.png #> 1041 <NA> #> 1042 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036131.png #> 1043 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035115.png #> 1044 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125402.png #> 1045 <NA> #> 1046 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045118.png #> 1047 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121398.png #> 1048 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977629.png #> 1049 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128429.png #> 1050 <NA> #> 1051 <NA> #> 1052 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241463.png #> 1053 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057987.png #> 1054 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134353.png #> 1055 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3700815.png #> 1056 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4422214.png #> 1057 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034964.png #> 1058 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240380.png #> 1059 <NA> #> 1060 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17463.png #> 1061 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128412.png #> 1062 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971418.png #> 1063 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16876.png #> 1064 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116175.png #> 1065 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241984.png #> 1066 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575523.png #> 1067 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516049.png #> 1068 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3140141.png #> 1069 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16217.png #> 1070 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050916.png #> 1071 <NA> #> 1072 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051929.png #> 1073 <NA> #> 1074 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4030779.png #> 1075 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051864.png #> 1076 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117249.png #> 1077 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046680.png #> 1078 <NA> #> 1079 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042499.png #> 1080 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915297.png #> 1081 <NA> #> 1082 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2519038.png #> 1083 <NA> #> 1084 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045238.png #> 1085 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046690.png #> 1086 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576267.png #> 1087 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051852.png #> 1088 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728253.png #> 1089 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980147.png #> 1090 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574519.png #> 1091 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128264.png #> 1092 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051369.png #> 1093 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3873928.png #> 1094 <NA> #> 1095 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14944.png #> 1096 <NA> #> 1097 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4243257.png #> 1098 <NA> #> 1099 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126352.png #> 1100 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728306.png #> 1101 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124052.png #> 1102 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2317118.png #> 1103 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3910660.png #> 1104 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116158.png #> 1105 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125232.png #> 1106 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052687.png #> 1107 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043234.png #> 1108 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128444.png #> 1109 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15091.png #> 1110 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4423367.png #> 1111 <NA> #> 1112 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3044729.png #> 1113 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124587.png #> 1114 <NA> #> 1115 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115310.png #> 1116 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576755.png #> 1117 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15830.png #> 1118 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043107.png #> 1119 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915508.png #> 1120 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980138.png #> 1121 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/8362.png #> 1122 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3913020.png #> 1123 <NA> #> 1124 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128689.png #> 1125 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930040.png #> 1126 <NA> #> 1127 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915252.png #> 1128 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122687.png #> 1129 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046435.png #> 1130 <NA> #> 1131 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3044736.png #> 1132 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971557.png #> 1133 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3145005.png #> 1134 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976292.png #> 1135 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912573.png #> 1136 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916370.png #> 1137 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045169.png #> 1138 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242418.png #> 1139 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116188.png #> 1140 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046779.png #> 1141 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4239083.png #> 1142 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259545.png #> 1143 <NA> #> 1144 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241940.png #> 1145 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980453.png #> 1146 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052449.png #> 1147 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4421446.png #> 1148 <NA> #> 1149 <NA> #> 1150 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3144062.png #> 1151 <NA> #> 1152 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932433.png #> 1153 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4243318.png #> 1154 <NA> #> 1155 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3910630.png #> 1156 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036133.png #> 1157 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15773.png #> 1158 <NA> #> 1159 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126997.png #> 1160 <NA> #> 1161 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3066074.png #> 1162 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895857.png #> 1163 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2587819.png #> 1164 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035793.png #> 1165 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056476.png #> 1166 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2973405.png #> 1167 <NA> #> 1168 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972460.png #> 1169 <NA> #> 1170 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115913.png #> 1171 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577808.png #> 1172 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915139.png #> 1173 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124849.png #> 1174 <NA> #> 1175 <NA> #> 1176 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052170.png #> 1177 <NA> #> 1178 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895429.png #> 1179 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240024.png #> 1180 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040870.png #> 1181 <NA> #> 1182 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915419.png #> 1183 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2582132.png #> 1184 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122797.png #> 1185 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3928920.png #> 1186 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038538.png #> 1187 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971364.png #> 1188 <NA> #> 1189 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974348.png #> 1190 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916220.png #> 1191 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915186.png #> 1192 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122752.png #> 1193 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917340.png #> 1194 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516897.png #> 1195 <NA> #> 1196 <NA> #> 1197 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930048.png #> 1198 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052509.png #> 1199 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045242.png #> 1200 <NA> #> 1201 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977626.png #> 1202 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930912.png #> 1203 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929936.png #> 1204 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10636.png #> 1205 <NA> #> 1206 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035577.png #> 1207 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577446.png #> 1208 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046523.png #> 1209 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4361650.png #> 1210 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240655.png #> 1211 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051746.png #> 1212 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116431.png #> 1213 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043168.png #> 1214 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040180.png #> 1215 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3676832.png #> 1216 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035817.png #> 1217 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034781.png #> 1218 <NA> #> 1219 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128675.png #> 1220 <NA> #> 1221 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980350.png #> 1222 <NA> #> 1223 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16759.png #> 1224 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115485.png #> 1225 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576736.png #> 1226 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929794.png #> 1227 <NA> #> 1228 <NA> #> 1229 <NA> #> 1230 <NA> #> 1231 <NA> #> 1232 <NA> #> 1233 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15054.png #> 1234 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3871880.png #> 1235 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15963.png #> 1236 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126368.png #> 1237 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/8439.png #> 1238 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16724.png #> 1239 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036378.png #> 1240 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040535.png #> 1241 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3921586.png #> 1242 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932449.png #> 1243 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039358.png #> 1244 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042519.png #> 1245 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4239934.png #> 1246 <NA> #> 1247 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9614.png #> 1248 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917962.png #> 1249 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036129.png #> 1250 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914151.png #> 1251 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035014.png #> 1252 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980444.png #> 1253 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2975674.png #> 1254 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116573.png #> 1255 <NA> #> 1256 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14053.png #> 1257 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16800.png #> 1258 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116182.png #> 1259 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4408988.png #> 1260 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974503.png #> 1261 <NA> #> 1262 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932442.png #> 1263 <NA> #> 1264 <NA> #> 1265 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128390.png #> 1266 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051738.png #> 1267 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128317.png #> 1268 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977609.png #> 1269 <NA> #> 1270 <NA> #> 1271 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054955.png #> 1272 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929653.png #> 1273 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240780.png #> 1274 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16719.png #> 1275 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916676.png #> 1276 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051391.png #> 1277 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970716.png #> 1278 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040145.png #> 1279 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4331768.png #> 1280 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134448.png #> 1281 <NA> #> 1282 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16927.png #> 1283 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3931399.png #> 1284 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16768.png #> 1285 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128746.png #> 1286 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123963.png #> 1287 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4334405.png #> 1288 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049268.png #> 1289 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977679.png #> 1290 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929865.png #> 1291 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977647.png #> 1292 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045377.png #> 1293 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052088.png #> 1294 <NA> #> 1295 <NA> #> 1296 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038557.png #> 1297 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046343.png #> 1298 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3911982.png #> 1299 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979523.png #> 1300 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040471.png #> 1301 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971573.png #> 1302 <NA> #> 1303 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978211.png #> 1304 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3138764.png #> 1305 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059880.png #> 1306 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050851.png #> 1307 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051750.png #> 1308 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14936.png #> 1309 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17266.png #> 1310 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916409.png #> 1311 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039783.png #> 1312 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16888.png #> 1313 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3131775.png #> 1314 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16767.png #> 1315 <NA> #> 1316 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577854.png #> 1317 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13729.png #> 1318 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17061.png #> 1319 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886633.png #> 1320 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969959.png #> 1321 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16549.png #> 1322 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916414.png #> 1323 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16742.png #> 1324 <NA> #> 1325 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126035.png #> 1326 <NA> #> 1327 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969262.png #> 1328 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14116.png #> 1329 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17211.png #> 1330 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3921964.png #> 1331 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3131498.png #> 1332 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122923.png #> 1333 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051890.png #> 1334 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895840.png #> 1335 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051397.png #> 1336 <NA> #> 1337 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122840.png #> 1338 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14163.png #> 1339 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574630.png #> 1340 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126246.png #> 1341 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13981.png #> 1342 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15971.png #> 1343 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052117.png #> 1344 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122716.png #> 1345 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2508176.png #> 1346 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4362878.png #> 1347 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980197.png #> 1348 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042735.png #> 1349 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4081127.png #> 1350 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128452.png #> 1351 <NA> #> 1352 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915486.png #> 1353 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971281.png #> 1354 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575891.png #> 1355 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059760.png #> 1356 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576581.png #> 1357 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915823.png #> 1358 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035853.png #> 1359 <NA> #> 1360 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977800.png #> 1361 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578533.png #> 1362 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122839.png #> 1363 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16731.png #> 1364 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16791.png #> 1365 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050487.png #> 1366 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13226.png #> 1367 <NA> #> 1368 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578475.png #> 1369 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971563.png #> 1370 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125287.png #> 1371 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16808.png #> 1372 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3910229.png #> 1373 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15810.png #> 1374 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3910754.png #> 1375 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929847.png #> 1376 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4044540.png #> 1377 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4218312.png #> 1378 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912544.png #> 1379 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929835.png #> 1380 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2511090.png #> 1381 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124574.png #> 1382 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035661.png #> 1383 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050199.png #> 1384 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916678.png #> 1385 <NA> #> 1386 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976210.png #> 1387 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914143.png #> 1388 <NA> #> 1389 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047512.png #> 1390 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052894.png #> 1391 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051942.png #> 1392 <NA> #> 1393 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124970.png #> 1394 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15858.png #> 1395 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034530.png #> 1396 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040513.png #> 1397 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577278.png #> 1398 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4041572.png #> 1399 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126489.png #> 1400 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4058825.png #> 1401 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929658.png #> 1402 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116761.png #> 1403 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971282.png #> 1404 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915470.png #> 1405 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915165.png #> 1406 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034949.png #> 1407 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116367.png #> 1408 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3821576.png #> 1409 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056362.png #> 1410 <NA> #> 1411 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126179.png #> 1412 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15068.png #> 1413 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048912.png #> 1414 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117253.png #> 1415 <NA> #> 1416 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929928.png #> 1417 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128252.png #> 1418 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3071353.png #> 1419 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124005.png #> 1420 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2566045.png #> 1421 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976632.png #> 1422 <NA> #> 1423 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121595.png #> 1424 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3163375.png #> 1425 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978298.png #> 1426 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129308.png #> 1427 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052513.png #> 1428 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047614.png #> 1429 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15790.png #> 1430 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972351.png #> 1431 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3060187.png #> 1432 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914922.png #> 1433 <NA> #> 1434 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977665.png #> 1435 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577189.png #> 1436 <NA> #> 1437 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2573079.png #> 1438 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035003.png #> 1439 <NA> #> 1440 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916430.png #> 1441 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051891.png #> 1442 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038533.png #> 1443 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242335.png #> 1444 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930901.png #> 1445 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139605.png #> 1446 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971589.png #> 1447 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4045702.png #> 1448 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4611135.png #> 1449 <NA> #> 1450 <NA> #> 1451 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035379.png #> 1452 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4032479.png #> 1453 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16504.png #> 1454 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2998565.png #> 1455 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930298.png #> 1456 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930097.png #> 1457 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4054085.png #> 1458 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121410.png #> 1459 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4374496.png #> 1460 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035221.png #> 1461 <NA> #> 1462 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515759.png #> 1463 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980808.png #> 1464 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4061956.png #> 1465 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916071.png #> 1466 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978109.png #> 1467 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14924.png #> 1468 <NA> #> 1469 <NA> #> 1470 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035687.png #> 1471 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054026.png #> 1472 <NA> #> 1473 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115968.png #> 1474 <NA> #> 1475 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127299.png #> 1476 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240596.png #> 1477 <NA> #> 1478 <NA> #> 1479 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4371737.png #> 1480 <NA> #> 1481 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122160.png #> 1482 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970661.png #> 1483 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035505.png #> 1484 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051901.png #> 1485 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3918331.png #> 1486 <NA> #> 1487 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051716.png #> 1488 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969961.png #> 1489 <NA> #> 1490 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115914.png #> 1491 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115249.png #> 1492 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971498.png #> 1493 <NA> #> 1494 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915239.png #> 1495 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574891.png #> 1496 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042476.png #> 1497 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2507719.png #> 1498 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16090.png #> 1499 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052059.png #> 1500 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038987.png #> 1501 <NA> #> 1502 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971698.png #> 1503 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4220624.png #> 1504 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915520.png #> 1505 <NA> #> 1506 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2998120.png #> 1507 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3923413.png #> 1508 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037468.png #> 1509 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3110565.png #> 1510 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139453.png #> 1511 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040207.png #> 1512 <NA> #> 1513 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242205.png #> 1514 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045267.png #> 1515 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047566.png #> 1516 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3928931.png #> 1517 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121587.png #> 1518 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516325.png #> 1519 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17388.png #> 1520 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17037.png #> 1521 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4611506.png #> 1522 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16770.png #> 1523 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123064.png #> 1524 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035113.png #> 1525 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3920814.png #> 1526 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126153.png #> 1527 <NA> #> 1528 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116739.png #> 1529 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115949.png #> 1530 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115313.png #> 1531 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034961.png #> 1532 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115480.png #> 1533 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124900.png #> 1534 <NA> #> 1535 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038524.png #> 1536 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979520.png #> 1537 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3699935.png #> 1538 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917812.png #> 1539 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16777.png #> 1540 <NA> #> 1541 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4052042.png #> 1542 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2983509.png #> 1543 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886819.png #> 1544 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2508079.png #> 1545 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047488.png #> 1546 <NA> #> 1547 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2531358.png #> 1548 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930900.png #> 1549 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914240.png #> 1550 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13200.png #> 1551 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3061612.png #> 1552 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915174.png #> 1553 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2586703.png #> 1554 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15072.png #> 1555 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4282647.png #> 1556 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048897.png #> 1557 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970192.png #> 1558 <NA> #> 1559 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034944.png #> 1560 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2579604.png #> 1561 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051889.png #> 1562 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15786.png #> 1563 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4243160.png #> 1564 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115394.png #> 1565 <NA> #> 1566 <NA> #> 1567 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039043.png #> 1568 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4044148.png #> 1569 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2582448.png #> 1570 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045158.png #> 1571 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917290.png #> 1572 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040652.png #> 1573 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3924364.png #> 1574 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128630.png #> 1575 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037361.png #> 1576 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915163.png #> 1577 <NA> #> 1578 <NA> #> 1579 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971248.png #> 1580 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917909.png #> 1581 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895841.png #> 1582 <NA> #> 1583 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122136.png #> 1584 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17259.png #> 1585 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040432.png #> 1586 <NA> #> 1587 <NA> #> 1588 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916207.png #> 1589 <NA> #> 1590 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15851.png #> 1591 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15976.png #> 1592 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914553.png #> 1593 <NA> #> 1594 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045210.png #> 1595 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576242.png #> 1596 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052926.png #> 1597 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915487.png #> 1598 <NA> #> 1599 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4408979.png #> 1600 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121634.png #> 1601 <NA> #> 1602 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4058925.png #> 1603 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115312.png #> 1604 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122930.png #> 1605 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3044859.png #> 1606 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515270.png #> 1607 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17377.png #> 1608 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3055899.png #> 1609 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045132.png #> 1610 <NA> #> 1611 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259804.png #> 1612 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16883.png #> 1613 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3140643.png #> 1614 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122169.png #> 1615 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122906.png #> 1616 <NA> #> 1617 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4043618.png #> 1618 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16665.png #> 1619 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052422.png #> 1620 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042702.png #> 1621 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15801.png #> 1622 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16958.png #> 1623 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577773.png #> 1624 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115922.png #> 1625 <NA> #> 1626 <NA> #> 1627 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15422.png #> 1628 <NA> #> 1629 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116370.png #> 1630 <NA> #> 1631 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128449.png #> 1632 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915398.png #> 1633 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4055171.png #> 1634 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139477.png #> 1635 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11291.png #> 1636 <NA> #> 1637 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3118131.png #> 1638 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16782.png #> 1639 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4361606.png #> 1640 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042494.png #> 1641 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3925346.png #> 1642 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115375.png #> 1643 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242214.png #> 1644 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241213.png #> 1645 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035518.png #> 1646 <NA> #> 1647 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15847.png #> 1648 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2514206.png #> 1649 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971280.png #> 1650 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4329472.png #> 1651 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043116.png #> 1652 <NA> #> 1653 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036055.png #> 1654 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3119490.png #> 1655 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916124.png #> 1656 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3066052.png #> 1657 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4408854.png #> 1658 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915097.png #> 1659 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035004.png #> 1660 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120659.png #> 1661 <NA> #> 1662 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120588.png #> 1663 <NA> #> 1664 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124538.png #> 1665 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980460.png #> 1666 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4028212.png #> 1667 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036416.png #> 1668 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116406.png #> 1669 <NA> #> 1670 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046399.png #> 1671 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134666.png #> 1672 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046536.png #> 1673 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972896.png #> 1674 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045373.png #> 1675 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4239833.png #> 1676 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3153653.png #> 1677 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040901.png #> 1678 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932348.png #> 1679 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116645.png #> 1680 <NA> #> 1681 <NA> #> 1682 <NA> #> 1683 <NA> #> 1684 <NA> #> 1685 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116179.png #> 1686 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040613.png #> 1687 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039007.png #> 1688 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3144988.png #> 1689 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4048718.png #> 1690 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917012.png #> 1691 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035013.png #> 1692 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035663.png #> 1693 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3675805.png #> 1694 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4028749.png #> 1695 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4032481.png #> 1696 <NA> #> 1697 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047191.png #> 1698 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040703.png #> 1699 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127294.png #> 1700 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047495.png #> 1701 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16716.png #> 1702 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054857.png #> 1703 <NA> #> 1704 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4389458.png #> 1705 <NA> #> 1706 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914150.png #> 1707 <NA> #> 1708 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056608.png #> 1709 <NA> #> 1710 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053774.png #> 1711 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4249087.png #> 1712 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134310.png #> 1713 <NA> #> 1714 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115317.png #> 1715 <NA> #> 1716 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116177.png #> 1717 <NA> #> 1718 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052667.png #> 1719 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043136.png #> 1720 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048692.png #> 1721 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040109.png #> 1722 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122678.png #> 1723 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3909013.png #> 1724 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040968.png #> 1725 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116424.png #> 1726 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035542.png #> 1727 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4422336.png #> 1728 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120552.png #> 1729 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043198.png #> 1730 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040008.png #> 1731 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515613.png #> 1732 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914440.png #> 1733 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917660.png #> 1734 <NA> #> 1735 <NA> #> 1736 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035478.png #> 1737 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052180.png #> 1738 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3706968.png #> 1739 <NA> #> 1740 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917563.png #> 1741 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9641.png #> 1742 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039396.png #> 1743 <NA> #> 1744 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15153.png #> 1745 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124092.png #> 1746 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127051.png #> 1747 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12483.png #> 1748 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3675812.png #> 1749 <NA> #> 1750 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240021.png #> 1751 <NA> #> 1752 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916209.png #> 1753 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039359.png #> 1754 <NA> #> 1755 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3918003.png #> 1756 <NA> #> 1757 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2573401.png #> 1758 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3924367.png #> 1759 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122103.png #> 1760 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052096.png #> 1761 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15880.png #> 1762 <NA> #> 1763 <NA> #> 1764 <NA> #> 1765 <NA> #> 1766 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051813.png #> 1767 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930066.png #> 1768 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046715.png #> 1769 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3910287.png #> 1770 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11283.png #> 1771 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977187.png #> 1772 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3911927.png #> 1773 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056458.png #> 1774 <NA> #> 1775 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16864.png #> 1776 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982884.png #> 1777 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4410136.png #> 1778 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045458.png #> 1779 <NA> #> 1780 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574666.png #> 1781 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053795.png #> 1782 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4032484.png #> 1783 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046687.png #> 1784 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14398.png #> 1785 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4243831.png #> 1786 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912028.png #> 1787 <NA> #> 1788 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039413.png #> 1789 <NA> #> 1790 <NA> #> 1791 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3691739.png #> 1792 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4365493.png #> 1793 <NA> #> 1794 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051389.png #> 1795 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915990.png #> 1796 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040004.png #> 1797 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3863182.png #> 1798 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13281.png #> 1799 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2580666.png #> 1800 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4339830.png #> 1801 <NA> #> 1802 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916917.png #> 1803 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116746.png #> 1804 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139036.png #> 1805 <NA> #> 1806 <NA> #> 1807 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035611.png #> 1808 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123052.png #> 1809 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127313.png #> 1810 <NA> #> 1811 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129310.png #> 1812 <NA> #> 1813 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039254.png #> 1814 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241394.png #> 1815 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043128.png #> 1816 <NA> #> 1817 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120358.png #> 1818 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036959.png #> 1819 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914613.png #> 1820 <NA> #> 1821 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574229.png #> 1822 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054855.png #> 1823 <NA> #> 1824 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13186.png #> 1825 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3674831.png #> 1826 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919555.png #> 1827 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15972.png #> 1828 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17404.png #> 1829 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047572.png #> 1830 <NA> #> 1831 <NA> #> 1832 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045779.png #> 1833 <NA> #> 1834 <NA> #> 1835 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4411189.png #> 1836 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2973014.png #> 1837 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13247.png #> 1838 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917870.png #> 1839 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3061740.png #> 1840 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2582324.png #> 1841 <NA> #> 1842 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2983314.png #> 1843 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12471.png #> 1844 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120590.png #> 1845 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038941.png #> 1846 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3910544.png #> 1847 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3068267.png #> 1848 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040640.png #> 1849 <NA> #> 1850 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116136.png #> 1851 <NA> #> 1852 <NA> #> 1853 <NA> #> 1854 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912092.png #> 1855 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121378.png #> 1856 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12537.png #> 1857 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576854.png #> 1858 <NA> #> 1859 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4683123.png #> 1860 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3894912.png #> 1861 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4069806.png #> 1862 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15818.png #> 1863 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915522.png #> 1864 <NA> #> 1865 <NA> #> 1866 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116680.png #> 1867 <NA> #> 1868 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037591.png #> 1869 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932430.png #> 1870 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045138.png #> 1871 <NA> #> 1872 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2579850.png #> 1873 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259493.png #> 1874 <NA> #> 1875 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4239694.png #> 1876 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2613234.png #> 1877 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971478.png #> 1878 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915506.png #> 1879 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054031.png #> 1880 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035458.png #> 1881 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14966.png #> 1882 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126182.png #> 1883 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3943270.png #> 1884 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16929.png #> 1885 <NA> #> 1886 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15881.png #> 1887 <NA> #> 1888 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917058.png #> 1889 <NA> #> 1890 <NA> #> 1891 <NA> #> 1892 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053801.png #> 1893 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728305.png #> 1894 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976639.png #> 1895 <NA> #> 1896 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2614825.png #> 1897 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980071.png #> 1898 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728258.png #> 1899 <NA> #> 1900 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053044.png #> 1901 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3044732.png #> 1902 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916655.png #> 1903 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115469.png #> 1904 <NA> #> 1905 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577078.png #> 1906 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242251.png #> 1907 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17285.png #> 1908 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15841.png #> 1909 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117258.png #> 1910 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134316.png #> 1911 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4329484.png #> 1912 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13240.png #> 1913 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917668.png #> 1914 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3064131.png #> 1915 <NA> #> 1916 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035479.png #> 1917 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051909.png #> 1918 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932422.png #> 1919 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4232830.png #> 1920 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3921709.png #> 1921 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2581818.png #> 1922 <NA> #> 1923 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728263.png #> 1924 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051398.png #> 1925 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978304.png #> 1926 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3862861.png #> 1927 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969922.png #> 1928 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052889.png #> 1929 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915528.png #> 1930 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052357.png #> 1931 <NA> #> 1932 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/8495.png #> 1933 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576569.png #> 1934 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3925344.png #> 1935 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2985235.png #> 1936 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971660.png #> 1937 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16327.png #> 1938 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045160.png #> 1939 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3072292.png #> 1940 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930054.png #> 1941 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932244.png #> 1942 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10062.png #> 1943 <NA> #> 1944 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134312.png #> 1945 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13496.png #> 1946 <NA> #> 1947 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3686689.png #> 1948 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125280.png #> 1949 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16757.png #> 1950 <NA> #> 1951 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972092.png #> 1952 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972236.png #> 1953 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576980.png #> 1954 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126367.png #> 1955 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4047365.png #> 1956 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979843.png #> 1957 <NA> #> 1958 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972091.png #> 1959 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15994.png #> 1960 <NA> #> 1961 <NA> #> 1962 <NA> #> 1963 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929633.png #> 1964 <NA> #> 1965 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576804.png #> 1966 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576925.png #> 1967 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15403.png #> 1968 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577731.png #> 1969 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3843945.png #> 1970 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042373.png #> 1971 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241475.png #> 1972 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122167.png #> 1973 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115365.png #> 1974 <NA> #> 1975 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16804.png #> 1976 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059722.png #> 1977 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051400.png #> 1978 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3135321.png #> 1979 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046320.png #> 1980 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038818.png #> 1981 <NA> #> 1982 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120980.png #> 1983 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17258.png #> 1984 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3060000.png #> 1985 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576733.png #> 1986 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3892777.png #> 1987 <NA> #> 1988 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2513035.png #> 1989 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2509574.png #> 1990 <NA> #> 1991 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3147988.png #> 1992 <NA> #> 1993 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576002.png #> 1994 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12691.png #> 1995 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124702.png #> 1996 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982870.png #> 1997 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978935.png #> 1998 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577707.png #> 1999 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036214.png #> 2000 <NA> #> 2001 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039059.png #> 2002 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242516.png #> 2003 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052527.png #> 2004 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4047458.png #> 2005 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914456.png #> 2006 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977740.png #> 2007 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895843.png #> 2008 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728308.png #> 2009 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4421391.png #> 2010 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057956.png #> 2011 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035299.png #> 2012 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15846.png #> 2013 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728266.png #> 2014 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915309.png #> 2015 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972342.png #> 2016 <NA> #> 2017 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040965.png #> 2018 <NA> #> 2019 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576443.png #> 2020 <NA> #> 2021 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124679.png #> 2022 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577429.png #> 2023 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3133487.png #> 2024 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977645.png #> 2025 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977798.png #> 2026 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042725.png #> 2027 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047530.png #> 2028 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054029.png #> 2029 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577637.png #> 2030 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915107.png #> 2031 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915507.png #> 2032 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2987743.png #> 2033 <NA> #> 2034 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576885.png #> 2035 <NA> #> 2036 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3843470.png #> 2037 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2517316.png #> 2038 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15792.png #> 2039 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917592.png #> 2040 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115303.png #> 2041 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035008.png #> 2042 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121541.png #> 2043 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4047661.png #> 2044 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976649.png #> 2045 <NA> #> 2046 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4271632.png #> 2047 <NA> #> 2048 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049959.png #> 2049 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17475.png #> 2050 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578570.png #> 2051 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241479.png #> 2052 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3926936.png #> 2053 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127211.png #> 2054 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4243315.png #> 2055 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886818.png #> 2056 <NA> #> 2057 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915115.png #> 2058 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2570986.png #> 2059 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042455.png #> 2060 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040470.png #> 2061 <NA> #> 2062 <NA> #> 2063 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052897.png #> 2064 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4198676.png #> 2065 <NA> #> 2066 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3138744.png #> 2067 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116384.png #> 2068 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116164.png #> 2069 <NA> #> 2070 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17051.png #> 2071 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915145.png #> 2072 <NA> #> 2073 <NA> #> 2074 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039436.png #> 2075 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2991662.png #> 2076 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577641.png #> 2077 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576623.png #> 2078 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17177.png #> 2079 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259979.png #> 2080 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054845.png #> 2081 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052876.png #> 2082 <NA> #> 2083 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124069.png #> 2084 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915399.png #> 2085 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4047834.png #> 2086 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116729.png #> 2087 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035385.png #> 2088 <NA> #> 2089 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3041098.png #> 2090 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919541.png #> 2091 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259170.png #> 2092 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3676819.png #> 2093 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16890.png #> 2094 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045120.png #> 2095 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3909365.png #> 2096 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2588098.png #> 2097 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4220625.png #> 2098 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13980.png #> 2099 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929845.png #> 2100 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040572.png #> 2101 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037511.png #> 2102 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046537.png #> 2103 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14945.png #> 2104 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3908608.png #> 2105 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976560.png #> 2106 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127274.png #> 2107 <NA> #> 2108 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972362.png #> 2109 <NA> #> 2110 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121414.png #> 2111 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929833.png #> 2112 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122420.png #> 2113 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038849.png #> 2114 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13373.png #> 2115 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259181.png #> 2116 <NA> #> 2117 <NA> #> 2118 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979860.png #> 2119 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15811.png #> 2120 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972144.png #> 2121 <NA> #> 2122 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128685.png #> 2123 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895835.png #> 2124 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4012556.png #> 2125 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4682831.png #> 2126 <NA> #> 2127 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578718.png #> 2128 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3975763.png #> 2129 <NA> #> 2130 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3701669.png #> 2131 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2510863.png #> 2132 <NA> #> 2133 <NA> #> 2134 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3892773.png #> 2135 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045212.png #> 2136 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971816.png #> 2137 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121538.png #> 2138 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16711.png #> 2139 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038946.png #> 2140 <NA> #> 2141 <NA> #> 2142 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15726.png #> 2143 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3821678.png #> 2144 <NA> #> 2145 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16861.png #> 2146 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115972.png #> 2147 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3924352.png #> 2148 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4048231.png #> 2149 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575446.png #> 2150 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123954.png #> 2151 <NA> #> 2152 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120502.png #> 2153 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916584.png #> 2154 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12773.png #> 2155 <NA> #> 2156 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886812.png #> 2157 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14880.png #> 2158 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977737.png #> 2159 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052450.png #> 2160 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036149.png #> 2161 <NA> #> 2162 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121597.png #> 2163 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576336.png #> 2164 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123969.png #> 2165 <NA> #> 2166 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116593.png #> 2167 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4048244.png #> 2168 <NA> #> 2169 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930270.png #> 2170 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4411192.png #> 2171 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040980.png #> 2172 <NA> #> 2173 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122920.png #> 2174 <NA> #> 2175 <NA> #> 2176 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047968.png #> 2177 <NA> #> 2178 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125115.png #> 2179 <NA> #> 2180 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916566.png #> 2181 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16460.png #> 2182 <NA> #> 2183 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917067.png #> 2184 <NA> #> 2185 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3892889.png #> 2186 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929637.png #> 2187 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4262921.png #> 2188 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578529.png #> 2189 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16788.png #> 2190 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14942.png #> 2191 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917853.png #> 2192 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035286.png #> 2193 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976540.png #> 2194 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15089.png #> 2195 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4401811.png #> 2196 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039010.png #> 2197 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971699.png #> 2198 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139389.png #> 2199 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16286.png #> 2200 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3931774.png #> 2201 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971027.png #> 2202 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13236.png #> 2203 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17487.png #> 2204 <NA> #> 2205 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121649.png #> 2206 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2973647.png #> 2207 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980080.png #> 2208 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115974.png #> 2209 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2517752.png #> 2210 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042726.png #> 2211 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040031.png #> 2212 <NA> #> 2213 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2511690.png #> 2214 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051894.png #> 2215 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912189.png #> 2216 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14185.png #> 2217 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15958.png #> 2218 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115383.png #> 2219 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916922.png #> 2220 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974365.png #> 2221 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115349.png #> 2222 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10621.png #> 2223 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3913295.png #> 2224 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978887.png #> 2225 <NA> #> 2226 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3924319.png #> 2227 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3925350.png #> 2228 <NA> #> 2229 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051905.png #> 2230 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4048736.png #> 2231 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046528.png #> 2232 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16772.png #> 2233 <NA> #> 2234 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121423.png #> 2235 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2570996.png #> 2236 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116187.png #> 2237 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14933.png #> 2238 <NA> #> 2239 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3961466.png #> 2240 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575907.png #> 2241 <NA> #> 2242 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914817.png #> 2243 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16912.png #> 2244 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039713.png #> 2245 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047571.png #> 2246 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039374.png #> 2247 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124112.png #> 2248 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17361.png #> 2249 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576917.png #> 2250 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116455.png #> 2251 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056899.png #> 2252 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046545.png #> 2253 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576188.png #> 2254 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128713.png #> 2255 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976554.png #> 2256 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043109.png #> 2257 <NA> #> 2258 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3931395.png #> 2259 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13994.png #> 2260 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12477.png #> 2261 <NA> #> 2262 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3892775.png #> 2263 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16913.png #> 2264 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128721.png #> 2265 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16838.png #> 2266 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3925347.png #> 2267 <NA> #> 2268 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15478.png #> 2269 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039607.png #> 2270 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12527.png #> 2271 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046439.png #> 2272 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045264.png #> 2273 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240861.png #> 2274 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054212.png #> 2275 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576179.png #> 2276 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046522.png #> 2277 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3933327.png #> 2278 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915308.png #> 2279 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051869.png #> 2280 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045523.png #> 2281 <NA> #> 2282 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916433.png #> 2283 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916129.png #> 2284 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578369.png #> 2285 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576395.png #> 2286 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052122.png #> 2287 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4424106.png #> 2288 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3910176.png #> 2289 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971618.png #> 2290 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11387.png #> 2291 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4047839.png #> 2292 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115387.png #> 2293 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13238.png #> 2294 <NA> #> 2295 <NA> #> 2296 <NA> #> 2297 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116166.png #> 2298 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980115.png #> 2299 <NA> #> 2300 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121421.png #> 2301 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979612.png #> 2302 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15359.png #> 2303 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977661.png #> 2304 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115481.png #> 2305 <NA> #> 2306 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16473.png #> 2307 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13975.png #> 2308 <NA> #> 2309 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122882.png #> 2310 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929920.png #> 2311 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980150.png #> 2312 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034953.png #> 2313 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3871875.png #> 2314 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121552.png #> 2315 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2585962.png #> 2316 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16758.png #> 2317 <NA> #> 2318 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13971.png #> 2319 <NA> #> 2320 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574023.png #> 2321 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124058.png #> 2322 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3918310.png #> 2323 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982313.png #> 2324 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039064.png #> 2325 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886601.png #> 2326 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895834.png #> 2327 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977635.png #> 2328 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917872.png #> 2329 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728248.png #> 2330 <NA> #> 2331 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4002046.png #> 2332 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3921970.png #> 2333 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4212884.png #> 2334 <NA> #> 2335 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3068939.png #> 2336 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15058.png #> 2337 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2985659.png #> 2338 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16486.png #> 2339 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977884.png #> 2340 <NA> #> 2341 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971641.png #> 2342 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14958.png #> 2343 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917657.png #> 2344 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4027908.png #> 2345 <NA> #> 2346 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124890.png #> 2347 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976541.png #> 2348 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929818.png #> 2349 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052996.png #> 2350 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9287.png #> 2351 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575788.png #> 2352 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052499.png #> 2353 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15025.png #> 2354 <NA> #> 2355 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3938169.png #> 2356 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915147.png #> 2357 <NA> #> 2358 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978278.png #> 2359 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122925.png #> 2360 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4258199.png #> 2361 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917331.png #> 2362 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047575.png #> 2363 <NA> #> 2364 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16004.png #> 2365 <NA> #> 2366 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979620.png #> 2367 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978275.png #> 2368 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17178.png #> 2369 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917676.png #> 2370 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15821.png #> 2371 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4045180.png #> 2372 <NA> #> 2373 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969939.png #> 2374 <NA> #> 2375 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2468609.png #> 2376 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2511109.png #> 2377 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577134.png #> 2378 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046676.png #> 2379 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16944.png #> 2380 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054850.png #> 2381 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3911993.png #> 2382 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15920.png #> 2383 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3002265.png #> 2384 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12426.png #> 2385 <NA> #> 2386 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3911853.png #> 2387 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576399.png #> 2388 <NA> #> 2389 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115360.png #> 2390 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982151.png #> 2391 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2987440.png #> 2392 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057863.png #> 2393 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976316.png #> 2394 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4245174.png #> 2395 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120558.png #> 2396 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3044726.png #> 2397 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128451.png #> 2398 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919609.png #> 2399 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4411193.png #> 2400 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047578.png #> 2401 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917200.png #> 2402 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042435.png #> 2403 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039057.png #> 2404 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14402.png #> 2405 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574918.png #> 2406 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929645.png #> 2407 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035170.png #> 2408 <NA> #> 2409 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057850.png #> 2410 <NA> #> 2411 <NA> #> 2412 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116096.png #> 2413 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972286.png #> 2414 <NA> #> 2415 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3911073.png #> 2416 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916720.png #> 2417 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121660.png #> 2418 <NA> #> 2419 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242973.png #> 2420 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3144984.png #> 2421 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2572841.png #> 2422 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116105.png #> 2423 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048659.png #> 2424 <NA> #> 2425 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115962.png #> 2426 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242245.png #> 2427 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046675.png #> 2428 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117846.png #> 2429 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576895.png #> 2430 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038440.png #> 2431 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915970.png #> 2432 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15861.png #> 2433 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117135.png #> 2434 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120347.png #> 2435 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241470.png #> 2436 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128740.png #> 2437 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971622.png #> 2438 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974353.png #> 2439 <NA> #> 2440 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4030955.png #> 2441 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125853.png #> 2442 <NA> #> 2443 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116748.png #> 2444 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979591.png #> 2445 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127587.png #> 2446 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035483.png #> 2447 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578384.png #> 2448 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052175.png #> 2449 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977625.png #> 2450 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122143.png #> 2451 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045119.png #> 2452 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12460.png #> 2453 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976495.png #> 2454 <NA> #> 2455 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4045165.png #> 2456 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128715.png #> 2457 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123054.png #> 2458 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915171.png #> 2459 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979855.png #> 2460 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034766.png #> 2461 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123233.png #> 2462 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122593.png #> 2463 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035109.png #> 2464 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978273.png #> 2465 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051924.png #> 2466 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17497.png #> 2467 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038811.png #> 2468 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16359.png #> 2469 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17304.png #> 2470 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516029.png #> 2471 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15108.png #> 2472 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042516.png #> 2473 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14460.png #> 2474 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13403.png #> 2475 <NA> #> 2476 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915142.png #> 2477 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4032758.png #> 2478 <NA> #> 2479 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16923.png #> 2480 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17066.png #> 2481 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3921936.png #> 2482 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035114.png #> 2483 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122865.png #> 2484 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259566.png #> 2485 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13964.png #> 2486 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040204.png #> 2487 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577619.png #> 2488 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917792.png #> 2489 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929824.png #> 2490 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15837.png #> 2491 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116144.png #> 2492 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15693.png #> 2493 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122866.png #> 2494 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3923397.png #> 2495 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915536.png #> 2496 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575965.png #> 2497 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4683485.png #> 2498 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048680.png #> 2499 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053732.png #> 2500 <NA> #> 2501 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929630.png #> 2502 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15009.png #> 2503 <NA> #> 2504 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045260.png #> 2505 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040210.png #> 2506 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916410.png #> 2507 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14054.png #> 2508 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051876.png #> 2509 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930035.png #> 2510 <NA> #> 2511 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4044452.png #> 2512 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3894852.png #> 2513 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4045062.png #> 2514 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15980.png #> 2515 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3791110.png #> 2516 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2968204.png #> 2517 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3843469.png #> 2518 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4041703.png #> 2519 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056577.png #> 2520 <NA> #> 2521 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241723.png #> 2522 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2973626.png #> 2523 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040623.png #> 2524 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982761.png #> 2525 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916945.png #> 2526 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919510.png #> 2527 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3871102.png #> 2528 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127306.png #> 2529 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980378.png #> 2530 <NA> #> 2531 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976592.png #> 2532 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052177.png #> 2533 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974858.png #> 2534 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978929.png #> 2535 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16730.png #> 2536 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051877.png #> 2537 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4239965.png #> 2538 <NA> #> 2539 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127025.png #> 2540 <NA> #> 2541 <NA> #> 2542 <NA> #> 2543 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4243250.png #> 2544 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034849.png #> 2545 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4411769.png #> 2546 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970625.png #> 2547 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3870072.png #> 2548 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16769.png #> 2549 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4264341.png #> 2550 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982866.png #> 2551 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980110.png #> 2552 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16879.png #> 2553 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3858271.png #> 2554 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127367.png #> 2555 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932901.png #> 2556 <NA> #> 2557 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051911.png #> 2558 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915123.png #> 2559 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039375.png #> 2560 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976151.png #> 2561 <NA> #> 2562 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3957452.png #> 2563 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14959.png #> 2564 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2567711.png #> 2565 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045172.png #> 2566 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886528.png #> 2567 <NA> #> 2568 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120464.png #> 2569 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3041112.png #> 2570 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040982.png #> 2571 <NA> #> 2572 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970204.png #> 2573 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4076951.png #> 2574 <NA> #> 2575 <NA> #> 2576 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16243.png #> 2577 <NA> #> 2578 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16720.png #> 2579 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240528.png #> 2580 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728281.png #> 2581 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3911689.png #> 2582 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054951.png #> 2583 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2579634.png #> 2584 <NA> #> 2585 <NA> #> 2586 <NA> #> 2587 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3137087.png #> 2588 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2983155.png #> 2589 <NA> #> 2590 <NA> #> 2591 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15718.png #> 2592 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2973637.png #> 2593 <NA> #> 2594 <NA> #> 2595 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979482.png #> 2596 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577367.png #> 2597 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116110.png #> 2598 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971584.png #> 2599 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980597.png #> 2600 <NA> #> 2601 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048026.png #> 2602 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16771.png #> 2603 <NA> #> 2604 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574302.png #> 2605 <NA> #> 2606 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914277.png #> 2607 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2583951.png #> 2608 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240090.png #> 2609 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3701582.png #> 2610 <NA> #> 2611 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035239.png #> 2612 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042565.png #> 2613 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16821.png #> 2614 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11394.png #> 2615 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051381.png #> 2616 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914395.png #> 2617 <NA> #> 2618 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915411.png #> 2619 <NA> #> 2620 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034952.png #> 2621 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123675.png #> 2622 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123857.png #> 2623 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979477.png #> 2624 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932420.png #> 2625 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123050.png #> 2626 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2582410.png #> 2627 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039253.png #> 2628 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2519013.png #> 2629 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15887.png #> 2630 <NA> #> 2631 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042778.png #> 2632 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576716.png #> 2633 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3071572.png #> 2634 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123075.png #> 2635 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115330.png #> 2636 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4249030.png #> 2637 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576019.png #> 2638 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929118.png #> 2639 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035403.png #> 2640 <NA> #> 2641 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4030747.png #> 2642 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917849.png #> 2643 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3155188.png #> 2644 <NA> #> 2645 <NA> #> 2646 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916744.png #> 2647 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14124.png #> 2648 <NA> #> 2649 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917576.png #> 2650 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046538.png #> 2651 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116391.png #> 2652 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15863.png #> 2653 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3935064.png #> 2654 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241977.png #> 2655 <NA> #> 2656 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971603.png #> 2657 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045287.png #> 2658 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116058.png #> 2659 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123938.png #> 2660 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139368.png #> 2661 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577814.png #> 2662 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15222.png #> 2663 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886327.png #> 2664 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974247.png #> 2665 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036924.png #> 2666 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035463.png #> 2667 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035389.png #> 2668 <NA> #> 2669 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576599.png #> 2670 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576229.png #> 2671 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126204.png #> 2672 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3693166.png #> 2673 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13239.png #> 2674 <NA> #> 2675 <NA> #> 2676 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241264.png #> 2677 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13973.png #> 2678 <NA> #> 2679 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3044706.png #> 2680 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115336.png #> 2681 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929834.png #> 2682 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14941.png #> 2683 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2983055.png #> 2684 <NA> #> 2685 <NA> #> 2686 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971725.png #> 2687 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577757.png #> 2688 <NA> #> 2689 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050478.png #> 2690 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121544.png #> 2691 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038902.png #> 2692 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971929.png #> 2693 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3910385.png #> 2694 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040762.png #> 2695 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2612151.png #> 2696 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4360645.png #> 2697 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056916.png #> 2698 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2565971.png #> 2699 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14962.png #> 2700 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4044438.png #> 2701 <NA> #> 2702 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121009.png #> 2703 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978247.png #> 2704 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3055886.png #> 2705 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126364.png #> 2706 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15797.png #> 2707 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577631.png #> 2708 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4334215.png #> 2709 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117259.png #> 2710 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129116.png #> 2711 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932668.png #> 2712 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127264.png #> 2713 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4371989.png #> 2714 <NA> #> 2715 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11252.png #> 2716 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059989.png #> 2717 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040715.png #> 2718 <NA> #> 2719 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916925.png #> 2720 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3060022.png #> 2721 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035006.png #> 2722 <NA> #> 2723 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4045163.png #> 2724 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051439.png #> 2725 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040790.png #> 2726 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15835.png #> 2727 <NA> #> 2728 <NA> #> 2729 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916564.png #> 2730 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972240.png #> 2731 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121023.png #> 2732 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917940.png #> 2733 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16786.png #> 2734 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915296.png #> 2735 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040035.png #> 2736 <NA> #> 2737 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139522.png #> 2738 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241802.png #> 2739 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124964.png #> 2740 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4050373.png #> 2741 <NA> #> 2742 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3931397.png #> 2743 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4373673.png #> 2744 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047504.png #> 2745 <NA> #> 2746 <NA> #> 2747 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2591718.png #> 2748 <NA> #> 2749 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126353.png #> 2750 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035103.png #> 2751 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046719.png #> 2752 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3044724.png #> 2753 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13249.png #> 2754 <NA> #> 2755 <NA> #> 2756 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516298.png #> 2757 <NA> #> 2758 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124067.png #> 2759 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576665.png #> 2760 <NA> #> 2761 <NA> #> 2762 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115371.png #> 2763 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036213.png #> 2764 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3925345.png #> 2765 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916144.png #> 2766 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259252.png #> 2767 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4408864.png #> 2768 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16873.png #> 2769 <NA> #> 2770 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122690.png #> 2771 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129298.png #> 2772 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241451.png #> 2773 <NA> #> 2774 <NA> #> 2775 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13233.png #> 2776 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3119119.png #> 2777 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16798.png #> 2778 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915253.png #> 2779 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13977.png #> 2780 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3699462.png #> 2781 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122915.png #> 2782 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576450.png #> 2783 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17372.png #> 2784 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038994.png #> 2785 <NA> #> 2786 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575164.png #> 2787 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977819.png #> 2788 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14926.png #> 2789 <NA> #> 2790 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129446.png #> 2791 <NA> #> 2792 <NA> #> 2793 <NA> #> 2794 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128268.png #> 2795 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036261.png #> 2796 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045282.png #> 2797 <NA> #> 2798 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037333.png #> 2799 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116149.png #> 2800 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3920867.png #> 2801 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978524.png #> 2802 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2967885.png #> 2803 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977615.png #> 2804 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16789.png #> 2805 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040626.png #> 2806 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917599.png #> 2807 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512172.png #> 2808 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049807.png #> 2809 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980142.png #> 2810 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129473.png #> 2811 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971556.png #> 2812 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3060134.png #> 2813 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971616.png #> 2814 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3119215.png #> 2815 <NA> #> 2816 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516053.png #> 2817 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126261.png #> 2818 <NA> #> 2819 <NA> #> 2820 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2472364.png #> 2821 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3044720.png #> 2822 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/5536.png #> 2823 <NA> #> 2824 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116407.png #> 2825 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040616.png #> 2826 <NA> #> 2827 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116721.png #> 2828 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970270.png #> 2829 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4262315.png #> 2830 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886841.png #> 2831 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241941.png #> 2832 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035072.png #> 2833 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970090.png #> 2834 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128774.png #> 2835 <NA> #> 2836 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2573103.png #> 2837 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16732.png #> 2838 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051387.png #> 2839 <NA> #> 2840 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049290.png #> 2841 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929924.png #> 2842 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932963.png #> 2843 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126263.png #> 2844 <NA> #> 2845 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046692.png #> 2846 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932905.png #> 2847 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4049301.png #> 2848 <NA> #> 2849 <NA> #> 2850 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122449.png #> 2851 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241983.png #> 2852 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035018.png #> 2853 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728262.png #> 2854 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120348.png #> 2855 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122432.png #> 2856 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121344.png #> 2857 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122630.png #> 2858 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16948.png #> 2859 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3821692.png #> 2860 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912347.png #> 2861 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139387.png #> 2862 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043258.png #> 2863 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046326.png #> 2864 <NA> #> 2865 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4243244.png #> 2866 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886824.png #> 2867 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886834.png #> 2868 <NA> #> 2869 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13988.png #> 2870 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039919.png #> 2871 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915396.png #> 2872 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4254276.png #> 2873 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577642.png #> 2874 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3911910.png #> 2875 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912562.png #> 2876 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13274.png #> 2877 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116449.png #> 2878 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16528.png #> 2879 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17068.png #> 2880 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13493.png #> 2881 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039164.png #> 2882 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115979.png #> 2883 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036138.png #> 2884 <NA> #> 2885 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051886.png #> 2886 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125114.png #> 2887 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14471.png #> 2888 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4362647.png #> 2889 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15814.png #> 2890 <NA> #> 2891 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978933.png #> 2892 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2473037.png #> 2893 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886816.png #> 2894 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4043130.png #> 2895 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3926229.png #> 2896 <NA> #> 2897 <NA> #> 2898 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14979.png #> 2899 <NA> #> 2900 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035443.png #> 2901 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054862.png #> 2902 <NA> #> 2903 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4042125.png #> 2904 <NA> #> 2905 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17378.png #> 2906 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16753.png #> 2907 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3136374.png #> 2908 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042738.png #> 2909 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971614.png #> 2910 <NA> #> 2911 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121417.png #> 2912 <NA> #> 2913 <NA> #> 2914 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2511825.png #> 2915 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11260.png #> 2916 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577690.png #> 2917 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116658.png #> 2918 <NA> #> 2919 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929851.png #> 2920 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128843.png #> 2921 <NA> #> 2922 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15864.png #> 2923 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2517017.png #> 2924 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14881.png #> 2925 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241403.png #> 2926 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139925.png #> 2927 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046409.png #> 2928 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915427.png #> 2929 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3931401.png #> 2930 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240631.png #> 2931 <NA> #> 2932 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037457.png #> 2933 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919596.png #> 2934 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115373.png #> 2935 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917203.png #> 2936 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577553.png #> 2937 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242246.png #> 2938 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3918639.png #> 2939 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916587.png #> 2940 <NA> #> 2941 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242557.png #> 2942 <NA> #> 2943 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4373904.png #> 2944 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127292.png #> 2945 <NA> #> 2946 <NA> #> 2947 <NA> #> 2948 <NA> #> 2949 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577327.png #> 2950 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3933064.png #> 2951 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039000.png #> 2952 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034950.png #> 2953 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895828.png #> 2954 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917546.png #> 2955 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051650.png #> 2956 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4047650.png #> 2957 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126115.png #> 2958 <NA> #> 2959 <NA> #> 2960 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15705.png #> 2961 <NA> #> 2962 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16746.png #> 2963 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12616.png #> 2964 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577185.png #> 2965 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16743.png #> 2966 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4232831.png #> 2967 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039292.png #> 2968 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115337.png #> 2969 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128743.png #> 2970 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15939.png #> 2971 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17444.png #> 2972 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16726.png #> 2973 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728261.png #> 2974 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047188.png #> 2975 <NA> #> 2976 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16893.png #> 2977 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16195.png #> 2978 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16735.png #> 2979 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14977.png #> 2980 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040975.png #> 2981 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043110.png #> 2982 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039278.png #> 2983 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2509844.png #> 2984 <NA> #> 2985 <NA> #> 2986 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16717.png #> 2987 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053804.png #> 2988 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576257.png #> 2989 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052434.png #> 2990 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17071.png #> 2991 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971275.png #> 2992 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2582150.png #> 2993 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976114.png #> 2994 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3843843.png #> 2995 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040605.png #> 2996 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045527.png #> 2997 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576040.png #> 2998 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929896.png #> 2999 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16707.png #> 3000 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051807.png #> 3001 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259491.png #> 3002 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116726.png #> 3003 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045220.png #> 3004 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919607.png #> 3005 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3894915.png #> 3006 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047570.png #> 3007 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929641.png #> 3008 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4049391.png #> 3009 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16002.png #> 3010 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9354.png #> 3011 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15819.png #> 3012 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3931424.png #> 3013 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3138826.png #> 3014 <NA> #> 3015 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3908558.png #> 3016 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919117.png #> 3017 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14978.png #> 3018 <NA> #> 3019 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970181.png #> 3020 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916903.png #> 3021 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048402.png #> 3022 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979553.png #> 3023 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512477.png #> 3024 <NA> #> 3025 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4335942.png #> 3026 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970513.png #> 3027 <NA> #> 3028 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15123.png #> 3029 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15082.png #> 3030 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916075.png #> 3031 <NA> #> 3032 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976117.png #> 3033 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13241.png #> 3034 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915777.png #> 3035 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052885.png #> 3036 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574573.png #> 3037 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035685.png #> 3038 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979501.png #> 3039 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16760.png #> 3040 <NA> #> 3041 <NA> #> 3042 <NA> #> 3043 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122976.png #> 3044 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045127.png #> 3045 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576414.png #> 3046 <NA> #> 3047 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3928925.png #> 3048 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3055905.png #> 3049 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2508256.png #> 3050 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120303.png #> 3051 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3880416.png #> 3052 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578377.png #> 3053 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16763.png #> 3054 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035020.png #> 3055 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040151.png #> 3056 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115328.png #> 3057 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16995.png #> 3058 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039604.png #> 3059 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14922.png #> 3060 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126486.png #> 3061 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886598.png #> 3062 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15062.png #> 3063 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122899.png #> 3064 <NA> #> 3065 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052056.png #> 3066 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4360438.png #> 3067 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3119317.png #> 3068 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16787.png #> 3069 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054970.png #> 3070 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122168.png #> 3071 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039042.png #> 3072 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126490.png #> 3073 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16038.png #> 3074 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056354.png #> 3075 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914477.png #> 3076 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932886.png #> 3077 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049726.png #> 3078 <NA> #> 3079 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919107.png #> 3080 <NA> #> 3081 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3873935.png #> 3082 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916923.png #> 3083 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16843.png #> 3084 <NA> #> 3085 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895798.png #> 3086 <NA> #> 3087 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3920823.png #> 3088 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2525492.png #> 3089 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912343.png #> 3090 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049331.png #> 3091 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3155647.png #> 3092 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034790.png #> 3093 <NA> #> 3094 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980206.png #> 3095 <NA> #> 3096 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16019.png #> 3097 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3892689.png #> 3098 <NA> #> 3099 <NA> #> 3100 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886826.png #> 3101 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12895.png #> 3102 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13234.png #> 3103 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038840.png #> 3104 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134362.png #> 3105 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3699530.png #> 3106 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575453.png #> 3107 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2973659.png #> 3108 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121542.png #> 3109 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3722375.png #> 3110 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3920591.png #> 3111 <NA> #> 3112 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12731.png #> 3113 <NA> #> 3114 <NA> #> 3115 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15856.png #> 3116 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16723.png #> 3117 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3894856.png #> 3118 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16967.png #> 3119 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034496.png #> 3120 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035434.png #> 3121 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14985.png #> 3122 <NA> #> 3123 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974344.png #> 3124 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13256.png #> 3125 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3933407.png #> 3126 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039075.png #> 3127 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13078.png #> 3128 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3065813.png #> 3129 <NA> #> 3130 <NA> #> 3131 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049339.png #> 3132 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3165702.png #> 3133 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059021.png #> 3134 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971823.png #> 3135 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15901.png #> 3136 <NA> #> 3137 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2582147.png #> 3138 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929752.png #> 3139 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17283.png #> 3140 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982323.png #> 3141 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240589.png #> 3142 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3938130.png #> 3143 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040778.png #> 3144 <NA> #> 3145 <NA> #> 3146 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977680.png #> 3147 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2973605.png #> 3148 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576240.png #> 3149 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16140.png #> 3150 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10487.png #> 3151 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13987.png #> 3152 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2330.png #> 3153 <NA> #> 3154 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912550.png #> 3155 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917612.png #> 3156 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912551.png #> 3157 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15826.png #> 3158 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2983319.png #> 3159 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115364.png #> 3160 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980148.png #> 3161 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039723.png #> 3162 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115259.png #> 3163 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895859.png #> 3164 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912558.png #> 3165 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978727.png #> 3166 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043080.png #> 3167 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050481.png #> 3168 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17453.png #> 3169 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13229.png #> 3170 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3951441.png #> 3171 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978308.png #> 3172 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4217370.png #> 3173 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116165.png #> 3174 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4368796.png #> 3175 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13934.png #> 3176 <NA> #> 3177 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042890.png #> 3178 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035496.png #> 3179 <NA> #> 3180 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2310331.png #> 3181 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16737.png #> 3182 <NA> #> 3183 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914397.png #> 3184 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3118892.png #> 3185 <NA> #> 3186 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577792.png #> 3187 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040013.png #> 3188 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15109.png #> 3189 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2511330.png #> 3190 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040537.png #> 3191 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048663.png #> 3192 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979515.png #> 3193 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035433.png #> 3194 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977742.png #> 3195 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14974.png #> 3196 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045577.png #> 3197 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3931400.png #> 3198 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116104.png #> 3199 <NA> #> 3200 <NA> #> 3201 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2579840.png #> 3202 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036134.png #> 3203 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051925.png #> 3204 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4043605.png #> 3205 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052125.png #> 3206 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970694.png #> 3207 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054859.png #> 3208 <NA> #> 3209 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3931422.png #> 3210 <NA> #> 3211 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2519211.png #> 3212 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574056.png #> 3213 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16269.png #> 3214 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116082.png #> 3215 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17447.png #> 3216 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915285.png #> 3217 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577392.png #> 3218 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4239817.png #> 3219 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982880.png #> 3220 <NA> #> 3221 <NA> #> 3222 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035369.png #> 3223 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4374269.png #> 3224 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917316.png #> 3225 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051320.png #> 3226 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134288.png #> 3227 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240123.png #> 3228 <NA> #> 3229 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915519.png #> 3230 <NA> #> 3231 <NA> #> 3232 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117315.png #> 3233 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15245.png #> 3234 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035098.png #> 3235 <NA> #> 3236 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2582139.png #> 3237 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125126.png #> 3238 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2518789.png #> 3239 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126081.png #> 3240 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574282.png #> 3241 <NA> #> 3242 <NA> #> 3243 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16010.png #> 3244 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576702.png #> 3245 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122793.png #> 3246 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929644.png #> 3247 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126349.png #> 3248 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047559.png #> 3249 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916074.png #> 3250 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970622.png #> 3251 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13848.png #> 3252 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13294.png #> 3253 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3144994.png #> 3254 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977779.png #> 3255 <NA> #> 3256 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15946.png #> 3257 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120070.png #> 3258 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17087.png #> 3259 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16708.png #> 3260 <NA> #> 3261 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042468.png #> 3262 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122099.png #> 3263 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2514397.png #> 3264 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2509370.png #> 3265 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059936.png #> 3266 <NA> #> 3267 <NA> #> 3268 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11555.png #> 3269 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15948.png #> 3270 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14876.png #> 3271 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129302.png #> 3272 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042749.png #> 3273 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036431.png #> 3274 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127586.png #> 3275 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122154.png #> 3276 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043078.png #> 3277 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125403.png #> 3278 <NA> #> 3279 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4408915.png #> 3280 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059766.png #> 3281 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14099.png #> 3282 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046704.png #> 3283 <NA> #> 3284 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049698.png #> 3285 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2468368.png #> 3286 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915772.png #> 3287 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129455.png #> 3288 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3675550.png #> 3289 <NA> #> 3290 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139456.png #> 3291 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971397.png #> 3292 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049329.png #> 3293 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13982.png #> 3294 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2983209.png #> 3295 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4047646.png #> 3296 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035277.png #> 3297 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971718.png #> 3298 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929785.png #> 3299 <NA> #> 3300 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115306.png #> 3301 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115443.png #> 3302 <NA> #> 3303 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4057082.png #> 3304 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971093.png #> 3305 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976182.png #> 3306 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036831.png #> 3307 <NA> #> 3308 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17196.png #> 3309 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575606.png #> 3310 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16900.png #> 3311 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515490.png #> 3312 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124086.png #> 3313 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042496.png #> 3314 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3058965.png #> 3315 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3061106.png #> 3316 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3141066.png #> 3317 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125816.png #> 3318 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052883.png #> 3319 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120508.png #> 3320 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045465.png #> 3321 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035402.png #> 3322 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979841.png #> 3323 <NA> #> 3324 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578692.png #> 3325 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242154.png #> 3326 <NA> #> 3327 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121034.png #> 3328 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125248.png #> 3329 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116152.png #> 3330 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3060151.png #> 3331 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3686690.png #> 3332 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134690.png #> 3333 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3931408.png #> 3334 <NA> #> 3335 <NA> #> 3336 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241986.png #> 3337 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054950.png #> 3338 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122692.png #> 3339 <NA> #> 3340 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976263.png #> 3341 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4686421.png #> 3342 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3925354.png #> 3343 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3133368.png #> 3344 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929956.png #> 3345 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121581.png #> 3346 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574579.png #> 3347 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054840.png #> 3348 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2566837.png #> 3349 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040163.png #> 3350 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117420.png #> 3351 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15965.png #> 3352 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3068715.png #> 3353 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15827.png #> 3354 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972400.png #> 3355 <NA> #> 3356 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575997.png #> 3357 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054844.png #> 3358 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035866.png #> 3359 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046525.png #> 3360 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122441.png #> 3361 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043184.png #> 3362 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116689.png #> 3363 <NA> #> 3364 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2581273.png #> 3365 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128263.png #> 3366 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121537.png #> 3367 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2511708.png #> 3368 <NA> #> 3369 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122927.png #> 3370 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051330.png #> 3371 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16848.png #> 3372 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242230.png #> 3373 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969952.png #> 3374 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049836.png #> 3375 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121656.png #> 3376 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17202.png #> 3377 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16166.png #> 3378 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2565969.png #> 3379 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115293.png #> 3380 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915436.png #> 3381 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/8664.png #> 3382 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14886.png #> 3383 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2572861.png #> 3384 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980077.png #> 3385 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051902.png #> 3386 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4360294.png #> 3387 <NA> #> 3388 <NA> #> 3389 <NA> #> 3390 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051806.png #> 3391 <NA> #> 3392 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16813.png #> 3393 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052576.png #> 3394 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932936.png #> 3395 <NA> #> 3396 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2580330.png #> 3397 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046705.png #> 3398 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4029893.png #> 3399 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2580216.png #> 3400 <NA> #> 3401 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139946.png #> 3402 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121427.png #> 3403 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121422.png #> 3404 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115314.png #> 3405 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915821.png #> 3406 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036163.png #> 3407 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576491.png #> 3408 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3924318.png #> 3409 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4044121.png #> 3410 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917960.png #> 3411 <NA> #> 3412 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13974.png #> 3413 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16954.png #> 3414 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977627.png #> 3415 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2565338.png #> 3416 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976257.png #> 3417 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10503.png #> 3418 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2565684.png #> 3419 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14976.png #> 3420 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12726.png #> 3421 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057534.png #> 3422 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120360.png #> 3423 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126330.png #> 3424 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13250.png #> 3425 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049048.png #> 3426 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4031164.png #> 3427 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14999.png #> 3428 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3163365.png #> 3429 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17262.png #> 3430 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043224.png #> 3431 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15915.png #> 3432 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052065.png #> 3433 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2511557.png #> 3434 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14110.png #> 3435 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126288.png #> 3436 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11421.png #> 3437 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16846.png #> 3438 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3894905.png #> 3439 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16752.png #> 3440 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116734.png #> 3441 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116186.png #> 3442 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516310.png #> 3443 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3066250.png #> 3444 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979810.png #> 3445 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916742.png #> 3446 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3144996.png #> 3447 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516984.png #> 3448 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4081136.png #> 3449 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120593.png #> 3450 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15978.png #> 3451 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3044707.png #> 3452 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049566.png #> 3453 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3138835.png #> 3454 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972298.png #> 3455 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16830.png #> 3456 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2514816.png #> 3457 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125783.png #> 3458 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048669.png #> 3459 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12624.png #> 3460 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045378.png #> 3461 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14157.png #> 3462 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052502.png #> 3463 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15888.png #> 3464 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2994680.png #> 3465 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972090.png #> 3466 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14139.png #> 3467 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915190.png #> 3468 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14948.png #> 3469 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15820.png #> 3470 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051880.png #> 3471 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13843.png #> 3472 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16747.png #> 3473 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120863.png #> 3474 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14998.png #> 3475 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15854.png #> 3476 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12424.png #> 3477 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15350.png #> 3478 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036434.png #> 3479 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14086.png #> 3480 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15794.png #> 3481 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978256.png #> 3482 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3110509.png #> 3483 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2513908.png #> 3484 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15124.png #> 3485 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2973033.png #> 3486 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15713.png #> 3487 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4218143.png #> 3488 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052013.png #> 3489 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4339831.png #> 3490 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15419.png #> 3491 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037345.png #> 3492 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045642.png #> 3493 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4327530.png #> 3494 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10913.png #> 3495 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515587.png #> 3496 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976500.png #> 3497 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515418.png #> 3498 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969856.png #> 3499 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11366.png #> 3500 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11363.png #> 3501 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912029.png #> 3502 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16144.png #> 3503 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979605.png #> 3504 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045202.png #> 3505 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577071.png #> 3506 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4405778.png #> 3507 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916913.png #> 3508 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971880.png #> 3509 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116159.png #> 3510 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16914.png #> 3511 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2508192.png #> 3512 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057517.png #> 3513 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14943.png #> 3514 <NA> #> 3515 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13681.png #> 3516 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3155134.png #> 3517 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039221.png #> 3518 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14133.png #> 3519 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2981866.png #> 3520 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971036.png #> 3521 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574530.png #> 3522 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3921563.png #> 3523 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971986.png #> 3524 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4463.png #> 3525 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2573091.png #> 3526 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3921688.png #> 3527 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15866.png #> 3528 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2985844.png #> 3529 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929849.png #> 3530 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049271.png #> 3531 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14802.png #> 3532 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126096.png #> 3533 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577421.png #> 3534 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2582034.png #> 3535 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4331771.png #> 3536 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3140596.png #> 3537 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040198.png #> 3538 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116618.png #> 3539 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126176.png #> 3540 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972562.png #> 3541 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929030.png #> 3542 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116598.png #> 3543 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115496.png #> 3544 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047486.png #> 3545 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139613.png #> 3546 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17244.png #> 3547 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042880.png #> 3548 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15535.png #> 3549 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240629.png #> 3550 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16949.png #> 3551 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3843234.png #> 3552 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15057.png #> 3553 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115329.png #> 3554 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15872.png #> 3555 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10613.png #> 3556 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3920576.png #> 3557 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576385.png #> 3558 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16805.png #> 3559 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124080.png #> 3560 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15398.png #> 3561 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578305.png #> 3562 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9610.png #> 3563 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970264.png #> 3564 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040007.png #> 3565 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14010.png #> 3566 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2565759.png #> 3567 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4010743.png #> 3568 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969422.png #> 3569 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969716.png #> 3570 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11254.png #> 3571 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053794.png #> 3572 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/8421.png #> 3573 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577292.png #> 3574 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052169.png #> 3575 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16131.png #> 3576 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17450.png #> 3577 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045136.png #> 3578 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2510713.png #> 3579 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3118081.png #> 3580 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12703.png #> 3581 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3060794.png #> 3582 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124861.png #> 3583 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512218.png #> 3584 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972273.png #> 3585 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4084949.png #> 3586 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915240.png #> 3587 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045123.png #> 3588 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974631.png #> 3589 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14940.png #> 3590 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979849.png #> 3591 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16872.png #> 3592 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17416.png #> 3593 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242420.png #> 3594 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/5432.png #> 3595 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10462.png #> 3596 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15824.png #> 3597 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126311.png #> 3598 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16774.png #> 3599 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11250.png #> 3600 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16750.png #> 3601 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977735.png #> 3602 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2511523.png #> 3603 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125961.png #> 3604 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046689.png #> 3605 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929033.png #> 3606 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972135.png #> 3607 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972550.png #> 3608 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059832.png #> 3609 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971592.png #> 3610 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050887.png #> 3611 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123972.png #> 3612 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17333.png #> 3613 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969954.png #> 3614 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3961462.png #> 3615 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13769.png #> 3616 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042884.png #> 3617 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576437.png #> 3618 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575171.png #> 3619 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980480.png #> 3620 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4058338.png #> 3621 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16930.png #> 3622 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125790.png #> 3623 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13478.png #> 3624 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127082.png #> 3625 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3910120.png #> 3626 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15085.png #> 3627 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14018.png #> 3628 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16039.png #> 3629 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122710.png #> 3630 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122666.png #> 3631 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115333.png #> 3632 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134000.png #> 3633 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16877.png #> 3634 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13419.png #> 3635 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128785.png #> 3636 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4331772.png #> 3637 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124889.png #> 3638 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128687.png #> 3639 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042718.png #> 3640 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912549.png #> 3641 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045126.png #> 3642 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13939.png #> 3643 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15865.png #> 3644 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3119436.png #> 3645 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4423369.png #> 3646 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14019.png #> 3647 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052283.png #> 3648 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512400.png #> 3649 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049426.png #> 3650 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3676003.png #> 3651 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4043720.png #> 3652 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13992.png #> 3653 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982949.png #> 3654 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11236.png #> 3655 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3928743.png #> 3656 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117912.png #> 3657 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11300.png #> 3658 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12436.png #> 3659 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4043157.png #> 3660 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9677.png #> 3661 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049025.png #> 3662 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042381.png #> 3663 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045268.png #> 3664 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17184.png #> 3665 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14953.png #> 3666 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11337.png #> 3667 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976623.png #> 3668 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12442.png #> 3669 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2519069.png #> 3670 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13812.png #> 3671 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125208.png #> 3672 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2511687.png #> 3673 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16959.png #> 3674 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14967.png #> 3675 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053800.png #> 3676 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2514374.png #> 3677 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115911.png #> 3678 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917834.png #> 3679 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577162.png #> 3680 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516417.png #> 3681 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977620.png #> 3682 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15829.png #> 3683 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16712.png #> 3684 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2514217.png #> 3685 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16773.png #> 3686 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971499.png #> 3687 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054854.png #> 3688 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3063943.png #> 3689 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049337.png #> 3690 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3530.png #> 3691 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122879.png #> 3692 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053000.png #> 3693 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578754.png #> 3694 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2509488.png #> 3695 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978355.png #> 3696 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127379.png #> 3697 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15278.png #> 3698 <NA> #> 3699 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2567970.png #> 3700 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972118.png #> 3701 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578530.png #> 3702 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049326.png #> 3703 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17141.png #> 3704 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17430.png #> 3705 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15785.png #> 3706 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043274.png #> 3707 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15356.png #> 3708 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12417.png #> 3709 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049895.png #> 3710 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14036.png #> 3711 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15319.png #> 3712 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3041114.png #> 3713 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057530.png #> 3714 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123681.png #> 3715 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16431.png #> 3716 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14982.png #> 3717 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042873.png #> 3718 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915769.png #> 3719 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042883.png #> 3720 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045152.png #> 3721 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2986781.png #> 3722 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3924375.png #> 3723 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914384.png #> 3724 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2973627.png #> 3725 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2573947.png #> 3726 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139339.png #> 3727 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16751.png #> 3728 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15800.png #> 3729 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12762.png #> 3730 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129292.png #> 3731 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16860.png #> 3732 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12692.png #> 3733 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057998.png #> 3734 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13985.png #> 3735 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050096.png #> 3736 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916590.png #> 3737 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970397.png #> 3738 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576678.png #> 3739 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122439.png #> 3740 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042693.png #> 3741 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13860.png #> 3742 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4051591.png #> 3743 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16037.png #> 3744 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052511.png #> 3745 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3119152.png #> 3746 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045532.png #> 3747 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974324.png #> 3748 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3957496.png #> 3749 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15905.png #> 3750 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123045.png #> 3751 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17296.png #> 3752 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15064.png #> 3753 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4255255.png #> 3754 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049043.png #> 3755 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14020.png #> 3756 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14987.png #> 3757 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3163390.png #> 3758 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13965.png #> 3759 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2981846.png #> 3760 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10546.png #> 3761 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3939134.png #> 3762 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4411188.png #> 3763 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116632.png #> 3764 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121643.png #> 3765 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123079.png #> 3766 <NA> #> 3767 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4263210.png #> 3768 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053061.png #> 3769 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124087.png #> 3770 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3894927.png #> 3771 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115492.png #> 3772 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16776.png #> 3773 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16568.png #> 3774 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115307.png #> 3775 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16695.png #> 3776 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15798.png #> 3777 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14939.png #> 3778 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970137.png #> 3779 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042744.png #> 3780 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035707.png #> 3781 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053054.png #> 3782 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13288.png #> 3783 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575583.png #> 3784 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127341.png #> 3785 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14441.png #> 3786 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15021.png #> 3787 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121601.png #> 3788 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12443.png #> 3789 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9598.png #> 3790 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057976.png #> 3791 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576371.png #> 3792 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16376.png #> 3793 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17253.png #> 3794 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15937.png #> 3795 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970111.png #> 3796 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051674.png #> 3797 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9720.png #> 3798 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15816.png #> 3799 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17214.png #> 3800 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16785.png #> 3801 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17428.png #> 3802 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052751.png #> 3803 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15955.png #> 3804 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125300.png #> 3805 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13311.png #> 3806 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2579622.png #> 3807 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052510.png #> 3808 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15460.png #> 3809 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040172.png #> 3810 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3118188.png #> 3811 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050754.png #> 3812 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971436.png #> 3813 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3131528.png #> 3814 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128455.png #> 3815 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929841.png #> 3816 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115929.png #> 3817 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042645.png #> 3818 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15380.png #> 3819 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040516.png #> 3820 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13989.png #> 3821 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16398.png #> 3822 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038466.png #> 3823 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515893.png #> 3824 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2581513.png #> 3825 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978281.png #> 3826 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9709.png #> 3827 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11424.png #> 3828 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043238.png #> 3829 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976317.png #> 3830 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042747.png #> 3831 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125884.png #> 3832 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16744.png #> 3833 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14310.png #> 3834 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2469470.png #> 3835 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3918012.png #> 3836 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3908873.png #> 3837 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14014.png #> 3838 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15862.png #> 3839 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040661.png #> 3840 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578408.png #> 3841 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15906.png #> 3842 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240239.png #> 3843 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/5273.png #> 3844 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516320.png #> 3845 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16738.png #> 3846 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16127.png #> 3847 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14047.png #> 3848 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116072.png #> 3849 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122924.png #> 3850 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115478.png #> 3851 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2572846.png #> 3852 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978244.png #> 3853 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2981212.png #> 3854 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576236.png #> 3855 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977698.png #> 3856 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2513199.png #> 3857 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045222.png #> 3858 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16875.png #> 3859 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045472.png #> 3860 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515931.png #> 3861 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15351.png #> 3862 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13940.png #> 3863 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3136308.png #> 3864 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2586700.png #> 3865 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045201.png #> 3866 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16366.png #> 3867 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15765.png #> 3868 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577467.png #> 3869 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116375.png #> 3870 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17223.png #> 3871 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14332.png #> 3872 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042434.png #> 3873 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3843217.png #> 3874 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516316.png #> 3875 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117250.png #> 3876 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3075100.png #> 3877 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578390.png #> 3878 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17467.png #> 3879 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15001.png #> 3880 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969018.png #> 3881 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049640.png #> 3882 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14016.png #> 3883 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912991.png #> 3884 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577110.png #> 3885 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039283.png #> 3886 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051737.png #> 3887 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045206.png #> 3888 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516019.png #> 3889 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053027.png #> 3890 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16850.png #> 3891 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574557.png #> 3892 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13404.png #> 3893 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128706.png #> 3894 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2570484.png #> 3895 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14117.png #> 3896 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977613.png #> 3897 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115379.png #> 3898 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578554.png #> 3899 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13340.png #> 3900 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16904.png #> 3901 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10611.png #> 3902 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13251.png #> 3903 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9701.png #> 3904 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/5893.png #> 3905 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930075.png #> 3906 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980441.png #> 3907 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915291.png #> 3908 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13645.png #> 3909 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16419.png #> 3910 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971550.png #> 3911 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3892785.png #> 3912 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16206.png #> 3913 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050534.png #> 3914 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124020.png #> 3915 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16450.png #> 3916 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9793.png #> 3917 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16054.png #> 3918 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12644.png #> 3919 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12716.png #> 3920 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043146.png #> 3921 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2510547.png #> 3922 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10481.png #> 3923 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128688.png #> 3924 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10465.png #> 3925 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12619.png #> 3926 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971542.png #> 3927 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046342.png #> 3928 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049935.png #> 3929 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13395.png #> 3930 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915373.png #> 3931 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123658.png #> 3932 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122800.png #> 3933 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15079.png #> 3934 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139926.png #> 3935 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4076949.png #> 3936 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125916.png #> 3937 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14297.png #> 3938 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17317.png #> 3939 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043217.png #> 3940 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051706.png #> 3941 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050953.png #> 3942 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4422420.png #> 3943 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4243241.png #> 3944 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14995.png #> 3945 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3908989.png #> 3946 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16739.png #> 3947 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17727.png #> 3948 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977770.png #> 3949 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115391.png #> 3950 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047195.png #> 3951 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14070.png #> 3952 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124111.png #> 3953 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2613168.png #> 3954 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971279.png #> 3955 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4002060.png #> 3956 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2517252.png #> 3957 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14961.png #> 3958 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976113.png #> 3959 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980036.png #> 3960 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15276.png #> 3961 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122851.png #> 3962 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13246.png #> 3963 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17102.png #> 3964 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977653.png #> 3965 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10568.png #> 3966 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12883.png #> 3967 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115302.png #> 3968 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116094.png #> 3969 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13261.png #> 3970 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128346.png #> 3971 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969004.png #> 3972 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15871.png #> 3973 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049589.png #> 3974 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2991684.png #> 3975 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2986639.png #> 3976 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14753.png #> 3977 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971635.png #> 3978 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057991.png #> 3979 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12972.png #> 3980 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14178.png #> 3981 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17063.png #> 3982 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14981.png #> 3983 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052094.png #> 3984 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120361.png #> 3985 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13993.png #> 3986 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2582406.png #> 3987 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052023.png #> 3988 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13273.png #> 3989 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4239773.png #> 3990 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15098.png #> 3991 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15787.png #> 3992 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059734.png #> 3993 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045153.png #> 3994 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120365.png #> 3995 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125897.png #> 3996 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12614.png #> 3997 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12728.png #> 3998 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17040.png #> 3999 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046434.png #> 4000 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577172.png #> 4001 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516067.png #> 4002 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17210.png #> 4003 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15900.png #> 4004 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576647.png #> 4005 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124550.png #> 4006 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574570.png #> 4007 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577042.png #> 4008 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16859.png #> 4009 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14208.png #> 4010 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3910591.png #> 4011 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575978.png #> 4012 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046696.png #> 4013 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16835.png #> 4014 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127365.png #> 4015 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16403.png #> 4016 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122894.png #> 4017 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577115.png #> 4018 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052887.png #> 4019 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2582006.png #> 4020 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17013.png #> 4021 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056493.png #> 4022 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576355.png #> 4023 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054041.png #> 4024 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15870.png #> 4025 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512571.png #> 4026 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046392.png #> 4027 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4081809.png #> 4028 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042907.png #> 4029 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2573414.png #> 4030 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3069758.png #> 4031 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121419.png #> 4032 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978331.png #> 4033 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116735.png #> 4034 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977624.png #> 4035 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515944.png #> 4036 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16235.png #> 4037 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578713.png #> 4038 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2470264.png #> 4039 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15347.png #> 4040 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126065.png #> 4041 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040102.png #> 4042 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12680.png #> 4043 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929863.png #> 4044 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036407.png #> 4045 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10530.png #> 4046 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052516.png #> 4047 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3892890.png #> 4048 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915883.png #> 4049 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11299.png #> 4050 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051321.png #> 4051 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17095.png #> 4052 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11382.png #> 4053 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13283.png #> 4054 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15409.png #> 4055 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979845.png #> 4056 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13278.png #> 4057 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16412.png #> 4058 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116592.png #> 4059 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4294246.png #> 4060 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045217.png #> 4061 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16686.png #> 4062 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15869.png #> 4063 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14990.png #> 4064 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2973599.png #> 4065 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978250.png #> 4066 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2507667.png #> 4067 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978263.png #> 4068 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052709.png #> 4069 <NA> #> 4070 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13451.png #> 4071 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914595.png #> 4072 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056472.png #> 4073 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045469.png #> 4074 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970256.png #> 4075 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045249.png #> 4076 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047235.png #> 4077 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128747.png #> 4078 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980586.png #> 4079 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046694.png #> 4080 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051458.png #> 4081 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974300.png #> 4082 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051412.png #> 4083 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4334406.png #> 4084 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4262186.png #> 4085 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980070.png #> 4086 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057972.png #> 4087 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052144.png #> 4088 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127302.png #> 4089 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042403.png #> 4090 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16926.png #> 4091 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259349.png #> 4092 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2323439.png #> 4093 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045180.png #> 4094 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2986701.png #> 4095 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040893.png #> 4096 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979532.png #> 4097 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129306.png #> 4098 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035474.png #> 4099 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042733.png #> 4100 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116737.png #> 4101 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16924.png #> 4102 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122794.png #> 4103 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045149.png #> 4104 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128853.png #> 4105 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3700080.png #> 4106 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051368.png #> 4107 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4250485.png #> 4108 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2585785.png #> 4109 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115923.png #> 4110 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3133361.png #> 4111 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974249.png #> 4112 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037632.png #> 4113 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971051.png #> 4114 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577354.png #> 4115 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052161.png #> 4116 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040065.png #> 4117 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2148.png #> 4118 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971728.png #> 4119 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14322.png #> 4120 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/1440.png #> 4121 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17130.png #> 4122 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/8461.png #> 4123 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11923.png #> 4124 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059104.png #> 4125 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3135726.png #> 4126 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128692.png #> 4127 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048898.png #> 4128 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15918.png #> 4129 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2582419.png #> 4130 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14816.png #> 4131 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/1097.png #> 4132 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16976.png #> 4133 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11737.png #> 4134 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9704.png #> 4135 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4333.png #> 4136 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9329.png #> 4137 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14262.png #> 4138 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16449.png #> 4139 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2986109.png #> 4140 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16897.png #> 4141 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057876.png #> 4142 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577602.png #> 4143 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045259.png #> 4144 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576030.png #> 4145 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15070.png #> 4146 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16983.png #> 4147 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14026.png #> 4148 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16852.png #> 4149 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14023.png #> 4150 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13779.png #> 4151 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11609.png #> 4152 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121376.png #> 4153 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578565.png #> 4154 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15954.png #> 4155 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15040.png #> 4156 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576761.png #> 4157 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2265764.png #> 4158 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120075.png #> 4159 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2579598.png #> 4160 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16268.png #> 4161 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15640.png #> 4162 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056831.png #> 4163 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12988.png #> 4164 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11401.png #> 4165 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14973.png #> 4166 https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14932.png #> [ reached 'max' / getOption("max.print") -- omitted 1039 rows ] #>
# }